23 lines
860 B
Lua
23 lines
860 B
Lua
function NPC_fz_equipement()
|
|
--cprint("NPC_GiveFz()")
|
|
|
|
dlg_title( "GIVE" )
|
|
dlg_text( "Equipement" )
|
|
|
|
|
|
dlg_menu( "<#FE2E64>—————[DECO]—————", "NPC_fz_equipement()" )
|
|
dlg_menu("Armure", "open_market( 'shop_fz_decobody' )" )
|
|
dlg_menu("Casque", "open_market( 'shop_fz_decohelm' )" )
|
|
dlg_menu("Gants", "open_market( 'shop_fz_decoglov' )" )
|
|
dlg_menu("Bottes", "open_market( 'shop_fz_decoboot' )" )
|
|
dlg_menu("Ailes", "open_market( 'market_wings_alu' )" )
|
|
dlg_menu( "<#FE2E64>—————[NE]—————", "NPC_fz_equipement()" )
|
|
dlg_menu( "Casque", "open_market( 'funzone_Casque_V2' )" )
|
|
dlg_menu( "Armure", "open_market( 'funzone_Armure' )" )
|
|
dlg_menu( "Cape", "open_market( 'funzone_Cape_v2' )" )
|
|
dlg_menu( "<#FE2E64>———————————", "NPC_fz_equipement()" )
|
|
|
|
dlg_menu( '@90010002', " " ) -- Au revoir
|
|
dlg_show()
|
|
|
|
end |