Exp in grp

Join Discord

Geordiehc

Mad Dog Geo
VIP
Jul 4, 2007
2,827
49
195
Redditch, UK
#if
checkgroupcount 2
#act
goto @1

[@1]
#act
GIVEEXP 500
To give the bonus if you are in a group or not in a group just take out 'checkgroupcount 2' and that will work for solo or group

This will of course need to be in a mondie script
 
Upvote 0

ticuro

Dedicated Member
Dedicated Member
Oct 25, 2008
20
0
47
yes, but if you go solo yo get...17k exp for ex. and if yo go wiz grp yo get 13k, de unic form to = this is with the bonus code?
 
Upvote 0

Zordon

Golden Oldie
Golden Oldie
Apr 26, 2008
1,176
20
145
Manchester, UK
ok, say i want it to give exp based on 3 different group sizes, how I get it to only give those amounts of exp at that group size or bigger? I also want to set it so people have to be on the map for them to be included in the bonus or to get it. would GIVEEXPMAP be the right command for that??

Atm i got it set as

Code:
[@blahblah]
#if
checkgroupcount 2
goto @Blah2

#if
checkgroupcount 8
goto @Blah8

#if
checkgroupcount 15
goto @Blah15

Humm just weird that at the moment it gives all 3 levels of exp regardless of the group size :S
 
Last edited:
Upvote 0

TheDayIDie

Banned
Banned
Dedicated Member
Jul 29, 2011
4,071
97
135
UK
for anyone who didn't solve this i think the script needed to be in reverse
Code:
[@blahblah]
#if
checkgroupcount 15
#ACT
GIVE EXP 50000
#ELSEACT
goto @Blah8

[@Blah8]
#if
checkgroupcount 8
#ACT
GIVE EXP 25000
#ELSEACT
goto @Blah3

[@blah3]
#if
checkgroupcount 3
#ACT
GIVE EXP 5000

hope this helped anyone who needed / used search for same error
 
Upvote 0