Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz > Rappelz Private Server
You last visited: Today at 04:55

  • Please register to post and access all features, it's quick, easy and FREE!

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.

Reply
 
Old 01/10/2023, 14:36   #8506
 
elite*gold: 0
Join Date: Jun 2011
Posts: 15
Received Thanks: 1
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 )
spiderking69 is offline  
Old 01/10/2023, 18:40   #8507
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,780
Received Thanks: 1,462
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.
ThunderNikk is offline  
Old 01/12/2023, 02:21   #8508
 
yosiem's Avatar
 
elite*gold: 0
Join Date: Mar 2019
Posts: 43
Received Thanks: 13
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
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 )
yosiem is offline  
Thanks
1 User
Old 01/13/2023, 15:18   #8509
 
elite*gold: 0
Join Date: Mar 2008
Posts: 9
Received Thanks: 1
Having issues trying to decrypt E4 skill data from the client anyone point me the right way?
Mad_Man is offline  
Old 01/14/2023, 06:17   #8510
 
elite*gold: 0
Join Date: Jun 2011
Posts: 15
Received Thanks: 1
Quote:
Originally Posted by yosiem View Post
My eyes hurt when I see your scribbles in lua
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.
spiderking69 is offline  
Old 01/14/2023, 11:19   #8511


 
CHlNAMAN's Avatar
 
elite*gold: 99
Join Date: Jun 2015
Posts: 270
Received Thanks: 105
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 -

Feel free to join OpenRZ community in Discord -
CHlNAMAN is offline  
Thanks
1 User
Old 01/14/2023, 16:39   #8512
 
elite*gold: 0
Join Date: Jun 2011
Posts: 15
Received Thanks: 1
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 -

Feel free to join OpenRZ community in Discord -
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
spiderking69 is offline  
Old 01/14/2023, 23:16   #8513
 
elite*gold: 0
Join Date: Oct 2022
Posts: 71
Received Thanks: 1
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
osomeloso is offline  
Old 01/16/2023, 19:14   #8514
 
Masumichan's Avatar
 
elite*gold: 0
Join Date: Jul 2020
Posts: 161
Received Thanks: 75
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}
Masumichan is offline  
Thanks
1 User
Old 01/18/2023, 19:25   #8515
 
yosiem's Avatar
 
elite*gold: 0
Join Date: Mar 2019
Posts: 43
Received Thanks: 13
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
yosiem is offline  
Old 01/21/2023, 02:46   #8516
 
elite*gold: 0
Join Date: Sep 2020
Posts: 5
Received Thanks: 0
hi ı can need rappelz website script who have and who can help me ?
Turuncuhz is offline  
Old 02/09/2023, 15:09   #8517
 
elite*gold: 0
Join Date: Sep 2021
Posts: 19
Received Thanks: 4
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
Pesqoo is offline  
Old 02/11/2023, 02:08   #8518
 
elite*gold: 0
Join Date: Apr 2021
Posts: 15
Received Thanks: 0
Hello,
I search the client for this pack server :
I have test any client but don't work .

Do you know what is the client ? 8.1 EN ?
ScotchRV is offline  
Old 02/12/2023, 02:52   #8519
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,780
Received Thanks: 1,462
Listed in the collection thread...



Here...

ThunderNikk is offline  
Old 02/12/2023, 03:47   #8520
 
elite*gold: 0
Join Date: Feb 2021
Posts: 10
Received Thanks: 0
I'm looking at the thread "Links if this sectiin" in the client section
It's said this is EN/AR


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

Tags
7.4, client, rappelz


Similar Threads 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 +2. The time now is 04:55.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.