is a verb really needed to run proc in Developer Help
|
|
I am a beginner at BYond and think it is really cool. however I am running into problems with A.I., I can make a proc to do damage to user but I can find a way to run the proc without a verb activated by the usr.
this is my current code:
mob/evil
name = "shadow knight"
icon = 'evil knight.dmi'
health = 50
strenght = 10
skill = 10
alignment = "bad"
proc
slash(mob/trg in view(1))
trg.hurtme(src.strenght)
view() << "[usr] was slashed by [src] for [src.strenght] points"
I cannot find a way to run the proc without it needing to be triggered by the user
|
Look into <font size=1>Bump()</font>, if this is what you meant.