ID:140292
 
Code:
mob/proc/enter_game()
verbs -= /mob/verb/how_to_tell
verbs -= /mob/verb/speed
verbs -= /mob/verb/exit_tutorial

mob
Login()
enter_game()


Problem description:
The verb how to tell and the verb speed aren't going away.

Are those the right verb names?
In response to Warlord Fred
Yes. The complier would come up with an error if they were the wrong names.
Blafblabla wrote:
> mob
> Login()
> ..()
> enter_game()
>

In response to Jotdaniel
mob/proc/enter_game()
src.verbs -= /mob/verb/how_to_tell/
src.verbs -= /mob/verb/speed/
src.verbs -= /mob/verb/exit_tutorial/

mob
Login()
..()
enter_game()
In response to Prestige Entertainment
Thanks.