|
You last visited: Today at 14:11
Advertisement
how add that npc in rapplez
Discussion on how add that npc in rapplez within the Rappelz Private Server forum part of the Rappelz category.
12/02/2011, 12:49
|
#1
|
elite*gold: 0
Join Date: Sep 2011
Posts: 62
Received Thanks: 9
|
how add that npc in rapplez
how add that npc in rapplez ?
this photo
ineed This Script Lvl up- Helper
|
|
|
12/02/2011, 13:00
|
#2
|
elite*gold: 0
Join Date: Nov 2011
Posts: 57
Received Thanks: 20
|
function NPC_aio_shop_init()
cprint( "AiO Shop" )
set_npc_name( "All in One Shop" )
end
function NPC_aio_shop_contact()
dlg_title( "Supermarket" )
dlg_text( "Welcome to the All in One Shop. Please select a category" )
dlg_menu( "Usables", "open_market( 'cs_usable' )" )
dlg_menu( "Cash Shop Decoration", "open_market( 'cs_deco' )" )
dlg_menu( "Cash Shop Equipment", "open_market( 'cs_equip' )" )
dlg_menu( "Cash Shop Pet Items", "open_market( 'cs_pet' )" )
dlg_menu( "Cash Shop Random Boxes", "open_market( 'cs_random' )" )
dlg_menu( "Stone Shop", "open_market( 'cs_stones' )" )
dlg_menu( "Crafting Shop", "open_market( 'cs_crafting' )" )
dlg_menu( "Rank 5 Equipment", "open_market( 'cs_rank5' )" )
dlg_menu( "Rank 6 Equipment", "open_market( 'cs_rank6' )" )
dlg_menu( "Rank 7 Equipment", "open_market( 'cs_rank7' )" )
dlg_menu( "Buff", "buff_select_player()" )
dlg_menu( "Pet Buff", "buff_select_creature()" )
dlg_menu( "@90010002", '' )
dlg_show()
end
function buff_select_player()
dlg_text("Посмотрим, что у нас есть ")
dlg_menu("Physical Attack - 20,000R", "buff_player(1007)")
dlg_menu("Magical Attack - 20,000R", "buff_player(1008)")
dlg_menu("Physical Defense - 20,000R", "buff_player(1009)")
dlg_menu("Magical Defense - 20,000R", "buff_player(1010)")
dlg_menu("Attack Speed - 20,000R", "buff_player(1011)")
dlg_menu("Cast Speed - 20,000R", "buff_player(1012)")
dlg_menu("Movement Speed - 20,000R", "buff_player(1013)")
dlg_menu("Get All Buffs - 140,000R", "buff_player(0)")
dlg_menu( "Goodbuy", '' )
dlg_show()
end
function buff_select_creature()
dlg_text("1")
dlg_menu("Physical Attack - 20,000R", "buff_creature(1007)")
dlg_menu("Magical Attack - 20,000R", "buff_creature(1008)")
dlg_menu("Physical Defense- 20,000R", "buff_creature(1009)")
dlg_menu("Magical Defense- 20,000R", "buff_creature(1010)")
dlg_menu("Attack Speed - 20,000R", "buff_creature(1011)")
dlg_menu("Cast Speed - 20,000R", "buff_creature(1012)")
dlg_menu("Movement Speed - 20,000R", "buff_creature(1013)")
dlg_menu("Get All Buffs - 140,000R", "buff_creature(0)")
dlg_menu( "Goodbuy", '' )
dlg_show()
end
function buff_player(buffcode)
local gold = get_value("gold")
gold = tonumber(gold)
if buffcode == 0 then
if gold >= 140000 then
sv("gold", gold-140000)
update_gold_chaos()
add_state(1007, 18, 900000)
add_state(1008, 18, 900000)
add_state(1009, 18, 900000)
add_state(1010, 18, 900000)
add_state(1011, 18, 900000)
add_state(1012, 18, 900000)
add_state(1013, 18, 900000)
buff_select_player()
else
dlg_text("Sorry, you do not have enough money.")
dlg_menu("Goodbye!", "")
dlg_show()
end
else
if gold >= 20000 then
sv("gold", gold-20000)
update_gold_chaos()
add_state("" .. buffcode .. "", 18, 900000)
buff_select_player()
else
dlg_text("Sorry, you do not have enough money.")
dlg_menu("Goodbye!", "")
dlg_show()
end
end
end
function buff_creature(buffcode)
local gold = get_value("gold")
gold = tonumber(gold)
if buffcode == 0 then
if gold >= 140000 then
sv("gold", gold-140000)
update_gold_chaos()
add_cstate(1007, 18, 900000)
add_cstate(1008, 18, 900000)
add_cstate(1009, 18, 900000)
add_cstate(1010, 18, 900000)
add_cstate(1011, 18, 900000)
add_cstate(1012, 18, 900000)
add_cstate(1013, 18, 900000)
buff_select_creature()
else
dlg_text("Sorry, you do not have enough money.")
dlg_menu("Goodbye!", "")
dlg_show()
end
else
if gold >= 20000 then
sv("gold", gold-20000)
update_gold_chaos()
add_cstate("" .. buffcode .. "", 18, 900000)
buff_select_creature()
else
dlg_text("Sorry, you do not have enough money.")
dlg_menu("Goodbye!", "")
dlg_show()
end
end
end
|
|
|
12/02/2011, 13:05
|
#3
|
elite*gold: 0
Join Date: Sep 2011
Posts: 62
Received Thanks: 9
|
Dream2011 this ? in file edit NPC Event (e7ecc752d285797d9f2378b26f5f70b0).lua ?
copy here and paste in NPC Event (e7ecc752d285797d9f2378b26f5f70b0).lua
say :
Quote:
function NPC_aio_shop_init()
cprint( "AiO Shop" )
set_npc_name( "All in One Shop" )
end
function NPC_aio_shop_contact()
dlg_title( "Supermarket" )
dlg_text( "Welcome to the All in One Shop. Please select a category" )
dlg_menu( "Usables", "open_market( 'cs_usable' )" )
dlg_menu( "Cash Shop Decoration", "open_market( 'cs_deco' )" )
dlg_menu( "Cash Shop Equipment", "open_market( 'cs_equip' )" )
dlg_menu( "Cash Shop Pet Items", "open_market( 'cs_pet' )" )
dlg_menu( "Cash Shop Random Boxes", "open_market( 'cs_random' )" )
dlg_menu( "Stone Shop", "open_market( 'cs_stones' )" )
dlg_menu( "Crafting Shop", "open_market( 'cs_crafting' )" )
dlg_menu( "Rank 5 Equipment", "open_market( 'cs_rank5' )" )
dlg_menu( "Rank 6 Equipment", "open_market( 'cs_rank6' )" )
dlg_menu( "Rank 7 Equipment", "open_market( 'cs_rank7' )" )
dlg_menu( "Buff", "buff_select_player()" )
dlg_menu( "Pet Buff", "buff_select_creature()" )
dlg_menu( "@90010002", '' )
dlg_show()
end
function buff_select_player()
dlg_text("Посмотрим, что у нас есть ")
dlg_menu("Physical Attack - 20,000R", "buff_player(1007)")
dlg_menu("Magical Attack - 20,000R", "buff_player(1008)")
dlg_menu("Physical Defense - 20,000R", "buff_player(1009)")
dlg_menu("Magical Defense - 20,000R", "buff_player(1010)")
dlg_menu("Attack Speed - 20,000R", "buff_player(1011)")
dlg_menu("Cast Speed - 20,000R", "buff_player(1012)")
dlg_menu("Movement Speed - 20,000R", "buff_player(1013)")
dlg_menu("Get All Buffs - 140,000R", "buff_player(0)")
dlg_menu( "Goodbuy", '' )
dlg_show()
end
function buff_select_creature()
dlg_text("1")
dlg_menu("Physical Attack - 20,000R", "buff_creature(1007)")
dlg_menu("Magical Attack - 20,000R", "buff_creature(1008)")
dlg_menu("Physical Defense- 20,000R", "buff_creature(1009)")
dlg_menu("Magical Defense- 20,000R", "buff_creature(1010)")
dlg_menu("Attack Speed - 20,000R", "buff_creature(1011)")
dlg_menu("Cast Speed - 20,000R", "buff_creature(1012)")
dlg_menu("Movement Speed - 20,000R", "buff_creature(1013)")
dlg_menu("Get All Buffs - 140,000R", "buff_creature(0)")
dlg_menu( "Goodbuy", '' )
dlg_show()
end
function buff_player(buffcode)
local gold = get_value("gold")
gold = tonumber(gold)
if buffcode == 0 then
if gold >= 140000 then
sv("gold", gold-140000)
update_gold_chaos()
add_state(1007, 18, 900000)
add_state(1008, 18, 900000)
add_state(1009, 18, 900000)
add_state(1010, 18, 900000)
add_state(1011, 18, 900000)
add_state(1012, 18, 900000)
add_state(1013, 18, 900000)
buff_select_player()
else
dlg_text("Sorry, you do not have enough money.")
dlg_menu("Goodbye!", "")
dlg_show()
end
else
if gold >= 20000 then
sv("gold", gold-20000)
update_gold_chaos()
add_state("" .. buffcode .. "", 18, 900000)
buff_select_player()
else
dlg_text("Sorry, you do not have enough money.")
dlg_menu("Goodbye!", "")
dlg_show()
end
end
end
function buff_creature(buffcode)
local gold = get_value("gold")
gold = tonumber(gold)
if buffcode == 0 then
if gold >= 140000 then
sv("gold", gold-140000)
update_gold_chaos()
add_cstate(1007, 18, 900000)
add_cstate(1008, 18, 900000)
add_cstate(1009, 18, 900000)
add_cstate(1010, 18, 900000)
add_cstate(1011, 18, 900000)
add_cstate(1012, 18, 900000)
add_cstate(1013, 18, 900000)
buff_select_creature()
else
dlg_text("Sorry, you do not have enough money.")
dlg_menu("Goodbye!", "")
dlg_show()
end
else
if gold >= 20000 then
sv("gold", gold-20000)
update_gold_chaos()
add_cstate("" .. buffcode .. "", 18, 900000)
buff_select_creature()
else
dlg_text("Sorry, you do not have enough money.")
dlg_menu("Goodbye!", "")
dlg_show()
end
end
end
|
|
|
|
12/02/2011, 13:06
|
#4
|
elite*gold: 0
Join Date: Nov 2011
Posts: 57
Received Thanks: 20
|
No, edit NPC Merchant_Etc.lua file)
|
|
|
12/02/2011, 13:08
|
#5
|
elite*gold: 0
Join Date: Sep 2011
Posts: 62
Received Thanks: 9
|
plz Dream2011 ineed Script Full )" itry
|
|
|
12/02/2011, 13:20
|
#6
|
elite*gold: 0
Join Date: Nov 2011
Posts: 57
Received Thanks: 20
|
It's rus npc)
|
|
|
12/02/2011, 13:45
|
#7
|
elite*gold: 0
Join Date: Sep 2011
Posts: 62
Received Thanks: 9
|
ok thats nice Dream2011 Yahoo you ? what
and ask you how Add This sql in DATA Base ) screenshot ): ..
|
|
|
09/29/2020, 19:34
|
#8
|
elite*gold: 0
Join Date: Sep 2020
Posts: 24
Received Thanks: 2
|
Rappelz humantolic NPC
Hello to everyone
Something sold on NPC looks 0R when I humantolic the sales unit
how do i fix this
HELP..!
|
|
|
09/29/2020, 19:59
|
#9
|
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,913
Received Thanks: 1,491
|
Please do not post in old outdated posts.
You have already asked your question...
|
|
|
 |
Similar Threads
|
Rapplez KTS VPN
07/11/2011 - Rappelz - 9 Replies
Hey guys... Just wondering what vpn you all use?
And is widevpn only working one? because for some weird reason widevpn wont let me register/or login lol.
|
Rapplez Bot Tool
05/05/2011 - Rappelz - 0 Replies
Hi, ich wollte wissen ob es zur zeit funktonierende bots oder tools oder etwas anders nützliches für den offi server gibt.
Hi, I wanted to know whether the time is infallible bots or tools or something else useful for the official server.
M.f.G. Hackihack
p.s.: i used sufu and gidf ^^
|
WTT Rapplez acc for Arclord acc
12/26/2010 - Archlord Trading - 0 Replies
I want to trade my 103 cm on rapplez with +10lvl10 sages staff, +5or6 lvl10 nd armmor, fendish boots lvl10 ,r4 nd gloves lvl10, all equips are epic int and wisdom stoned ,109+19 evo 2 rp, 91+10rp(on belt) ,66+10 skelly ,52+2 rp evo2 ,113+23 rp evo2 stage 1, +3fire arrow ,+3 lighting bolt and alot more.
I would like to trade this for 7x swashbuckler or 7x sorc on burmahrt or uzark sever message me if your intersted i can provide screenies if u messag and ask for them.
|
Creating a Rapplez Bot
09/18/2010 - AutoIt - 2 Replies
When writing a bot for Rappelz in AutoIt, the Send function and MouseClick function don't actually send anything to the program. How can you bypass this and get the AutoIt scripts to work?
|
Anything for Rapplez
11/05/2007 - General Gaming Discussion - 0 Replies
Hi , i been playing this game for a while now .. getting bored been wondering if there is any kind of hack , cheat , exploit , bot anyone share or know around ?
If it requires skills in implying codes or hacking the shield or CE :D
Thanks in advance :)
|
All times are GMT +1. The time now is 14:11.
|
|