ID:261261
 
I made my own SSj code :

mob/verb/SSJ()
set category="Super Forms"
if(usr.Level>=10)
alert("You have SSJ powers !")
usr.verbs+=/mob/verb/SSJ
if(usr.icon_state=="Goku")
flick("ssjp",usr)
usr.icon_state="ssj"
sleep(50)
if(usr.icon_state=="ssj")
usr.Health *=2000
usr.Level +=2000
usr.PowerLevel += 5000000


(NO INDENTION ERRORS!!)

There is errors but i need that code to make it so when u log in u wont have the SSJ Tab and verb but when u login it dose...and for the
if(usr.Level>=10)
alert("You have SSJ powers !")
usr.verbs+=/mob/verb/SSJ

part i want it to make when u get lvl 10 the alert will come up saying u have SSJ powers then you wil have the SSJ TAB abd verb and my char wont show eitherr now... plz help me


Newbie mAn wrote:
I made my own SSj code :

mob/verb/SSJ()
set category="Super Forms"
if(usr.Level>=10)
alert("You have SSJ powers !")
usr.verbs+=/mob/verb/SSJ
if(usr.icon_state=="Goku")
flick("ssjp",usr)
usr.icon_state="ssj"
sleep(50)
if(usr.icon_state=="ssj")
usr.Health *=2000
usr.Level +=2000
usr.PowerLevel += 5000000


(NO INDENTION ERRORS!!)

There is errors but i need that code to make it so when u log in u wont have the SSJ Tab and verb but when u login it dose...and for the
if(usr.Level>=10)
alert("You have SSJ powers !")
usr.verbs+=/mob/verb/SSJ

part i want it to make when u get lvl 10 the alert will come up saying u have SSJ powers then you wil have the SSJ TAB abd verb and my char wont show eitherr now... plz help me





You need to set a icon up at login and make sure you have
..() in the login code, as for the verb thing you need to look up how to use procs.
In response to Nadrew
Nadrew wrote:
Newbie mAn wrote:
I made my own SSj code :

mob/verb/SSJ()
set category="Super Forms"
if(usr.Level>=10)
alert("You have SSJ powers !")
usr.verbs+=/mob/verb/SSJ
if(usr.icon_state=="Goku")
flick("ssjp",usr)
usr.icon_state="ssj"
sleep(50)
if(usr.icon_state=="ssj")
usr.Health *=2000
usr.Level +=2000
usr.PowerLevel += 5000000


(NO INDENTION ERRORS!!)

There is errors but i need that code to make it so when u log in u wont have the SSJ Tab and verb but when u login it dose...and for the
if(usr.Level>=10)
alert("You have SSJ powers !")
usr.verbs+=/mob/verb/SSJ

part i want it to make when u get lvl 10 the alert will come up saying u have SSJ powers then you wil have the SSJ TAB abd verb and my char wont show eitherr now... plz help me





You need to set a icon up at login and make sure you have
..() in the login code, as for the verb thing you need to look up how to use procs.
<font color=red> well can u plz help me with my procs ?</font>
In response to Newbie mAn
Yeah ok, read the FAQ and the reference those will help you alot.