mob
PC
verb
Give_Away()
set hidden=1
var/list/A=new()
var/list/P=new()
for(var/obj/equipment/I in usr)
if(I.suffix=="(Equipped)")
return
else
A+=I
for(var/mob/M in world)
if(M.client)
P+=M
if(length(A)>=1)
var/obj/B=input("What would you like to give away?","Give Away?") in A
var/mob/C=input("Give [B] to who?","Who?") in P
B.Move(C)
C<< "[usr] has given you \a [B]."
usr << "You give [C] \a [B]."
Problem description: The problem is really strange, the above code works fine in testing but when i send the files to my host the verb seem to not work. Would having the verb called from a Menu effect it in anyway?