townteleport scroll to diffrent maps

wanabee

Golden Oldie
Golden Oldie
Jul 10, 2004
723
4
125
newbury
hello looking for some assistance
i have a script in qfunction that i want to use.

when you double click townteleport if you have pets it will take you too petparking, and if you dont have pets takes you to the homezone.
one part works which is the pet part takes you to pet parking, but the part if you dont have pets dosnt.

[@StdModeFunc55]
#IF
CHECKSLAVECOUNT > 0
#ACT
Goto @petparking
#IF
CHECKSLAVECOUNT > 1
#ACT
Goto @homezone

[@petparking]
#ACT
mapmove W1 15 15
break

[@homezone]
#ACT
mapmove hz123 78 68
break
 

PureKill

LOMCN Veteran
Veteran
Jan 27, 2007
428
2
65
United Kingdom
K try this.

[@StdModeFunc55]
#IF
CHECKSLAVECOUNT < 1
#ACT
Goto @petparking
#ELSEACT
Goto @homezone

[@petparking]
#ACT
mapmove W1 15 15
break

[@homezone]
#ACT
mapmove hz123 78 68
break
 
Upvote 0