PDA

View Full Version : noob help



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?

Gibreficul
08-03-2010, 08:28 AM
you're just defining methods, you're not calling them anywhere.

until dead?
attack_routine
end


toss that at the bottom of the script and see how that works for ya.