[Help Thread] Please post your questions here.

05/18/2018 17:43 king1king#7111
how i can convert item.sql to item.rdb ?
05/18/2018 18:13 ThunderNikk#7112
Quote:
Originally Posted by DrikXak View Post
Can I somehow improve the drop of things and cards? costs x20, but very little falls
Are you trying to say you edited the drop line in the gameserver.opt compressed it and it does not change?

Quote:
Originally Posted by king1king View Post
how i can convert item.sql to item.rdb ?
There is a tutorial on that...

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

Thanks to LamiaCore for the guide.
05/18/2018 18:57 DrikXak#7113
Quote:
Originally Posted by ThunderNikk View Post
Are you trying to say you edited the drop line in the gameserver.opt compressed it and it does not change?



There is a tutorial on that...

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

Thanks to LamiaCore for the guide.
It has changed, but I want more armor and weapons to drop out than unnecessary trash
05/18/2018 19:28 king1king#7114
i don't mean updates

i mean sql file in my pc how i can convert this file to rdb
05/18/2018 23:11 ThunderNikk#7115
Quote:
Originally Posted by DrikXak View Post
It has changed, but I want more armor and weapons to drop out than unnecessary trash
You would have to actually edit the percentages in the drop tables for that.

Quote:
Originally Posted by king1king View Post
i don't mean updates

i mean sql file in my pc how i can convert this file to rdb
If you mean you have an SQL file that is not in your database and you want to convert that file into an RDB then you would have to write a tool for that because it doesn't exist yet.

If you can import that SQL file into your database table then you can use the guide to write an RDB from the dbo.ItemResource and create the db_item.rdb and db_item.ref
05/19/2018 05:34 12sky2Server#7116
please, @[Only registered and activated users can see links. Click Here To Register...] could you do some work for Patch_Bin&Launcher Tools to support the TW or CN ,
thanks a lot.
05/20/2018 02:35 thefear511#7117
Quote:
Originally Posted by 12sky2Server View Post
please, @[Only registered and activated users can see links. Click Here To Register...] could you do some work for Patch_Bin&Launcher Tools to support the TW or CN ,
thanks a lot.
you want the launcher to be CN or TW or the game?
05/20/2018 10:30 12sky2Server#7118
yes, i want to play rappelz with cn or tw client.
05/26/2018 16:25 king1king#7119
hi all
i need
item.rdb 9.4
item.ref 9.4

i don,t have 9.4 client to dump
05/27/2018 23:51 SilentWisdom#7120
Quote:
Originally Posted by king1king View Post
hi all
i need
item.rdb 9.4
item.ref 9.4

i don,t have 9.4 client to dump
Download one? This isn't a 'full service' gas station mate.
05/29/2018 19:55 Rozan4ik7232314#7121
Hi i havent item ( NPC_Secroute_mage_contact1() ) what should i do, i use your instructions, but there still no NPC in HV .....
05/29/2018 22:26 mixa90901#7122
Hello, I'm sorry for the stupid question and my english.

How to change the starting position when creating a character (training island) on the horizon?
When I change the coordinates in on_first_login.lua I throw it into the horizon, but there is nothing to see except the buildings, until I leave the game and I do not come in? I suspect so because it connects to the channel of the training island. Advise how to proceed?
05/29/2018 23:52 ThunderNikk#7123
Quote:
Originally Posted by Rozan4ik7232314 View Post
Hi i havent item ( NPC_Secroute_mage_contact1() ) what should i do, i use your instructions, but there still no NPC in HV .....
You ran both the following commands in the following order?

use arcadia
update NPCResource set contact_script = 'NPC_Secroute_mage_contact()' where contact_script like 'NPC_Secroute_mage_contact1()'

Then run

use arcadia
update NPCResource set local_flag = 1 where contact_script like 'NPC_Secroute_mage_contact()'
update NPCResource set local_flag = -1 where contact_script like 'NPC_Secroute_mage_contact1()'
update NPCResource set local_flag = -1 where contact_script like 'NPC_Foreign_Secroute_mage_contact()'
05/29/2018 23:59 HiddenAfter#7124
i need to know how to copy random option from item to another
using set_item_random_option & get_item_random_option
so far i managed to know how set_item_random_option works i still got problems with get coz it didn't show me any info
05/30/2018 07:56 AziaMafia#7125
Hi Mixa,

in our Firstlogin.lua found and replace this line code like this
Code:
	set_value( "x" , 152747)     --u can change position x-y
	set_value( "y" , 77097)       --u can change position x-y
	set_value( "layer", 0)   -- layer = 0  in horizon  ( in island 1-100)
hi HiddenAfter,

if u want learn get/set random option look lua file by lamia
[Only registered and activated users can see links. Click Here To Register...]

:)