В общем вопрос в названии темы... Поиграл в Gaias Relatation orpg и там если взять квест, в закладке квестов он показывается только игроку взявшему его. Тоесть если я возьму квест, никто из других игроков не увидит его во вкладке заданий а мне он отображается. Пытался сделать по примеру персональных мультибоардов но в джасе мало смыслю... Просьба знающим помочь!Добавлено (04 Июль 2012, 18:25:59)
---------------------------------------------
Тему можно закрыть, как всегда самому пришлось допирать:
Code
function Trig_quest_display_Actions takes nothing returns nothing
if (GetLocalPlayer() ) == Player(0) then
call QuestSetEnabledBJ( true, udg_quest[1] )
endif
if (GetLocalPlayer() ) == Player(1) then
call QuestSetEnabledBJ( true, udg_quest[2] )
endif
if (GetLocalPlayer() ) == Player(2) then
call QuestSetEnabledBJ( true, udg_quest[3] )
endif
if (GetLocalPlayer() ) == Player(3) then
call QuestSetEnabledBJ( true, udg_quest[4] )
endif
if (GetLocalPlayer() ) == Player(4) then
call QuestSetEnabledBJ( true, udg_quest[5] )
endif
if (GetLocalPlayer() ) == Player(5) then
call QuestSetEnabledBJ( true, udg_quest[6] )
endif
if (GetLocalPlayer() ) == Player(6) then
call QuestSetEnabledBJ( true, udg_quest[7] )
endif
if (GetLocalPlayer() ) == Player(7) then
call QuestSetEnabledBJ( true, udg_quest[8] )
endif
if (GetLocalPlayer() ) == Player(8) then
call QuestSetEnabledBJ( true, udg_quest[9] )
endif
if (GetLocalPlayer() ) == Player(9) then
call QuestSetEnabledBJ( true, udg_quest[10] )
endif
endfunction