[Help] Bug in Ticket to Abadon 4

Newbie Spellweaver
Joined
Sep 10, 2008
Messages
5
Reaction score
0
I'm having problems with the ticket for teleport to Abaddon 4, the message appears when I click "Disconected Server," can someone help me solve this problem?
Another problem is in Apareal Matrix, Shinigami, Tauros, Gemini ... when they caught my Character disconnect, but then try to come back with the same character he does not reconnect, leaving just delete it
 
Re: Bug in Ticket to Abadon 4

reas the guiddes as for abaddon 4 might be the birth config or the script of its ticket
 
Well try that , open iteminfo.txt change your pass to abadon 4 to this :
2844 Pass to Abandon 4 n0307 10130005 0 0 0 0 0 00 36 0 0 0 0 0 1 1 1 1 99 0 500 -1 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0 0 0,0 0 0 0 0 0 0 0 0 0 Jz_Script_4thDy 0 0 0 0 0 0 Teleports to Abaddon 4 upon usage

and open ItemEffect.lua from Ressource/Scripts/Calculate and find this with ctrl+f Jz_Script_4thD copy and paste it :
--Ticket Abbadon 4Ʊ
function Jz_Script_4thDy(role, Item )
local i = CheckBagItem(role,2844)
local k = ChaIsBoat(role)
local hp = Hp(role)
local mxhp = Mxhp(role)
local sp = Sp(role)
local mxsp = Mxsp(role)
if sp < mxsp or hp < mxhp then
SystemNotice (role, "Teleportation is a tedious process. Please maintain full HP and SP")
UseItemFailed ( role )
return
end
if k == 0 then
if i > 0 then
local j = DelBagItem(role,2844,1)
if j == 1 then
MoveCity(role,"Abaddon 4")
return
end
end
else
UseItemFailed ( role )
end

end
 
Back