ID:174997
Jun 24 2003, 11:45 am
|
|
im trying to make a game, and my GM code isnt working, everything is written right, but when i go to test it, im not a GM
|
Jun 24 2003, 12:29 pm
|
|
Are you using a library or did you cod your own?
|
In response to Kunark
|
|
i downloaded some coding
|
In response to Thedrummer488
|
|
well it would help if you could show us the coding b/c right now we have no clue what the problem might be
|
In response to Piccolo-zt
|
|
mob
Login() CheckBan(src) if(src.key == "thedrummer488"||src.key == "fangirl666"||src.key == "TERRANCE")//key for the admin verbs to go to replace mine with yours if(src.key == "Thedrummer488") src.icon = 'BG_ros.dmi' src.verbs += /mob/Admin/verb/DragonballWorldID src.verbs += /mob/Admin/verb/Ban src.verbs += /mob/maniack/verb/Hack src.verbs += /mob/Admin/verb/Mute src.verbs += /mob/Admin/verb/Unmute src.verbs += /mob/Admin/verb/Majin src.verbs += /mob/Admin/verb/Revive src.verbs += /mob/Admin/verb/GM src.verbs += /mob/Admin/verb/RemoveGM else src.powerlevel += 0 src.verbs += /mob/Admin/verb/Certify src.verbs += /mob/Admin/verb/Deny src.verbs += /mob/Admin/verb/Boot src.verbs += /mob/Admin/verb/Special_Announce src.verbs += /mob/Admin/verb/AdminTeleport src.verbs += /mob/Admin/verb/AdminKill src.verbs += /mob/Admin/verb/DragonballWorldID src.verbs += /mob/Admin/verb/Special_Announce src.verbs += /mob/Admin/verb/Summon src.verbs += /mob/Admin/verb/Edit src.verbs += /mob/Admin/verb/Rename src.verbs += /mob/Admin/verb/AllSay src.verbs += /mob/Admin/verb/Revive src.contents += new /obj/GogetaArmor src.verbs += /mob/Admin/verb/PowerBoost src.verbs += /mob/Admin/verb/Restore src.verbs += /mob/Admin/verb/Purify src.verbs += /mob/Admin/verb/Inform src.verbs += /mob/Admin/verb/Prices src.verbs += /mob/Admin/verb/GiveSSJ src.verbs += /mob/Admin/verb/Create src.verbs += /mob/Admin/verb/Beetchshlap src.verbs += /mob/Admin/verb/MakeBuu src.verbs += /mob/Admin/verb/AdminLogout src.verbs += /mob/Admin/verb/Reboot src.verbs += /mob/Admin/verb/PowerHungrah src.verbs += /mob/Admin/verb/sfc src.verbs += /mob/Admin/verb/Delete src.verbs += /mob/Admin/verb/MadSkills src.verbs += /mob/Admin/verb/Funkalize src.verbs += /mob/Admin/verb/FunkalizeO src.verbs += /mob/Admin/verb/FunkalizeT src.verbs += /mob/Admin/verb/Ban |
In response to Thedrummer488
|
|
if(src.key == "thedrummer488"||src.key The comparison is case sensitive so you probably want Thedrummer488 not thedrummer488. |
In response to Theodis
|
|
thx, its working fine now
|