ID:262285
 
Code:mob
Login()
if(src.key == "Phantom_Merlock")
src.verbs += /mob/mod/verb/Float
src.verbs += /mob/mod/verb/Land
world<<"The glorious master of manipulation has arrived! All thank him or suffer!"
else
usr<< You are not a GM! >.>
return



Problem: I need to fix an inconsistant indentation but when i allign everything I get 18 different other errors >.< Any help would be greatly aprreciated.

</<>
mob
Login()
if(src.key == "Phantom_Merlock")
src.verbs += /mob/GM/proc/Float
src.verbs += /mob/GM/proc/Land
world<<"The glorious master of manipulation has arrived! All thank him or suffer!"
else
src<< "You are not a GM! >.>"
..()

mob
GM
proc
Float()
//bla
Land()
//bla
In response to Zmadpeter
Zmadpeter wrote:
mob
Login()
if(src.key == "Phantom_Merlock")
src.verbs += /mob/mod/verb/Float
src.verbs += /mob/mod/verb/Land
world << "The glorious master of manipulation has arrived! All thank him or suffer!"
else
usr << "You are not a GM! >.>"
..()


Fixed the indentation. (The ..() was over to the right one space too many.) You also needed quotes around "You are not a GM!"

I also would (personally) find it annoying if evertime I logged in to be told that I was not a GM.
In response to Nova2000
Lol, thanks guys (to nova) I'll remember that :P