Hello everyone!
I have a problem that I can't join the guild war. I have the war map on ch99
and i use this quest:
The quest stops at guild.war_enter(e) function.
This problem only appears when the war map index is on CH99 MAP ALLOW.
When I put it to CH1 MAP ALLOW, the guild.war_enter(e) function works fine, but there is a bug that every war finishes with draw even if both team joined and even if fighting.
When the index is in CH99 map allow , I get this error in CH1 sysser:
Which means the server do not find the war map. But it exists and I can warp in the map.
The indexes I use are: 110 and 111
Any ideas?
I have a problem that I can't join the guild war. I have the war map on ch99
and i use this quest:
Code:
quest guild_war_join begin
state start begin
when letter begin
local e = guild.get_any_war()
if e != 0 and pc.get_war_map() == 0 then
setskin(NOWINDOW)
send_letter("Enter Guild War")
end
end
when button begin
local e = guild.get_any_war()
say_title("Guild War")
if e == 0 then
say("The Guild War is going to start")
else
say("Do you want to enter the Guild War")
local s = select("Enter", "Abort")
if s == 1 then
guild.war_enter(e)
else
setskin(NOWINDOW)
makequestbutton("Guild War enterd")
end
end
end
end
end
This problem only appears when the war map index is on CH99 MAP ALLOW.
When I put it to CH1 MAP ALLOW, the guild.war_enter(e) function works fine, but there is a bug that every war finishes with draw even if both team joined and even if fighting.
When the index is in CH99 map allow , I get this error in CH1 sysser:
Code:
GuildWarEntryAsk: GuildWar.GuildWarEntryAsk.NOT_EXIST_MAP
The indexes I use are: 110 and 111
Any ideas?