mob/Trainer
verb
Send_Out_Pokemon(mob/Pokemon/M in Pokemon)
set category = "Trainer"
usr<<"You send out [M]."
client.mob = M
M.loc = locate(usr.x,usr.y,usr.z)
return
Problem description:
Ok, the problem here is that, whenever I press the verb, It sends out the Pokemon, but it thinks it just logged in and takes it to the Start Screen along with the "Login()"
M.loc = locate(usr.x,usr.y,usr.z)
isn't working either...
The actual proc that's only called when a player connects is client/New(), and when they disconnect it calls client/Del().