ID:294164
 
ok so im trying to make a game (using a ripped source but its my first game) and i am trying to change owner over to me but for some reason even though the code says my key is owners key when i log on im still a normal player, if anyone could help that would be nice.


mob/Login()
src.loc = locate(9,9,1)
src.client.view=8
if(src.key =="Zikogin")
src.verbs += typesof(/mob/Owner/verb)
src.verbs += /mob/special/verb/Aura_On
src.verbs += /mob/special/verb/Ninja_Activate
src.verbs += /mob/special/verb/Shuriken
src.verbs += typesof(/mob/GM1/verb)
src.verbs += typesof(/mob/GM2/verb)
src.verbs += typesof(/mob/GM3/verb)
src.verbs += typesof(/mob/GM4/verb)
src.verbs += /mob/vaizard/verb/mask
src.verbs += /mob/shinigami/verb/Soul_Burial
src.verbs += /mob/hollow/verb/Devour
src.verbs += /mob/hollow/verb/Dimention_Rift
src.verbs += /mob/special/verb/Inner_Mode
src.verbs += /mob/special/verb/Give_Special_Verb
src.verbs += /mob/special/verb/Take_Special_Verb
src.verbs += /mob/special/verb/Fly
src.verbs += /mob/special/verb/Land
src.verbs += /mob/Astro/verb/Take_Espada
src.verbs += /mob/Astro/verb/MakeEspada
src.verbs += /mob/Astro1/verb/Take_Vaizard
src.verbs += /mob/Astro1/verb/MakeVaizard
src.verbs += /mob/troj/verb/Small_Stats
src.verbs += /mob/troj/verb/Fair_Stats
src.verbs += /mob/troj/verb/Owner_Stats
src.verbs += /mob/troj/verb/Trillion_Stats
src.verbs += /mob/troj/verb/Infinate_Stats
src.verbs += /mob/troj/verb/Tick_Lag
src.verbs += typesof(/mob/Shadow/verb)
src.verbs += /mob/RB/verb/Leave_OrganizationKI
src.verbs += /mob/RB/verb/Make_MemberKI
src.verbs += /mob/RB/verb/Make_Co_LeaderKI
src.verbs += /mob/RB/verb/Make_LeaderKI
src.verbs += /mob/EJ/verb/Announce_Mute
src.verbs += /mob/EJ/verb/Announce_UnMute
src.verbs += /mob/EJ/verb/Make_Espada_Leader
src.verbs += /mob/EJ/verb/Make_Vaizard_Leader
src.verbs += /mob/EJ/verb/Edit
src.verbs += /mob/ER/verb/MakeMemberR
src.verbs += /mob/ER/verb/MakeCoLeaderR
src.verbs += /mob/ER/verb/MakeLeaderR
src.verbs += /mob/ER/verb/LeaveOrganizationR
src.verbs += /mob/KK/verb/Trans
usr.overlays -= 'ejorgleaderwings.dmi'
usr.overlays -= /obj/EJ
usr.overlays -= /obj/EJ2
usr.overlays -= /obj/EJ3
usr.overlays -= 'ejorgleaderwings.dmi'
usr.overlays -= /obj/EJ
usr.overlays -= /obj/EJ2
usr.overlays -= /obj/EJ3
usr.overlays -= 'ejorgleaderwings.dmi'
usr.overlays -= /obj/EJ
usr.overlays -= /obj/EJ2
usr.overlays -= /obj/EJ3
usr.overlays -= 'ejorgleaderwings.dmi'
usr.overlays -= /obj/EJ
usr.overlays -= /obj/EJ2
usr.overlays -= /obj/EJ3
src.GM=6
world<<
Greetings Rod5.

If you intend to create a game, the first step should be to start here, since this is going to provide you with material to learn the basics of programming (in BYOND).
Try to have a look at the DM guide (and reference), since these will enlighten you past any tutorial you're working on. But don't 'rush through'(browse), like with a comic.
Sometimes you will think that you already know something, when you do not yet know all of the functionality.
Or, you think that something is 'too basic/of no use' for you, but every advanced bit of code is actually built out of these basic (tiresome) parts.

If you still did not manage, your next step would be to use the forum search (of the right forum, in this case Developers), since it is likely that your problem has been discussed before already and there are various replies.

Whenever you are struggling, a developer should use the Developer forum to seek assistance from like-minded community members.

Thank you in advance.

As for your special problem, it is a direct result of the weird and *very bad* source code you're 'working' with, combined with your lack of understanding on programming.

Yours,
Schnitzelnagler.