ID:178257
 
I want a verb that calls the pet to my location, the pets code right now is:

mob
normalpet
var/Owner
verb
Tame()
set src in oview(1)
src.Owner = usr.ckey
usr << "You adopted a chao!"
Inspect()
set src in oview()
if(src.Owner)
usr << "This pet belongs to [src.Owner]."
else
usr << "This pet is wild."
icon = 'smile.dmi'
icon_state = "normal"
turf
Click()
for(var/mob/normalpet/P in world)
if(P.Owner == usr.key)
walk_to(P,src,0,6)
break

Gimme a call() verb
You already posted asking for a verb to call your pet, and not very long ago.

Lummox JR
In response to Lummox JR
Exactly, now please dont post 2 of same topics
Airjoe wrote:
Gimme a call() verb

Say please?

mob
normalpet
icon = 'smile.dmi'
icon_state = "normal"
var/Owner
verb
Tame()
set src in oview(1)
src.Owner = usr.ckey
usr << "You adopted a chao!"
Inspect()
set src in oview()
if(src.Owner)
usr << "This pet belongs to [src.Owner]."
else
usr << "This pet is wild."
Call()
for(var/mob/normalpet/P in world)
if(P.Owner == usr.key)
P.loc = usr.loc
turf
Click()
for(var/mob/normalpet/P in world)
if(P.Owner == usr.key)
walk_to(P,src,0,6)
break


- RaeKwon
Talk about demanding. Are you an only child?