someone can help me ??
Bitte melden Sie sich an, um dieses Bild zu sehen.
When i combine the sash and is sucess give me the same sash and the window combination have a bug because when i refine
Says absorption :\
Someone can help me ??
I check the quest is ok
Beiträge von Protozaki
-
-
come one.... this system is kidding with me......
Now when i open combination or absorvation is the same windows ...
Absorvation open combination window.... -
fix it
Source game...
questlua_pc.cpp ( have this {"open_acce", pc_open_acce} )
So in quest I put pc.open_acce
And fix it -
Zitat
quest Shoulder begin
state start begin
when 20406.chat."What is a Sash?" begin
say_title(mob_name(20406))
say("")
say("The sash offers you two options:")
say("Combination & Absorption.")
say("")
say("You can try combination with sash of same")
say("grade. Two sash combined can generate a")
say("sash of a biggest grade.")
say("")
say("In a absorption the sash take the bonus")
say("of a weapon or amour at a rate of your")
say("sash. The absorption rate varies between")
say("the sash grade, the weapon or amour")
say("absorbed will be destroyed.")
say("")
end
when 20406.chat."Combination" begin
say_title(mob_name(20406))
say("")
say("Would you like to combine two sashes?")
say("")
local confirm = select("Yes", "No")
if confirm == 2 then
return
end
setskin(NOWINDOW)
pc.open_sash(true)
end
when 20406.chat."Absorption of bonuses" begin
say_title(mob_name(20406))
say("")
say("Do you want to absorb bonuses from your weapon")
say("or amour?")
say("")
local confirm = select("Yes", "No")
if confirm == 2 then
return
end
setskin(NOWINDOW)
pc.open_sash(true)
end
end
end
-
Detalhes
Check the states, did you correctly "end" them ?
If not, basically check the quest.
It shouldn't be a source error cuz the game just can't open the quest.
can you be more specific?
I don't understand very well :\ -
ok guys when i try open window my ch1 core1 syseer says this
SYSERR: Jul 11 03:19:57.230062 :: GetQuestStateName: QUEST wrong quest state file sash.0
SYSERR: Jul 11 03:19:57.230154 :: WriteRunningStateToSyserr: LUA_ERROR: quest sash. click
-
Hello guys I have a problem with my system....
Source db/game compiled
Source Binary compiled
Cliente good 0 syseer erros
Quest for npc is ok
The problem is when i click on npc and click to refine don't open window :\
Someone can help me?