Group Teleport Issue

Join Discord

ashleyuk

Dedicated Member
Dedicated Member
Loyal Member
Nov 18, 2008
2,000
23
145
On a challenge script you can recall 3 members of group. I was wondering if you could recall them in different coords. So 1 Top 1 Left 1 Right need go to middle.

Can you recall the 3 players in a different coords? So ect. Player1:15,20-Player2:20,30-Player3:17,25

Thanks
 

Dazz

LOMCN Veteran
Veteran
Apr 12, 2008
296
0
63
Don't think you can mate, unless maybe if you just do MAPMOVE Mapnumber

No coords so it teles you random every time, they all might tele in diff places?

/Daz
 
Upvote 0

ashleyuk

Dedicated Member
Dedicated Member
Loyal Member
Nov 18, 2008
2,000
23
145
Or i could make it.

#IF
CheckJob Warrior
#ACT
Goto @Warrior
#IF
CheckJob Wizard
#ACT
Goto @Wizard
#IF
CheckJob Taoist
#AXT
Goto @Taoist

[@Warrior]
#IF
#ACT
MapMove Challenge (Coords)
Give Townteleport 1

[@Wizard]
#IF
#ACT
MapMove Challenge (Coords)
Give Townteleport 1

[@Toaist]
#IF
#ACT
MapMove Challenge (Coords)
Give Townteleport 1

Somet like that. Would that work?:)
 
Upvote 0

Dazz

LOMCN Veteran
Veteran
Apr 12, 2008
296
0
63
I dunno because only one person reads the NPC, so that would just tele him in.

/Daz
 
Upvote 0

BrahmaBull

Dedicated Member
Dedicated Member
Apr 11, 2010
23
0
28
Your script would only work if they went in individually.... Like dazz said, for a group only one clicks NPC.. why is it nessicary to have each tele onto diff spot?
 
Upvote 0

Dazz

LOMCN Veteran
Veteran
Apr 12, 2008
296
0
63
Only way I could think of is on your main NPC instead of teleing them straight to BG tele them to a little room with a NPC in then have that script on that NPC, or split the script up into three NPC's one that checks war/wiz/tao.

/Daz
 
Upvote 0

ashleyuk

Dedicated Member
Dedicated Member
Loyal Member
Nov 18, 2008
2,000
23
145
Ahh yes. I could make it teleport you to a little cave. Witch has 3 Npc's 1 for each class. And it tele's them to each coords :D. That is 1 way ;)

Thanks

PS: My script wont tele no 1 no wear. Here is script.

[@main]
Hi <$USERNAME>, I am the challenger.\
I give you a basic challenge for you to complete.\
All you need to do is finish it. Then you may\
gain ChallengeToken on 1st 4 bosses. But on\
the last boss it drops 1 ChallengeToken all\
the time. You can exchange the tokens for challenge\
tokens.You will need a group of 3 War, Wiz & Tao.\
What would you like to do?\
<Challenge items/@list>\
<Teleport Please/@Tele>\

[@Tele]
#IF
CHECKMAPHUMANCOUNT Challenge > 2
CHECKGROUPCOUNT = 3
CHECKGROUPCLASS Warrior = 1
CHECKGROUPCLASS Wizard = 1
CHECKGROUPCLASS Taoist = 1
CHECKGROUPNEARBY
#ACT
GROUPMOVEMAP Challenge 8 12
Give TownTeleport 1
#ELSESAY
-You are not in a group.\
-You are missing a class.\
-There are people inside.\

Does it need to be in Npc_Def Or Market_Def ?? Or is anything there wrong?
 
Last edited:
Upvote 0

Gezza

Golden Oldie
Golden Oldie
Sep 23, 2008
2,201
61
155
uk
[@Tele]
#IF
CHECKMAPHUMANCOUNT Challenge = 0
CHECKGROUPCOUNT = 3
CHECKGROUPCLASS Warrior = 1
CHECKGROUPCLASS Wizard = 1
CHECKGROUPCLASS Taoist = 1
CHECKGROUPNEARBY
#ACT
GROUPMOVEMAP Challenge 8 12
Give TownTeleport 1
#ELSESAY
-You are not in a group.\
-You are missing a class.\
-There are people inside.\
 
Upvote 0