Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Assassin Rebirth Error

Initiate Mage
Joined
Mar 9, 2008
Messages
4
Reaction score
0
hi can someone have a look at this and see if they can see wot the error is beacuse when i tryed to rebirth assassin in game nothing happens.

thank you for any help

Script

[@main]
#IF
checklevel 100
#say
Hey there would you like to be rebirthed \
as you have done a good job at reaching level 100\ \
<Yes Please/@yes> <No Thank You/@exit>
#ELSESAY
Sorry you need to be level 100 to be rebirthed.
[@yes]
#IF
CHECKJOB Warrior
#ACT
goto @warriorrebirth
break
#IF
CHECKJOB Wizard
#ACT
goto @wizardrebirth
break
#IF
CHECKJOB Taoist
#ACT
goto @taoistrebirth
break
#IF
CHECKJOB Assassin
#ACT
goto @assassinrebirth
break
[@warriorrebirth]
#SAY
RENEWLEVEL 1 40 100
SENDMSG 0 "<$USERNAME> has been Reborn"
SETRANKLEVELNAME %s\RebornWarrior
ADDNAMELIST ..\QuestDiary\Rebirth\NewRebirth.txt
set [25] 1
break
[@wizardrebirth]
#SAY
RENEWLEVEL 1 40 100
SENDMSG 0 "<$USERNAME> has been Reborn"
SETRANKLEVELNAME %s\RebornWizard
ADDNAMELIST ..\QuestDiary\Rebirth\NewRebirth.txt
set [25] 1
break
[@taoistrebirth]
#SAY
RENEWLEVEL 1 40 100
SENDMSG 0 "<$USERNAME> has been Reborn"
SETRANKLEVELNAME %s\RebornTaoist
ADDNAMELIST ..\QuestDiary\Rebirth\NewRebirth.txt
set [25] 1
break
[@assassinrebirth]
#SAY
RENEWLEVEL 1 40 100
SENDMSG 0 "<$USERNAME> has been Reborn"
SETRANKLEVELNAME %s\RebornAssassin
ADDNAMELIST ..\QuestDiary\Rebirth\NewRebirth.txt
set [25] 1
break
 
Joined
Jan 24, 2006
Messages
780
Reaction score
0
hi can someone have a look at this and see if they can see wot the error is beacuse when i tryed to rebirth assassin in game nothing happens.

thank you for any help

Script

[@main]
#IF
checklevel 100
#say
Hey there would you like to be rebirthed \
as you have done a good job at reaching level 100\ \
<Yes Please/@yes> <No Thank You/@exit>
#ELSESAY
Sorry you need to be level 100 to be rebirthed.
[@yes]
#IF
CHECKJOB Warrior
#ACT
goto @warriorrebirth
break
#IF
CHECKJOB Wizard
#ACT
goto @wizardrebirth
break
#IF
CHECKJOB Taoist
#ACT
goto @taoistrebirth
break
#IF
CHECKJOB Assassin
#ACT
goto @assassinrebirth
break
[@warriorrebirth]
#ACT
RENEWLEVEL 1 40 100
SENDMSG 0 "<$USERNAME> has been Reborn"
SETRANKLEVELNAME %s\RebornWarrior
ADDNAMELIST ..\QuestDiary\Rebirth\NewRebirth.txt
set [25] 1
break
[@wizardrebirth]
#ACT
RENEWLEVEL 1 40 100
SENDMSG 0 "<$USERNAME> has been Reborn"
SETRANKLEVELNAME %s\RebornWizard
ADDNAMELIST ..\QuestDiary\Rebirth\NewRebirth.txt
set [25] 1
break
[@taoistrebirth]
#ACT
RENEWLEVEL 1 40 100
SENDMSG 0 "<$USERNAME> has been Reborn"
SETRANKLEVELNAME %s\RebornTaoist
ADDNAMELIST ..\QuestDiary\Rebirth\NewRebirth.txt
set [25] 1
break
[@assassinrebirth]
#ACT
RENEWLEVEL 1 40 100
SENDMSG 0 "<$USERNAME> has been Reborn"
SETRANKLEVELNAME %s\RebornAssassin
ADDNAMELIST ..\QuestDiary\Rebirth\NewRebirth.txt
set [25] 1
break

Highlighted in Red
 
Back
Top