Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz > Rappelz Private Server
You last visited: Today at 14:51

  • 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 11/22/2017, 13:45   #6736

 
Exterminator-[Fury]'s Avatar
 
elite*gold: 15
Join Date: Jul 2010
Posts: 715
Received Thanks: 51
Didn't change anything in the auto auction.

telecaster autoauctionregistrationinfo: links the next
6507 6 2014-06-07 20:30:00.000 2017-05-30 02:09:43.000
6508 7 2014-06-07 20:30:00.000 2017-05-30 02:09:43.000

Arcadia autoauctionresource:
6 705002 180000001 100000 1 0 2014-06-07 20:30:00.000 1 7 2
7 705002 180000001 100000 1 0 2014-06-07 20:30:00.000 1 7 2

Quote:
Originally Posted by ThunderNikk View Post
Something weird programed into auto auction?
I would like to know how to read these dump files... are there any tools?
Exterminator-[Fury] is offline  
Old 11/25/2017, 23:58   #6737
 
elite*gold: 0
Join Date: Nov 2012
Posts: 29
Received Thanks: 1
I hope no one's gonna rip my head off over my questions.
Maybee the question was also taken, but i didn't know the right "words" for searching.

I searched in the following threats:



OK at first i used the tutorial from thefear511


now the server is working.
As a hint: i didnt play rappelz for some years, maybee the thing i want to have didn't work on a official server.

Ok let's come to my question:
At first i insered the "Takin summoning Scroll: healer" (id: 3631058)
And Then i wanted to taming takin ...
As the resultof a working taming, i bekame an black item with error_code:
error_summoning_id(10369)
What data is missing to use the Unique Kreatures?
Is this calling the Astaroth-Fix?

And the secound question:
I wanted to use the following query:
/run insert_item(546007, 1, 5, 1, -2147483648) -- healing ent (grade 2)
[id from this threat: ]
But i see this is just for the 9.1 and so maybee not for the 9.4 ressource
But which comand/id list do i have to use here?
asthos is offline  
Thanks
1 User
Old 11/26/2017, 01:24   #6738
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,785
Received Thanks: 1,463
1.

You do not need to perform the Astaroth fix in order to use unique creatures.

Nothing is missing from the files in order for the unique creatures to work.

Have you done anything to your client or database?

What client are you using?

What sframe?

I have not tried Takin yet but I will now.

EDIT: I was able to insert Takin by summon id

/run insert_summon(10369)

Are you certain your telecaster was empty in dbo.summon?

2.

Well first there is no item 546007

Try insert summon by summon ID now. The old 9.1 insert tamed card was not working for me.

The simple command is...

/run insert_summon(summon_id)

or

/run insert_summon(6007)

More complicated you need to write a .lua function in like ETC Scipt Function.lua in order to insert staged pets...

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
Thanks to LamiaCore in Discord today
ThunderNikk is offline  
Thanks
2 Users
Old 11/26/2017, 20:48   #6739
 
elite*gold: 0
Join Date: Nov 2012
Posts: 29
Received Thanks: 1
Quote:
Originally Posted by ThunderNikk View Post
1.

Have you done anything to your client or database?
What client are you using?
What sframe?
[...]
/run insert_summon(10369)
Are you certain your telecaster was empty in dbo.summon?
As i told i followed the tutorial of thefear511.
So i used his Data.
But the sframe.exe i used this one from here:


in The telecaster [dbo.summon] there is an entry.
And i can put it this Pet in my formation in the game, but there is no icon and i couldn't see the pet.
It seems that there are missing some other entries in other tables.

Where can i get more information what is missing, or see, what version i use?
asthos is offline  
Old 11/26/2017, 22:05   #6740
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,785
Received Thanks: 1,463
If you are using a US client and not launching (ascii) that could be your client.

Launch ascii or find a client in your languaqe
ThunderNikk is offline  
Old 11/27/2017, 21:14   #6741
 
elite*gold: 0
Join Date: Jun 2009
Posts: 28
Received Thanks: 8
Summoned creature (i.e. Silex) and/or lootpet (i.e. Draka) overlapping character

Maybe somebody can explain me how to fix this.

1st:
I have a Silex the Giant creature which when summoned totally overlap my character, i mean they are at the same position in idle.

and

2nd:
Some lootpets also overlapping a little bit with the character, not full overlapping but its annoying somehow.

Edit: Using Revo 9.4 server files from the release
Shalindor is offline  
Old 11/27/2017, 21:24   #6742
 
InkDevil's Avatar
 
elite*gold: 0
Join Date: Sep 2015
Posts: 595
Received Thanks: 1,190
Quote:
Originally Posted by Shalindor View Post
Maybe somebody can explain me how to fix this.

1st:
I have a Silex the Giant creature which when summoned totally overlap my character, i mean they are at the same position in idle.

and

2nd:
Some lootpets also overlapping a little bit with the character, not full overlapping but its annoying somehow.

Edit: Using Revo 9.4 server files from the release
Code:
UPDATE dbo.SummonResource
SET size = 7 where model = 'rock_house'
GO
if that's not enough for you, you could also try size = 8 or 9 or 10.

For looter it's the same:
Code:
 
UPDATE dbo.PetResource
SET size = 7 where name_id= string_code of its name in StringResource
GO
InkDevil is offline  
Thanks
3 Users
Old 11/27/2017, 21:35   #6743
 
elite*gold: 0
Join Date: Jun 2009
Posts: 28
Received Thanks: 8
Quote:
Originally Posted by LamiaCore View Post
Code:
UPDATE dbo.SummonResource
SET size = 7 where model = 'rock_house'
GO
if that's not enough for you, you could also try size = 8 or 9 or 10
Omg, is it that easy?

Then i assume for the lootpets changing the size column in PetResource has a similar effect.

I though it would be some of the target_x, target_y, etc. values working as position offsets, but they did not change anything.

Thank you, LamiaCore, i will try it.

EDIT: Again, thank you very much LamiaCore. I've changed the size for silex to 8.0 and for the lootpet to 4.0, generated RDBs, hashed it and put into client resource folder. Worked like a charm
Shalindor is offline  
Thanks
1 User
Old 11/28/2017, 17:49   #6744


 
アルカード's Avatar
 
elite*gold: 50
Join Date: Mar 2012
Posts: 1,003
Received Thanks: 393
Quote:
Originally Posted by Shalindor View Post
Omg, is it that easy?

Then i assume for the lootpets changing the size column in PetResource has a similar effect.

I though it would be some of the target_x, target_y, etc. values working as position offsets, but they did not change anything.

Thank you, LamiaCore, i will try it.

EDIT: Again, thank you very much LamiaCore. I've changed the size for silex to 8.0 and for the lootpet to 4.0, generated RDBs, hashed it and put into client resource folder. Worked like a charm
it is great to see that people read what other experianced members write the guide or fix for some stuffs.I think lamia will agree that sometimes people dont read what other members write.
アルカード is offline  
Old 12/05/2017, 10:27   #6745
 
elite*gold: 0
Join Date: Oct 2017
Posts: 6
Received Thanks: 0
مشكلة المدمر

السلام عليكم و رحمة الله و بركاتة

معلشي ابي مساعده
اللعبة بتفصل معي كل مره
لما بيكون المدمر التطوير الثاني و بيهاجم وحوش
قبل ما المدمر التطوير الثاني يلمس الوحش اللعبة بتفصل
حتي الوحوش الي شكلها مثل المدمر التطوير الثاني مثل القائد كيشكان
في الجزيرة المخفية اول ما بتلمس الشخصية اللعبة بتفصل
و شكرا لمساعدتك
انا استخدم لعبة اصدار 7.3

اتمني المساعدة
شكرا مقدما
RashedGM is offline  
Old 12/05/2017, 10:59   #6746



 
Ghost Informatics's Avatar
 
elite*gold: 6190
Join Date: Sep 2014
Posts: 348
Received Thanks: 935
Quote:
Originally Posted by RashedGM View Post
مشكلة المدمر

السلام عليكم و رحمة الله و بركاتة

معلشي ابي مساعده
اللعبة بتفصل معي كل مره
لما بيكون المدمر التطوير الثاني و بيهاجم وحوش
قبل ما المدمر التطوير الثاني يلمس الوحش اللعبة بتفصل
حتي الوحوش الي شكلها مثل المدمر التطوير الثاني مثل القائد كيشكان
في الجزيرة المخفية اول ما بتلمس الشخصية اللعبة بتفصل
و شكرا لمساعدتك
انا استخدم لعبة اصدار 7.3

اتمني المساعدة
شكرا مقدما
أي حزمة 7.3 تستخدم؟
Ghost Informatics is offline  
Old 12/05/2017, 14:54   #6747
 
elite*gold: 0
Join Date: Jul 2013
Posts: 24
Received Thanks: 4
In the 9.4 Revolution Team official files, grandmaster hector spawns another grandmaster hector and a ****** slaughterer, I looked in the lua files and in the database but I couldn't find his spawn. I want to change it to him spawning a crystal golem and a ****** slaughterer, please can you help out if you know.
Nooobee4 is offline  
Old 12/05/2017, 15:40   #6748
 
InkDevil's Avatar
 
elite*gold: 0
Join Date: Sep 2015
Posts: 595
Received Thanks: 1,190
Quote:
Originally Posted by Nooobee4 View Post
In the 9.4 Revolution Team official files, grandmaster hector spawns another grandmaster hector and a ****** slaughterer, I looked in the lua files and in the database but I couldn't find his spawn. I want to change it to him spawning a crystal golem and a ****** slaughterer, please can you help out if you know.
I'll add a fix for it in Fix-Release.
Lemme just come home from work in a hour xD

EDIT: Nvm, just wrote it now.
Read in Skill-Fixes.
InkDevil is offline  
Thanks
3 Users
Old 12/05/2017, 22:34   #6749
 
elite*gold: 0
Join Date: Oct 2017
Posts: 6
Received Thanks: 0
Quote:
Originally Posted by Ghost Informatics View Post
أي حزمة 7.3 تستخدم؟
ما بعرف الحزمة انا مغير اسمها
ما هيا الطريقة الي بعرف بيها حزمتي ؟
RashedGM is offline  
Old 12/07/2017, 11:35   #6750
 
elite*gold: 0
Join Date: Aug 2017
Posts: 8
Received Thanks: 1
Hi,
Someone know we're i can Download 9.4 EU (German) Client?
Schmandtastisch 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 14:51.


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.