Okay, so I'm creating a game, and I need help. The game combines Bleach, Naruto, and Sonic (Collision Of Worlds). So I created new clans, for example "arrancar". And I added teleporting verbs for admins, teleporting them to Soul Society, Hueco Mundo, ect. But I don't know how to make a teleporting verb for other people. For example, whoever chooses "Arrancar" as their clan, I want them to have a verb, let's say "Teleport to Hueco Mundo" (36,1,26). But I ONLY want ARRANCAR to have it. So no one else has the verb. But I don't know how to do that.
I basically built the other clans off of other existing clans, but that's not the point. I think that I'm supposes to put the verbs in my mob section right?
For Example:
Code:
mob/ARRANCAR
(Whatever the code is...)
Also, for the same game, I made organizations, and I want to give the people special verbs when they join. Like, for Akatsuki, "Teleport To Akatsuki Base", I have the verb set up, I just don't know how to attach them. Here's the script for my Akatsuki organization:
Code:
mob/owner/verb/MakeAkatLeader(mob/M in world)
set category="Staff"
if(M.rank=="Jounin"&&M.Village!="Akatsuki")
M.Village="Akatsuki"
var/obj/AKAH/H = new()
var/obj/AKAS/S = new()
H.loc=M
S.loc=M
M.akatsukileader=1
M.akatsukimember=1
M.verbs += /mob/akatsuki/verb/InviteA
M.verbs += /mob/akatsuki/verb/BootA
else
usr<<"Cannot be done, Hes either weaker than Jounin or already in Akatsuki."
mob/owner/verb/MakeAkatLeader(mob/M in world)
set category="Staff"
if(M.rank=="Jounin"&&M.Village!="Akatsuki")
M.Village="Akatsuki"
var/obj/AKAH/H = new()
var/obj/AKAS/S = new()
H.loc=M
S.loc=M
M.akatsukileader=1
M.akatsukimember=1
M.verbs += /mob/akatsuki/verb/InviteA
M.verbs += /mob/akatsuki/verb/BootA
else
usr<<"Cannot be done, Hes either weaker than Jounin or already in Akatsuki."
Those two verbs were already set up, but I don't know how to add new ones. The new verb is:
Code:
mob/Admin/verb
AkatsukiB()
set category="Naruto"
set name = "Akatsuki Base"
x = 89
y = 77
z = 10
So, if I could get any help, I would very much appreciate it. Thanks in advance!