Silvanostar
08-03-2010, 05:24 AM
i'm trying to pick up scripting in lich and i wanted to attempt to write a script that will tell my pc to attack when it sees another one of my characters cast a spell.
so i was playing around with the fireguardians.lic file on the repository and i tried to modify that script.
#hohum
def attack_routine
stand
killingtime
fput "stance def"
end
def stand
if !Char.standing?
fput "stand"
waitrt?
end
end
def killingtime
line = " skillfully weaves another verse into his harmony"
waitrt?
fput "stance forward"
while target = RoomObj.npcs.find { |npc| npc.status != 'dead'}
stand
fput "attack ##{target.id}"
if RoomObj.npcs.find { |npc| npc.status == 'dead'}
fput "loot"
end
end
end
when i run the script, it just activates and exits. any lich scripters mind telling me what i'm missing?
so i was playing around with the fireguardians.lic file on the repository and i tried to modify that script.
#hohum
def attack_routine
stand
killingtime
fput "stance def"
end
def stand
if !Char.standing?
fput "stand"
waitrt?
end
end
def killingtime
line = " skillfully weaves another verse into his harmony"
waitrt?
fput "stance forward"
while target = RoomObj.npcs.find { |npc| npc.status != 'dead'}
stand
fput "attack ##{target.id}"
if RoomObj.npcs.find { |npc| npc.status == 'dead'}
fput "loot"
end
end
end
when i run the script, it just activates and exits. any lich scripters mind telling me what i'm missing?