Incrase Group hunt Exp rate

Join Discord

zedina

Mir3 Dev
Legendary
Dec 22, 2005
3,168
1
1,017
340
It posible to incrase Experince if you go in group for hunt.

Because almost if you go solo you can lvl faster and this broke the team work Group hunts alomst only if you go for boss.

It's posible to change shomthing.
 

idaBigA

Holley Mir 3!!
VIP
Oct 28, 2003
1,966
110
310
Stoke, UK
There is no way of doing it on Mir 3 (That I am aware of), there are loads of options for adjusting the REINCARNATION and Master/App %'s, maybe one of those will adjust Group's (Doubt it though :(). We have disabled Master/App on Sting to encourage more group hunts, maybe the way to go?

Its also true that you will always level quicker solo than in a group (Unless your a noob), group's should be required to level in harder places, kill harder things, or simply last longer.

P.S. Excellent Web Site BTW
 
Last edited:
Upvote 0

zedina

Mir3 Dev
Legendary
Dec 22, 2005
3,168
1
1,017
340
Yes i agree with this Master Student option
but this is a litte reason that High Level ppl use time with low level ppl
 
Upvote 0

chimera

LOMCN VIP
VIP
Jul 30, 2003
1,054
23
235
UK
Not possible in general terms but it is possible if you create a specific map for group hunting ;)
 
Upvote 0

Mystickiller

Bored AF
Golden Oldie
Dec 24, 2003
1,007
4
194
Minnesota, USA
It's not true that you'll level faster solo, only true on private servers. On US/Euro mir3 its faster to level in a big group in WD/Snow/Numa than it is to grind solo because of the group/guild exp bonus.
 
Upvote 0

CheekyVimto

It's my Precious!
Veteran
Mar 8, 2005
396
170
130
Use Mondie Triggers, to run for the single script (not group)

use the #IF command CHECKGROUPCOUNT (number stored in P9)

and use a formula to your liking, example

MONDIE TRIGGER
Code:
[@main]
#IF
CHECKGROUPCOUNT
#ACT
MOV D1 %P9
goto @groupbonus
break
 
[@groupbonus]
#ACT
MOV   P2   %D1     [I];Total Group Number
[/I]INC   P2   1           [I];Make sure minimum is 1
[/I]MOV   P3   70000   [I];Group Bonus per Additional Group Member (set to whatever balances exp for mob.
[/I]MUL   P2   P3         [I];Multiply P2 by P3 (temp. stored in P9 - auto)
[/I]MOV   D7   %P9      [I];Store total into D7
[/I]goto @givereward
break
 
[@givereward]
#ACT
GiveExp %USERNAME %D7  [I] ;being part of a group autodistributes this exp between group members[/I]
break

Just a quick script, it does work, we use it on xtreme :)

hope that helps zedina :)
 
Last edited:
Upvote 0

idaBigA

Holley Mir 3!!
VIP
Oct 28, 2003
1,966
110
310
Stoke, UK
Tried this on Sting, there is nothing to stop people grouping 10 other people and then solo'ing to get the bonus..

Good idea, but not practical.
 
Last edited:
Upvote 0