GroupBonus and NewUser help

Deathbringer

Dedicated Member
Dedicated Member
Mar 19, 2005
118
27
75
Devon, UK
Hi i was wondering if i can get some help with adding my group bonus and newuser scripts..

Ive searched the forums and so far i've come if with this:

GroupBonus

in mapquest.txt

Code:
0 [0] 0 [MonDie] SmallDemon [MapQuest_Def\GroupBonus] [@GroupBonus] Group

and in Envir\QuestDiary\MapQuest_Def\GroupBonus.txt

Code:
[@GroupBonus]
#IF
CHECKGROUPCOUNT 2
#ACT
GOTO @1
[@1]
#ACT
GIVEEXP 500

That doesnt seem to work, i don't know if i've missed something.

And the other problem im having is with the NewUser.txt

In Envir\Market_Def\00Default.txt

Code:
[@_HLSCRIPTSYSTEM]
#ACT
Delaygoto [Local] 3 @CheckNewUser
Delaygoto [Local] 3 @CheckUserLogin
Delaygoto [Local] 3 @CheckSTSystem
break
 
[@CheckNewUser]
#CALL [HLSCRIPT\NewUser.txt] @NewUser
[@CheckUserLogin]
#CALL [HLSCRIPT\UserLogin.TXT] @UserLogin
[@CheckSTSystem]
#CALL [HLSCRIPT\STSystem.TXT] @STSystem

and my QuestDiary\HLSCRIPT\NewUser.txt reads

Code:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[@NewUser]
{
#IF
check [123] 0
#ACT
goto @checkclass
 
[@checkclass]
#IF
CHECKJOB Warrior
#ACT
goto @Warrior
#IF
checkjob Taoist
#ACT
goto @taos
#IF
checkjob Wizard
#ACT
goto @wiz
}
{
 
[@Warrior]
#IF
CHECKGENDER MAN
#ACT
goto @warriormale
#ELSE
goto @warriorfemale
 
[@warriormale]
#ACT
give BeginnerRobe(M)
give WarRing 2
give WarBrace 2
give WarNeck
give IronStick
give gold 20000
SET [123] 1
breaK
 
[@warriorfemale]
give BeginnerRobe(f)
give WarRing 2
give WarBrace 2
give WarNeck
give IronStick
give gold 20000
SET [123] 1
break
 
[@taos]
#IF
CHECKGENDER male
#ACT
goto @taomale
#ELSE
goto @taofemale
 
[@taomale]
#ACT
give BeginnerRobe(M)
give TaoRing 2
give TaoBrace 2
give TaoNeck
give IronStick
give gold 20000
SET [123] 1
breaK
 
[@taofemale]
#ACT
give BeginnerRobe(F)
give TaoRing 2
give TaoBrace 2
give TaoNeck
give IronStick
give gold 20000
SET [123] 1
breaK
 
[@wiz]
#IF
CHECKGENDER male
#ACT
goto @wizmale
#ELSE
goto @wizfemale
 
[@wizmale]
#ACT
give BeginnerRobe(M)
give WizRing 2
give WizBrace 2
give WizNeck
give IronStick
give gold 20000
SET [123] 1
breaK
 
[@wizfemale]
#ACT
give BeginnerRobe(F)
give WizRing 2
give WizBrace 2
give WizNeck
give IronStick
give gold 20000
SET [123] 1
break
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Any help would be appreciated, thatnks alot :)