So it is possible to make a player move to a random direction (and make the character uncontrollable ) for few seconds? like fear spells from many mmorpgs.
 
Last edited:
Thank you so much will take a look at it :)

Im using runuo 2.2, not sure if i can even use that ''ability'' is it possible to call that SlideTimer when a player gets affected by an spell?

or call the Slide target from an item?

I added to some spell:

Code:
  new = SlideTimer(this).Start();

and it gives me an error:

CS1031: Line 233: Type expected
 
Last edited:
you would use it like this:
Mobile target = from.Combatant as Mobile;

if (target == null || CanUse(from, target))
return;
SlideAway(target, from.Location, (dist > 12) ? 12 : dist);


SlideAway(Mobile target, Point3D point, int dist)
 
Back