You last visited: Today at 02:25
Advertisement
[Help Thread] Please post your questions here.
Discussion on [Help Thread] Please post your questions here. within the Rappelz Private Server forum part of the Rappelz category.
02/19/2014, 07:34
#3121
elite*gold: 0
Join Date: Oct 2013
Posts: 474
Received Thanks: 41
can i let the NPC walk ? @.@
02/19/2014, 07:50
#3122
elite*gold: 0
Join Date: Dec 2012
Posts: 102
Received Thanks: 4
Question i like to customize this sword for example.
i know the name of the sword is editable through the stringresource.rdb ->client resource
but how about the stats?
take a look
if its the itemresource.rdb but how can i find the correct hash name for itemresource?(i did tried database manager,name to hash and some tools...)
anyone have a solution for this?
02/19/2014, 15:11
#3123
elite*gold: 0
Join Date: Oct 2013
Posts: 474
Received Thanks: 41
Quote:
Originally Posted by
Mslolita
Question i like to customize this sword for example.
i know the name of the sword is editable through the stringresource.rdb ->client resource
but how about the stats?
take a look
if its the itemresource.rdb but how can i find the correct hash name for itemresource?(i did tried database manager,name to hash and some tools...)
anyone have a solution for this?
item resource => search for the item you want then go to ( min_level )
02/19/2014, 18:45
#3124
elite*gold: 0
Join Date: Sep 2013
Posts: 36
Received Thanks: 3
Noch einmal eine frage ,
kann man eigendlich sein Pet über ein NPC leveln lassen, wo ich auch das level aussuchen kann?
Code:
function Test()
dlg_title( "Pet Leveln" )
dlg_text( "Pet bitte leveln" )
for i = 0, 5 do
handle = 0
handle = get_creature_handle( i )
if handle ~= 0 and handle ~= nil then
lv = get_creature_value( handle, "level" )
text = sconv("@90010009", "#@creature_name@#",tostring(get_creature_value( handle, "name" )) ,"#@creature_level@#",tostring(lv))
command = 'level_setzen( ' .. handle .. ' )'
dlg_menu( text, command )
end
end
dlg_menu( "@90010003", "XY()" ) -- Zurück
dlg_menu( "@90010002", '' ) -- Auf Wiedersehn
dlg_show()
end
function level_setzen( handle, lv )
petlv = get_creature_value( handle, "level" )
if petlv >= 0 then
set_creature_value( handle, "level", petlv + 1 )
--sv( "jp", playerJPs - 20000000)
cprint( "<#FFCC33>Deine Kreatur hat einen Jobpunkt erhalten." )
YY()
else
dlg_title( "Tausch Shop" )
dlg_text( "Hups, du hast leider nicht genug Jop-Punkte. Es tut mir leid!" )
dlg_menu( "@90010003", "XY()" ) -- Zurück
dlg_menu( "@90010002", '' ) -- Auf Wiedersehn
dlg_show()
end
end
Das ist eine abgewandeltete function von JP traden
02/19/2014, 19:16
#3125
elite*gold: 0
Join Date: Oct 2011
Posts: 42
Received Thanks: 5
Can I add a skill to a summon via npc?
02/19/2014, 23:03
#3126
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
Quote:
Originally Posted by
Mslolita
if its the itemresource.rdb but how can i find the correct hash name for itemresource?(i did tried database manager,name to hash and some tools...)
anyone have a solution for this?
db_item(ascii).rdb
O4bGlpCmt`KodmF`A{C
db_item.rdb
U{W.Y(_ZdT!JV
02/19/2014, 23:14
#3127
elite*gold: 0
Join Date: Dec 2012
Posts: 102
Received Thanks: 4
do you have a complete list of all the .rdb or client files in hash format?
btw is it possible to secure these files?
if i put all my work in the client resource a different person could take it import it to database within 10-15 min... (any way to prevent this?)
Quote:
Originally Posted by
thndr
db_item(ascii).rdb
O4bGlpCmt`KodmF`A{C
db_item.rdb
U{W.Y(_ZdT!JV
02/20/2014, 00:53
#3128
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
Quote:
Originally Posted by
Mslolita
do you have a complete list of all the .rdb or client files in hash format?
No I hash files as I need to with either Raskim's Database Manager 2013, or when that errors I use NCarbons Resource Dumper to get the hash names.
Quote:
Originally Posted by
Mslolita
btw is it possible to secure these files?
if i put all my work in the client resource a different person could take it import it to database within 10-15 min... (any way to prevent this?)
No, the only way you can secure your custom work is to not open your server publicly.
02/20/2014, 07:12
#3129
elite*gold: 0
Join Date: Dec 2012
Posts: 102
Received Thanks: 4
thanks! ill try the NCarbons Resource Dumper
Quote:
Originally Posted by
thndr
No I hash files as I need to with either Raskim's Database Manager 2013, or when that errors I use NCarbons Resource Dumper to get the hash names.
No, the only way you can secure your custom work is to not open your server publicly.
02/20/2014, 11:20
#3130
elite*gold: 70
Join Date: Dec 2012
Posts: 278
Received Thanks: 156
this one hash without errors/issues.
Attached Files
Rappelz - Files Hasher.rar
(49.0 KB, 51 views)
02/20/2014, 17:02
#3131
elite*gold: 0
Join Date: Jun 2010
Posts: 137
Received Thanks: 3
cassandra
bonjour je cherche a remetre casandra pnj stuff mes je ces plus comment faire
02/20/2014, 20:27
#3132
elite*gold: 70
Join Date: Dec 2012
Posts: 278
Received Thanks: 156
Quote:
Originally Posted by
guildeur
bonjour je cherche a remetre casandra pnj stuff mes je ces plus comment faire
Si tu veux activer le PNJ alors voila :
Code:
Update Arcadia.dbo.NPCResource
set local_flag = '0' , is_periodic = '0'
where id = '11074'
Tu va trouver le PNJ à Horizon .
/run warp(152752,75817)
02/20/2014, 22:27
#3133
elite*gold: 50
Join Date: Mar 2012
Posts: 1,038
Received Thanks: 430
Rappelz Pet Icon Broken
I got pet icon broken in formation,it is client side or server side and how it is possible to fix it?
02/20/2014, 23:33
#3134
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
You are probably using the Royal Repack.
So you are now having trouble with all of the old pet icons because they changed the way they named icons in from 8.1 to 8.2
You will need to edit the 02item.spr file for all of the old pet icons, hash the name and place it in your resource folder of the client.
02/21/2014, 12:26
#3135
elite*gold: 0
Join Date: Dec 2012
Posts: 102
Received Thanks: 4
how come adding this as rdb in my client source it keeps crashing when opening character/pet skills?
Quote:
Originally Posted by
thndr
You need to dump the English string resource from an English client, then use a database tool to import it into the database.
You can have my RDB file to save you the effort of having to find a client and dump it...
Similar Threads
[Helping Topic] 24/7 Helping Services!
08/27/2008 - EO PServer Hosting - 31 Replies
stucked on anything while setuping your server?
post your problem here and you will get answer as fast as possible better than spamming with posts :cool:
first of all try reading Ahmedpotop's Pserver All thing guide.
if your couldn't solve it out post your problem down here
""That includes PHP rankings pages / registrations pages / Status pages""
All times are GMT +1. The time now is 02:26 .