Le jeu de labyrinthe fun et gratuit - Retour au site
actions
CanAgripp;
components
Grappers: TGrappers;
Grapper: TObjectTool
ObjectDef: Grappers;
FindMessage: '';
end;
AgrippPlugin: TAgrippPlugin;
object TGrappers
name 'Grappin';
action CanAgripp;
end;
plugin TAgrippPlugin
on PressKey do
var
Square: TSquare;
Position: T3DPoint;
begin
Square := Player.Map[Position];
if Key <> Ord('G') then
Exit;
if Player cannot CanAgripp then
Exit;
if not (Square is TGround) then
Exit;
end;
end;
end.
Modifié intello (mars 12, 2011 18:01:47)
Hors-ligne
Hors-ligne
Modifié Xaumina (mars 13, 2011 09:05:07)
Hors-ligne
Pièces jointes :
Grappers.fnd (3,2 KB)
Hors-ligne
Pièces jointes :
Grappers.zip (18,8 KB)
Hors-ligne
Hors-ligne
Hors-ligne
Modifié Xaumina (mars 13, 2011 20:44:12)
Hors-ligne
Hors-ligne
uses
Grappers;
actions
DestroyWitch;
components
WeaponGrappers: TWeaponGrappers;
WeaponGrapper: TObjectTool
ObjectDef: WeaponGrappers;
FindMessage: 'Tu as trouvé un grappin, tu peux t''aggripper aux arbres à '+
'distance avec G. Tu peux aussi tuer les Sorcières.';
end;
object TWeaponGrappers(TGrappers)
name 'Grappin arme';
action DestroyWitch;
end;
end.
Modifié sjrd (mars 14, 2011 10:03:45)
Hors-ligne