This code of you says that players between level 0 - 149 is able to enter dungeon with party required, to make it work for level 161 as the screenshot you send me, you've to increase this value to for example <= 170 to make it work for level 0 -170 players.
You can track codes by translating the korean comment text -- or follow the code in this case code warp_to_instance_dungeon(30000) refers to arcadia instance_dungeon table, if you search value 30000 and take the name_id, search this as code in stringresource, you can track stuff like this [The Labyrinth]
Code:
local level = get_value( 'level' )
if party_id == 0 or level < 150 then
--레벨 150이상, 파티를 결성해야 입장 가능 (1인이상, 사실상 의미 인원은 의미 없음)
cprint( "@9831" )
return
else
-- 같은 파티원만 입장할 수 있습니다.
cprint( "@9830" )
--set_flag( 'green_ticket', 0)
--set_flag( 'cyan_ticket', 0 )
-- 던전 입장
dlg_special( 'confirm_window', 'warp_to_instance_dungeon(30000)', '@9825\v#@dungeon_name@#\v@80030000' )
end
Quote:
Originally Posted by djbay666
[Only registered and activated users can see links. Click Here To Register...]
I did what you said (dungeonresource.rdb) I imported it
|