[2.3] Script command help please

NightStalker89

Dedicated Member
Dedicated Member
Feb 8, 2011
77
0
32
Well I'm making a script for a group cave I want it to check that it has at least 3 members in the party I have the command CHECKGROUPCOUNT = 3, but what is the command for it check if group has 3 or more?

this is it so far

Code:
[@main]
#say
You need at a least 3 players to enter Battleground\
and make sure all players are near the npc to enter\
<we are ready/@enter>\

[@enter]
#if
CHECKGROUPNEARBY
#act
goto @main1bg
#elseact
goto @no

[@mainbg]
#if
CHECKGROUPCOUNT = 3
#act
GROUPMOVEMAP ev003 71 29
#elseact
goto @no1

[@No]
#say
not all players are nearby

[@no1]
#say
You don't have at least 3 players in your party
 
Last edited:

hershire

LOMCN Veteran
Veteran
Loyal Member
Sep 5, 2004
427
10
65
Also may want to check group is nearby to prevent people from loading group with fake characters, not exploit proof but makes it harder.
 
Upvote 0

Ardbeg

Legend
Legendary
Aug 8, 2004
3,211
1
144
260
Southern England
Also may want to check group is nearby to prevent people from loading group with fake characters, not exploit proof but makes it harder.

That's what this bit is doing. It doesn't need to know the group number.
[@enter]
#if
CHECKGROUPNEARBY
#act
goto @main1bg
#elseact
goto @no

Are you checking for groupleader somewhere ?
I assume the command is in 2.3.

#IF
CHECKGROUPLEADER
#ACT
 
Last edited:
Upvote 0