ID:139486
 
Code:
Mob/verb/Jump()
set category= "Ghost Abilities"
usr.density=0
usr<< "You're going up!"


Problem description:
The Jump verb isn't showing up in my Ghost tab. Can anyone tell me why? And yeah, I plan on putting a time limit on how long you can jump btw.

Gtgoku55 wrote:
Code:
Mob/verb/Jump()
> set category= "Ghost Abilities"
> usr.density=0
> usr<< "You're going up!"
>


Problem description:
The Jump verb isn't showing up in my Ghost tab. Can anyone tell me why? And yeah, I plan on putting a time limit on how long you can jump btw.


"Mob" is not the same as "mob". Type paths are always case sensitive. right now, rather than giving that verb to all mobs, you are defining a new datum named Mob.
In response to Zagreus (#1)
Lolz, thank you.