[Help Thread] Please post your questions here.

04/13/2019 01:13 12sky2Server#7441
Quote:
Originally Posted by ThunderNikk View Post
You need to be level 100 or something like that to create a guild.

Are you sure it is not just the retail game restrictions.
thanks,bro ,i also have the problem.. now it's ok
04/13/2019 01:32 ThunderNikk#7442
You can probably remove the restriction if you take a look at the

NPC_CreateGuild.lua

And look for the > than 100 check and lower it to a > than 20 check
04/14/2019 08:41 Azreil#7443
Hopefully last two quick questions, if you please..

1: I have changed the value in the db of summonenhance (trying to up the dura of staged pets.)...but it remains 0 after staging...other than the db...may I ask what file(s) need to be changed to up the dura?

2: Not sure why but blue pixies refuse to be slotted in the formation line-up..(in any slot)..anyone else have this issue...if so, is there a way I can fix this?

Thank you for yourr time and any assistance.
04/14/2019 16:29 ThunderNikk#7444
@[Only registered and activated users can see links. Click Here To Register...] what server files are you working with?

Edit: OK I just checked 9.5 files and the blue pixie is not even in the summon resource tables wich also removes its card link from taming and I can't even tame them much less form them.

I had no issues with staging a unique pet and it having the normal amount of dura.

But if you somehow have tamed blue pixies I can assume you are inserting pets and if you are inserting staged pets they will always have 0 dura inserted unless you add a little .lua code to your script functions .lua and insert staged pets with a special command...

.lua code addition...

Code:
function insert_staged_pet(summon_code,enhance,card_id)


    if enhance > 0 and enhance < 6 then
        insert_summon_by_summon_id(summon_code)
        local petcard_array = get_item_handle_list(card_id)
        local new_pet = table.getn(petcard_array)
        set_item_enhance(petcard_array[new_pet],enhance)
    else 
       message("Error. Use an enhance-value between 1 and 5!")
    end

end
Insert staged pet command...

insert_staged_pet(summon_code,enhance,card_id)

but were still going to have to re add them back into the summon resource in order to be able to farm a blue pixie

Edit 2: Never mind the whole summon resource thing they switch the BP card ID on me instead of the old I have in my command sheet 540042 it is now a new ID 540006
04/14/2019 22:56 Azreil#7445
Thank you for your reply. I entered the above into the .lua. May I ask please...would you reveal how to look up the summon code please? (i have been using the Royal gm tool and the code looks like this:

/run insert_item(540117,1, 0, 0, -2147483648,"Alista") (this one is for the snowman non staged)

The beginning is the card ID...I think? Maybe an example of the correct syntax used for the new .lua entry if its okay to ask ?

With some trial and error...I have been able to insert s5 creatures...then..repairing them...and then they can be moved into the formation line-up...but not a single tamed creature wants to be moved...I was able to tame bps....but am unable to move any into formation.
04/15/2019 00:32 ThunderNikk#7446
Find the summon code from the summon resource...

Snowman would be 5404

/run insert_staged_pet(5404,5,540117)

Maybe your client is in need of proper resources matching the database.

You are using an epic 9.5 client right?

What version is your sframe (find in game server .opt under...N game.version:)
04/16/2019 02:21 Azreil#7447
Quote:
Originally Posted by ThunderNikk View Post
Try

/run insert_staged_pet(8486, 5, 540203)

Works...inserted a pet with full dura.
the 540203 is the card Id....so..the 8486 is the summon ID from the db.summonresource?

Question: Inserting a pet...any pet..can be put into formation..is there some way I can fix the formation bug? (Any regular tamed pet refuses to go into formation.) The card blinks in the formation line-up for a second then the lline-up is empty again. double-clicking on the card...dragging the card...(any regularly tamed pet card) isn't working.

Staging: I have two s0 bps and an advanced soul cata...tried to enhance them...combine them...both ways says try a different combination...any idea where I can start looking for a reason as to why?

lastly: I went to laksey north and tried to tame a lapika ...it tamed as a naga. I am guessing something is wrong with the card Id...or...summon Id ? If I could learn how to fix one.....I could fix any others I may come across...could someone teach me how to fix the one...if possible ?

Quote:
Originally Posted by ThunderNikk View Post
Find the summon code from the summon resource...

Snowman would be 5404

/run insert_staged_pet(5404,5,540117)

Maybe your client is in need of proper resources matching the database.

You are using an epic 9.5 client right?

What version is your sframe (find in game server .opt under...N game.version:)
Using EnglishRevolutionRappelz client
N:game.version:20180117

(the client is untouched...i.e. all I did was un rar it)..
04/16/2019 13:00 ThunderNikk#7448
Quote:
Originally Posted by Azreil View Post
Using EnglishRevolutionRappelz client
N:game.version:20180117

(the client is untouched...i.e. all I did was un rar it)..
You are launching it in English (ascii) launch?

The rest is a lot I am going to have to look into some of it when I get home.

The lapika/naga thing is an error in the database that has been around at least since 9.1 was released if not longer. I can look into that for you as well.
04/16/2019 21:12 Azreil#7449
Quote:
Originally Posted by ThunderNikk View Post
You are launching it in English (ascii) launch?

The rest is a lot I am going to have to look into some of it when I get home.

The lapika/naga thing is an error in the database that has been around at least since 9.1 was released if not longer. I can look into that for you as well.
yes Sir, launching it in English. My apologizes for it being a lot...I am not wanting to be a bother to anyone and am grateful for all the assistance I have received here over the years.
04/17/2019 13:52 12sky2Server#7450
plz help me,,,,how to limit the tp piont? and how to get one character's tp point (inclued skill's tp and chraracter's tp)?


thanks.
04/17/2019 21:09 Azreil#7451
Quote:
Originally Posted by 12sky2Server View Post
plz help me,,,,how to limit the tp piont? and how to get one character's tp point (inclued skill's tp and chraracter's tp)?


thanks.
Not sure how to limit the availability of tp points...but as to how to "get one characters tp point..." That can be done in ssms by looking at the telecaster db...table: character. That will show you earned jp...tp points...etc. Hope that is the information you were looking for.
04/17/2019 23:49 ThunderNikk#7452
@[Only registered and activated users can see links. Click Here To Register...]

I think most of your issues you can solve by using the US retail client and the sframe and .opt entry from the linked post...

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

There are 2 issues that it will not solve.

1. A Naga will still tame while taming the lasky group of lapikas. Pretty sure it consumes a Naga card not a soul card. According to the server spawns the server thinks they are Nagas but they use the Lapika model.

I will still try to do some DB queries and figure out which Lapikas are being spawned with the Naga taming ID.

2. They turned off the Witch Quests in the database by deleting one quest for the red farm that starts the whole line from the database.

More info will come out on this later.
04/18/2019 00:51 12sky2Server#7453
@[Only registered and activated users can see links. Click Here To Register...] thanks,, @[Only registered and activated users can see links. Click Here To Register...] bro,do you have the StringResource952.lua(or others *.lua) for RappelzRDBTool-3.1.0-bin?
アルカード's lua file not usefull....
04/18/2019 01:01 InkDevil#7454
Quote:
Originally Posted by 12sky2Server View Post
@[Only registered and activated users can see links. Click Here To Register...] thanks,, @[Only registered and activated users can see links. Click Here To Register...] bro,do you have the StringResource952.lua(or others *.lua) for RappelzRDBTool-3.1.0-bin?
アルカード's lua file not usefull....
here.
This folder contains all you need for 9.5.2.
I even have included the correct views you need for 9.5.2 items,
since people seem not to understand that 9.4 views works for 9.5.2 as well...

Tool-Credits: @[Only registered and activated users can see links. Click Here To Register...]
Some additional lua-credits + view: @[Only registered and activated users can see links. Click Here To Register...]

__________________________________________________ _____________________________

For your other problem with guild-create-level, add following line into your gameserver.opt:
Code:
N:game.guild_create_level:20
@[Only registered and activated users can see links. Click Here To Register...] : you can try if your pet-problem is solved when you use these views.
you can delete ItemReference/itemref of Revo's release.
04/18/2019 03:12 ThunderNikk#7455
I looked into the naga and lapika thing a little further and I do believe this is a client issue

Different regions have different monsters spawn in that location and because of the local flag values in the server tables that determines what is spawning there.

Your client however sees something else.

Do you have a local flag call out in your gameserver.opt you should or the English client and sframe will not let you log in.

Make sure the value is 4