ID:144574
 
Code:
mob/Login()
if(src.key == "MyKey")
src.verbs += typesof(/mob/Admin/verb)
src.verbs += typesof(/mob/owner/verb)
src.verbs += new /mob/Juvenile_Ice/verb/FutagozaNoJutsu()
src.GM=1


Problem description:
Thats what it looks like but every time i go to test it nothin happens...no verbs of anything...somebody tell me whats wrong with this crud..
um where "mykey" is YOUR KEY is supposed to be there...
Is it me or have I seen that code alot more times before?
In response to VolksBlade
Shadexh2o is there....its just an example
im still lost though @.@
In response to Shadexh2o
Okay, now I can call you dumb.

mob/Login()
if(src.key == "Put your account name here")
src.verbs += typesof(/mob/Admin/verb)
src.verbs += typesof(/mob/owner/verb)
src.verbs += new /mob/Juvenile_Ice/verb/FutagozaNoJutsu()
src.GM=1


If that isnt simple enough, stop ripping Izou/WOTS.
In response to King of Slimes
ARGH!!....My name is there in the real code.
Its still not working though let show yall what tehreal code looks like

mob/Login()
if(src.key == "Shadexh2o")
src.verbs += typesof(/mob/Admin/verb)
src.verbs += typesof(/mob/owner/verb)
src.verbs += new /mob/Juvenile_Ice/verb/FutagozaNoJutsu()
src.GM=1
In response to Shadexh2o
NVM PROB SOLVED...something so simple as to a mispelled key...boy do you have the right to call me an idiot
In response to Shadexh2o
Its supposed to be

mob/verb/verbnamehere


Last I checked "Juvenile_Ice" isnt Admin/Owner.

His code was ripped from WOTS, I feel 100% sure, if it wasnt, I'll release the Rune source.
In response to King of Slimes
well technically it is a wots rip but its not directly from wots....its from will of fire....anyway problem solved so thank you for you help
In response to Shadexh2o
That code you posted will work, you just need to make admin verbs. Use this Instead, and make your own verbs.
mob
var
admins = list("your key here","other key","another key")
mob
Login()
if(src.key in admins)
src.verbs += typesof(/mob/admin/verb)
mob
admin
verb
boot(mob/M in world)
set category="GM"
M.Logout()
In response to Xx Dark Wizard xX
If it has parts of WOTS's code then it is a WOTS rip.