can i let the NPC walk ? @.@
item resource => search for the item you want then go to ( min_level )Quote:
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
[Only registered and activated users can see links. Click Here To Register...]
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?
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
Quote:
db_item(ascii).rdb
O4bGlpCmt`KodmF`A{C
db_item.rdb
U{W.Y(_ZdT!JV
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:
do you have a complete list of all the .rdb or client files in hash format?
No, the only way you can secure your custom work is to not open your server publicly.Quote:
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:
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.
Si tu veux activer le PNJ alors voila :Quote:
bonjour je cherche a remetre casandra pnj stuff mes je ces plus comment faire
Update Arcadia.dbo.NPCResource set local_flag = '0' , is_periodic = '0' where id = '11074'
Quote:
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...