Yes, I wanted to change the Quests and NPC's :/
I do not understand much things can be the binary code decompiler? : s
If I want to create a new NPC do I have the data added to the customer?
In the resource server, which corresponds to the following code?
. lua
Quote:
function NPC_Merchant_crushop_Newequip_Item_init()
cprint( "!Å©·ç¼¥ »óÀÎ" )
set_npc_name( "@90999551" )
dlg_title( "@90999552" )
dlg_menu( "@90010002", '' )
|
Quote:
function NPC_Merchant_crushop_Newequip_Item_init()
cprint( "!Å©·ç¼¥ »óÀÎ" )
set_npc_name( "@90999551" )
end
function NPC_Merchant_crushop_Newequip_Item_contact()
-- ´ÙÀ̾ó·Î±× Ãâ·Â
dlg_title( "@90999552" )
dlg_text( "@90999553" )
dlg_menu( "@91002028", "open_market( 'crushop_Newequip_armors' )" )
dlg_menu( "@91002029", "open_market( 'crushop_Newequip_helm_2rank' )" )
dlg_menu( "@91002030", "open_market( 'crushop_Newequip_helm_3rank' )" )
dlg_menu( "@91002031", "open_market( 'crushop_Newequip_helm_4rank' )" )
dlg_menu( "@91002032", "open_market( 'crushop_Newequip_helm_5rank' )" )
dlg_menu( "@91002033", "open_market( 'crushop_Newequip_helm_6rank' )" )
dlg_menu( "@91002034", "open_market( 'crushop_Newequip_helm_7rank' )" )
dlg_menu( "@91002035", "open_market( 'crushop_Newequip_weapon_mantle' )" )
dlg_menu( "@90010002", '' )
dlg_show()
end
|