some one help with this pls

juju20

Dedicated Member
Dedicated Member
Jan 8, 2010
15
0
27
trying to do a tele point to me rebirth cave , not sure wot to do so it stops u from going in if not rebirth can any 1 tell me pls


this is wot i got now

[@Main]
#Say
Hello Young Warrior Would You Like To Go Into\
Rebirth Cave Its Exalent Exp\
<Yes Please/@Yes> <No Thanks/@Exit>
[@yes]
#Act
mapmove M001 331 261
give townteleport 1
Break
 

Hany

Golden Oldie
Golden Oldie
Feb 28, 2005
886
32
135
What is the directory of the rebirth.txt in your server files ?

Basically it would be something like this, note this is an example cause i dont know the actual directory
Code:
[@Main]
Hello Young Warrior Would You Like To Go Into\
Rebirth Cave It does have Excellent Exp\
<Yes Please/@Yes>\ 
<No Thanks/@Exit>\
[@yes]
#IF
[COLOR="Red"]Checknamelist ../QuestDiary/Rebirth/Rebirth.txt[/COLOR]  <<<<<<<<<<<<<<<<< EXAMPLE
#Act
break
#say
Sorry you're not in the rebirth list.
#elseact
mapmove M001 331 261
give townteleport 1
----------------------------------- Or ------------------------------------------------
Code:
[@Main]
Hello Young Warrior Would You Like To Go Into\
Rebirth Cave It does have Excellent Exp\
<Yes Please/@Yes>\ 
<No Thanks/@Exit>\
[@yes]
#IF
checknamelist ../Questdiary/Rebirth/Rebirthwar.txt
#Act
goto @yes1
#elseact
break
#Say 
Your not in the rebirth namelist.\
<Main/@main>

#IF
checknamelist ../Questdiary/Rebirth/Rebirthwiz.txt
#Act
goto @yes1
#elseact
break
#Say 
Your not in the rebirth namelist.\
<Main/@main>

#IF
checknamelist ../Questdiary/Rebirth/RebirthTao.txt
#Act
goto @yes1
#elseact
break
#Say 
Your not in the rebirth namelist.\
<Main/@main>

[@yes1]
#act
mapmove M001 331 261
give townteleport 1

It all depends on how you did your rebirth system tbh.
 
Last edited:
Upvote 0

IceMan

Hero's Act Mir 2
Legendary
Apr 17, 2003
8,544
2
370
350
[@Main]
#Say
Hello Young Warrior Would You Like To Go Into\
Rebirth Cave Its Exalent Exp\
<Yes Please/@Yes> <No Thanks/@Exit>
[@yes]
CHECKRENEWLEVEL > 0 <------can use to check any rb lvl to enter
#Act
mapmove M001 331 261
give townteleport 1
Break
 
Upvote 0