Problem with reborn .

Baldasor

Dedicated Member
Dedicated Member
Jan 3, 2008
179
0
63
I use Envir 3.38 LS-3G-EnvirV1.
I put the script in either DieScript of questdiary and does not come out of the window when you die Reborn​
 

ticuro

Dedicated Member
Dedicated Member
Oct 25, 2008
20
0
47
Put this in 00Default

[@_DieScript]
#IF
HLSCRIPTCMD CHECKUNDEAD
#ACT
goto @Yourdead*****

[@Yourdead*****]
#CALL [HLSCRIPT\DieScript.TXT] @DieScriptExec

And this in the HLSCRIPT\DieScript.TXT

[@DieScriptExec]
{
#SAY
It costs{FCOLOR/1}nothing{FCOLOR/12} to revive in town\
It costs{FCOLOR/1}5000000 gold{FCOLOR/12} to revive where you died\
<Revive at Home/@next1>\\
<Revive Here/@next2>\
#elseact
close
[@next1]
#if
HLSCRIPTCMD CHECKUNDEADINHOME
#ACT
HLSCRIPTCMD UNDEADINHOME
close
#elseact
close
[@next2]
#if
checkgold 5000000
HLSCRIPTCMD CHECKUNDEAD
#act
HLSCRIPTCMD UNDEAD
take gold 5000000
close
#ELSEACT
SysMsg "Fool you don't have enough gold, now you perish!"
close
}

this works well, you can changs some you lake.
 
Upvote 0