[Help Thread] Please post your questions here.

01/10/2023 14:36 spiderking69#8506
Quote:
Originally Posted by osomeloso View Post
It's true!! I have to buy glasses because I'm blind! I just saw it yesterday. Finally a game without pink!!! By the way. Thank you very much for your help. Thanks to you I already have my first pet created by me with a personalized card and image. Next achievement to put the pets of 9.7 !!!!. Really thank you very much





If you want add more ap points you need to change the lua code not the bbdd.


set_value( "jp", jp - 1000000 )
set_arena_point( ap + 50 ) # <- this number
cprint( "You got <B>1.000 Holicpoint</B>." )
cprint( text2 )
arena_sub()
I can't just change that because I changed everything. Where you see the set_arena_point(ap +50 ) it was originally set_huntaholic_point( holic + 1000 )
01/10/2023 18:40 ThunderNikk#8507
Im not sure but it looks like you are trying to declare local variables but you are putting them in quotes which makes them a string

local jp = get_value( "jp" )
local ap = get_value( "arena_point" )

Look at some other lua functions and make sure I am right first but I think you need to remove the quotes from those so then you can do math on the number returned...

local jp = get_value( jp )
local ap = get_value( arena_point )

Oh and huntaholic points I am pretty sure are ursa caverns so not the same as arena points, it looks like you have a mess of confusion in your script there.
01/12/2023 02:21 yosiem#8508
Quote:
Originally Posted by spiderking69 View Post
I can't just change that because I changed everything. Where you see the set_arena_point(ap +50 ) it was originally set_huntaholic_point( holic + 1000 )
My eyes hurt when I see your scribbles in lua :D
I will write you very simple functions, please draw conclusions from them.

Quote:
function Add_JP(amount)

local jp = get_value( 'jp' )

set_value( 'jp', jp + amount )

end
Quote:
function Add_AP(amount)

local ap = get_value( 'ap' )

set_value( 'ap', ap + amount )

end
when you add these functions to your scripts you can add any number of points to the current value using the command:
/run Add_AP(1000)
your value will not be replaced, it will be added to the current value.

also remember that with set_value, function arguments are separated by a comma!
e.g:
set_value( 'ap' , ap + amount )
01/13/2023 15:18 Mad_Man#8509
Having issues trying to decrypt E4 skill data from the client anyone point me the right way?
01/14/2023 06:17 spiderking69#8510
Quote:
Originally Posted by yosiem View Post
My eyes hurt when I see your scribbles in lua :D
I will write you very simple functions, please draw conclusions from them.




when you add these functions to your scripts you can add any number of points to the current value using the command:
/run Add_AP(1000)
your value will not be replaced, it will be added to the current value.

also remember that with set_value, function arguments are separated by a comma!
e.g:
set_value( 'ap' , ap + amount )
Thank you that was from one of the codes I found for JP to rupee, genpoint and tp I was just trying to add in AP but couldn't figure it out

How would one go about changing the level of a mob I tried to do it in the monster resource dbo but it didn't change what's shown in the game same with the r7 gear I'm trying to put the back to what they were when they came out at 150, 155, 160.
01/14/2023 11:19 CHlNAMAN#8511
Quote:
Originally Posted by spiderking69 View Post
How would one go about changing the level of a mob I tried to do it in the monster resource dbo but it didn't change what's shown in the game same with the r7 gear I'm trying to put the back to what they were when they came out at 150, 155, 160.
When making changes in database resource tables you also need to update the rdb file in game client. All changes should, or rather must, be in sync between game client and game server database.

The same goes with the rank 7 gear. You do not have the rdb with changes in game client folder. Do note that when changing ItemResource you also need to sync the itemref along with other files.

You could use Grimoire for this - [Only registered and activated users can see links. Click Here To Register...]

Feel free to join OpenRZ community in Discord - [Only registered and activated users can see links. Click Here To Register...]
01/14/2023 16:39 spiderking69#8512
Quote:
Originally Posted by Armala View Post
When making changes in database resource tables you also need to update the rdb file in game client. All changes should, or rather must, be in sync between game client and game server database.

The same goes with the rank 7 gear. You do not have the rdb with changes in game client folder. Do note that when changing ItemResource you also need to sync the itemref along with other files.

You could use Grimoire for this - [Only registered and activated users can see links. Click Here To Register...]

Feel free to join OpenRZ community in Discord - [Only registered and activated users can see links. Click Here To Register...]
thanks i tried downloading and using grimoire but it keeps giving me the .net error and idk what .net its wanting tba ive also tried using the rappelz rdb tool but that just ends up messing my files up to where i have to start all over cause im apparently not doing it right
01/14/2023 23:16 osomeloso#8513
I've been looking but can't find it.
Does anyone know where the random stats are located and the skill that appears on the distorted gear?
Another question, does anyone have the lua code for the npc that mixes the skill cards and opens the already identified disrtoted armor? Thank you
01/16/2023 19:14 Masumichan#8514
Quote:
Originally Posted by spiderking69 View Post
thanks i tried downloading and using grimoire but it keeps giving me the .net error and idk what .net its wanting tba ive also tried using the rappelz rdb tool but that just ends up messing my files up to where i have to start all over cause im apparently not doing it right
.NET is the framework used in c# for most applications, It should tell you what version it is missing then simply google .NET c# version {insert_version}
01/18/2023 19:25 yosiem#8515
Quote:
Originally Posted by Masumichan View Post
.NET is the framework used in c# for most applications, It should tell you what version it is missing then simply google .NET c# version {insert_version}
simple
01/21/2023 02:46 Turuncuhz#8516
hi ı can need rappelz website script who have and who can help me ?
02/09/2023 15:09 Pesqoo#8517
Hi, my lua script somehow does not work, I get the following Error from GS:
Lua run string failed. NPC_Pesqoo([string "NPC_Pesqoo"]:1: '=' expected near '<eof>')

Here's my lua file:
Quote:
function get_module_name()
return "NPC_Pesqoo"
end


function NPC_Pesqoo()
dlg_title("Pesqoo")
dlg_text("Buffs for testing")
dlg_menu("Buffs please!", "buffs_please()")
end


function buffs_please()
for i = 1051, 1064 do
add_state(i, 7, 900000)
end
end
Edit: i forgot "()" after "NPC_Pesqoo" in contact script
02/11/2023 02:08 ScotchRV#8518
Hello,
I search the client for this pack server : [Only registered and activated users can see links. Click Here To Register...]
I have test any client but don't work :(.

Do you know what is the client ? 8.1 EN ?
02/12/2023 02:52 ThunderNikk#8519
Listed in the collection thread...

[Only registered and activated users can see links. Click Here To Register...]

Here...

[Only registered and activated users can see links. Click Here To Register...]
02/12/2023 03:47 FarrisB#8520
I'm looking at the thread "Links if this sectiin" in the client section
It's said this is EN/AR
[Only registered and activated users can see links. Click Here To Register...]

How come most client does not support Arabic and this one does? Can some explain what's special about it?