ID:262578
 
Code:
mob
verb
Super_Saiyan()
set category = "Skills"
if(usr.maxpowerlevel>= 300000)
usr << "<b>You transformed into a Super Saiyan!!!"
flick("SSJ",usr)
view()<< "<b>[usr] has transformed into a Super Saiyan"
usr.overlays-=/obj/Goku
sleep(1)
usr.overlays+=/obj/SSJGoku
usr.ssj = 1

Revert()
set category = "Skills"
usr << "<font color=yellow><B>You revert from Super Saiyan..."
usr.overlays-=/obj/SSJGoku
sleep(1)
usr.overlays+=/obj/Goku
if(usr.powerlevel >= src.maxpowerlevel)
usr.powerlevel = src.maxpowerlevel


Problem description:

transoformations.dm:19:error: bad argument definition
DragonBall No Return.dmb - 2 errors, 0 warnings (double-click on an error to jump to it)

what do i do here :S ok if no 1 helps i thats ok i guess seeing if ive justed been helped i guess ill just keep looking but help plz

Since when do verbs have a max powerlevel?
In response to SSJ4 Compufreak
what ?
There are some problems with the indentation in that code. I suggest you fix them first...
In response to CIB
what were r the problems in the code other then the errors
In response to JRR-Zero
mob
verb
Super_Saiyan()
set category = "Skills"
if(usr.ssj)
usr << "You're already SSJ!"
else
if(usr.maxpowerlevel>= 300000)
usr << "<b>You transformed into a Super Saiyan!!!"
flick("SSJ",usr)
view()<< "<b>[usr] has transformed into a Super Saiyan."
usr.overlays-=/obj/Goku
usr.ssj=1
sleep(10)
usr.overlays+=new/obj/SSJGoku

Revert()
set category = "Skills"
if(!usr.ssj)
usr << "You're already normal!"
else
usr << "<font color=yellow><B>You revert from Super Saiyan..."
usr.overlays-=/obj/SSJGoku
usr.ssj=0
sleep(10)
usr.overlays+=new/obj/Goku
if(usr.powerlevel >= src.maxpowerlevel)
usr.powerlevel = src.maxpowerlevel




-Sin()