is there away to add 3 ppl to a list.txt

Neptune

Golden Oldie
Golden Oldie
Nov 19, 2003
1,473
9
175
Chester :P
i wud like to add like 3 people (all in a group) to like a list.txt but without all of them clicking a NPC is there a way for this to be done??
 

noisound

Golden Oldie
Golden Oldie
Jul 23, 2004
1,335
10
175
so basically u want a group leader (of 3 people) to teleport the group into a cave? like battle ground?
 
Upvote 0

Neptune

Golden Oldie
Golden Oldie
Nov 19, 2003
1,473
9
175
Chester :P
but also to add there name to a list E.G BattleGround.txt
iv got it so it will teleport u to a cave all of you and check etc
 
Upvote 0

Bon

Legend
Legendary
Jul 29, 2004
6,741
342
330
Kent, UK
only way i can think of doin it is to use group variables, basically adds ur whole group to the variable and disapears when ur grps disabandoned
 
Upvote 0

daneo1989

I am Ancient.
Staff member
Super Moderator
Dec 5, 2005
6,034
1
276
330
UK
hmmm do you mean you want a teleport to check if your a grp of 3 then teleport's you to the cave? if so i would try doing it through QFunc
 
Upvote 0

Neptune

Golden Oldie
Golden Oldie
Nov 19, 2003
1,473
9
175
Chester :P
hmmm do you mean you want a teleport to check if your a grp of 3 then teleport's you to the cave? if so i would try doing it through QFunc

there are npc commands to check this, i have that.

bon how wud i add the whole grp to the list.txt file what command would i use??
 
Upvote 0

ρяєα¢нєя

Unstookie Titled
VIP
Aug 19, 2008
444
23
85
bon how wud i add the whole grp to the list.txt file what command would i use??

You wouldn't be able to. What Bon's saying is as you teleport the group in add the following line:
Code:
#ACT
GROUPMOVEMAP <mapname>
[COLOR=Red]Var Integer Group BGGroup 0[/COLOR]

That way you can add counts to the group:
Code:
#ACT
CalcVar Group BGGroup + 1 (Can use +,-,=)

and you can run checks on the group using:
Code:
#IF
CheckVar Group BGGroup > 1 (Can use >,<,=)

I know it's not exactly what your looking for, but i'm pretty sure there is no way to add a whole group to a namelist. So you might have to rethink the quest using variables i'm afraid.

p

PS: If any of the commands are wrong it's because i've been using another set of files. Easily edited though.
 
Upvote 0