function get_module_name()
return "npc_autoseller_contact"
end
function autoseller_contact()
dlg_title( "Item Expertin")
dlg_text( "Hello, how can I help you?
I buy various clutter at the shop price or process certain items!" )
dlg_menu("Sell Soul Stones",'npc_soulstone_sell()')
dlg_menu("Sell ND Gear",'npc_alt_equ_sell()')
dlg_menu("Sell D1 Gear",'npc_d1_equ_sell()')
dlg_menu("Sell D2 Gear",'npc_d2_equ_sell()')
dlg_menu("Sell D3 Gear",'npc_d3_equ_sell()')
dlg_menu("Masterclass Gear",'npc_mc_equ_sell()')
dlg_menu("I wana combine cubes",'cube_combiner_contact()')
dlg_menu("No Need.",'')
dlg_show()
end
function npc_soulstone_sell()
dlg_title( "Item Expertin")
dlg_text( "Soulstones? Gladly!
Which clunker may I take from you?" )
dlg_menu("Basic Soulstones",'sell_soulstones(1)')
dlg_menu("Dungeon-Soulstones",'sell_soulstones(2)')
dlg_menu("Epic Soulstones",'sell_soulstones(3)')
dlg_menu("All three varieties.",'sell_soulstones()')
dlg_menu("Hm, but something else...",'autoseller_contact()')
dlg_menu("No Need.",'')
dlg_show()
end
function npc_alt_equ_sell()
dlg_title( "Item Expertin")
dlg_text( "The old equipment?
But of course!" )
dlg_menu("Yes, please everything away.","dlg_special('confirm_window', 'sell_me_happy()', 'Do you really want to sell your old equipment?' )")
dlg_menu("Hm, but something else...",'autoseller_contact()')
dlg_menu("No Need.",'')
dlg_show()
end
function npc_d1_equ_sell()
dlg_title( "Item Expertin")
dlg_text( "The D1 gear?
But of course!" )
dlg_menu("Yes, please everything away.","dlg_special('confirm_window', 'sell_me_happy_d1()', 'Do you really want to sell your D1 equipment?' )")
dlg_menu("Hm, but something else...",'autoseller_contact()')
dlg_menu("No Need.",'')
dlg_show()
end
function npc_d2_equ_sell()
dlg_title( "Item Expertin")
dlg_text( "The D2 gear?
But of course!" )
dlg_menu("Yes, please everything away.","dlg_special('confirm_window', 'sell_me_happy_d2()', 'Do you really want to sell your D2 equipment?' )")
dlg_menu("Hm, but something else...",'autoseller_contact()')
dlg_menu("No Need.",'')
dlg_show()
end
function npc_d3_equ_sell()
dlg_title( "Item Expertin")
dlg_text( "The D3 gear?
But of course!" )
dlg_menu("Yes, please everything away.","dlg_special('confirm_window', 'sell_me_happy_d3()', 'Do you really want to sell your D3 equipment?' )")
dlg_menu("Hm, but something else...",'autoseller_contact()')
dlg_menu("No Need.",'')
dlg_show()
end
function npc_mc_equ_sell()
dlg_title( "Item Expertin")
dlg_text( "Master Class-Equipment? I can do that!
I only take master Class-Equipment?
I only take belt earrings and rings.." )
dlg_menu("Block Def,Perfect Block gear","dlg_special('confirm_window', 'sell_me_happy_mc(1)', 'Do you really want to sell your D3 equipment?' )")
dlg_menu("P.Pierce,M.Pierce gear","dlg_special('confirm_window', 'sell_me_happy_mc(2)', 'Do you really want to sell your D3 equipment?' )")
dlg_menu("P.Def,P.Atk gear","dlg_special('confirm_window', 'sell_me_happy_mc(3)', 'Do you really want to sell your D3 equipment?' )")
dlg_menu("P.Ignore,M.Ignore gear","dlg_special('confirm_window', 'sell_me_happy_mc(4)', 'Do you really want to sell your D3 equipment?' )")
dlg_menu("MP.Recovery,M.Def gear","dlg_special('confirm_window', 'sell_me_happy_mc(5)', 'Do you really want to sell your D3 equipment?' )")
dlg_menu("Atkspeed,Castspeed and Evasion gear","dlg_special('confirm_window', 'sell_me_happy_mc(6)', 'Do you really want to sell your D3 equipment?' )")
dlg_menu("Acc,M.Acc,M.Atk gear","dlg_special('confirm_window', 'sell_me_happy_mc(7)', 'Do you really want to sell your D3 equipment?' )")
dlg_menu("Crit gear","dlg_special('confirm_window', 'sell_me_happy_mc(8)', 'Do you really want to sell your D3 equipment?' )")
dlg_menu("Oh, just take everything.","dlg_special('confirm_window', 'sell_me_happy_mc()', 'Do you really want to sell all your MC equipment?' )")
dlg_menu("Hm, but something else...",'autoseller_contact()')
dlg_menu("No Need.",'')
dlg_show()
end