Rappelz server files

05/26/2011 08:57 gremlinson#1756
any of the devs would like to upload latest database ? with all included so far.
05/26/2011 09:04 wisp66#1757
Quote:
Originally Posted by amerklm View Post
this is my first post here after i have something useful
Found this admin tools
thanx for the dev
[Only registered and activated users can see links. Click Here To Register...]

minimize the game server to work good
im pretty sure DarkGts didnt give u permission to post that.
ive informed him already.
next time ask and or give credit.. and u guys wonder why we mostly refuse to post anything new.
the same questions 1 million times and refusing to credit where its due.
i for one belive this should be shared not some but all of it...
and but when my inbox is 30 deep daily with the same questions over and over .if they took the time read the guide retraced there steps it wouldnt come up.
and to the few of u with legitiment issues who pmed me im sorry if i didnt respond after the first 13 repeaters i said screw it and delete all.
not to mention people filling threads with bs posts cause there to lazy to just skim threw all the pages
if most never post here again i totally understand why.
05/26/2011 09:58 darksoulzz1#1758
that admin tool was also released by solei on italiahack
05/26/2011 10:03 zero911#1759
Quote:
Originally Posted by speedy-nl View Post
:cool:
and peeps are getting mad at me, when i say use the damn search
i wonder why :(
devs are right to post nothing in the mean time, before they are done

but but i want a invite to that private forum, just to read/search and try out the new thing :)

owel i need to find a new dream :pimp:







reported for spam, use the fucking edit
srry my sistem got error any way they mad because some time they find nothing when they search
05/26/2011 10:18 khshe#1760
[Only registered and activated users can see links. Click Here To Register...]
05/26/2011 10:32 zero911#1761
that so nice how you died it can you post you database i hope it have some mob missing for taming scene i got error in my db cant tame throght flag

some one could help please

well some one help me tameing ifrit and genie
05/26/2011 11:48 kaizoku801#1762
BTW i already said this in my earlier post, but to get
#item_insert command to work, you first need to do the
#learn_all_skill("char name") command... then after that item insert will work... btw if you got a public server or more then 1 char.. then the items will go to whoever used the
#learn all skill command last

example: #learn_all_skill("test1")
now every inserted item goes to test 1 even if test2 writes
#insert_item(540063, 1, 1, 1, "test2") ... the item will show up in test1's inventory

NOTE: the learn all skill command makes you 170
05/26/2011 12:08 Energetics#1763
Quote:
Originally Posted by kaizoku801 View Post
BTW i already said this in my earlier post, but to get
#item_insert command to work, you first need to do the
#learn_all_skill("char name") command... then after that item insert will work... btw if you got a public server or more then 1 char.. then the items will go to whoever used the
#learn all skill command last

example: #learn_all_skill("test1")
now every inserted item goes to test 1 even if test2 writes
#insert_item(540063, 1, 1, 1, "test2") ... the item will show up in test1's inventory

NOTE: the learn all skill command makes you 170
oh didnt read your post but its not only working with learn_all_skill....
you can do it with some different commands too!

and it was just a reminder for ppls who doesnt know that

not everyone reads the full topic
05/26/2011 13:26 kaizoku801#1764
Quote:
Originally Posted by Energetics View Post
oh didnt read your post but its not only working with learn_all_skill....
you can do it with some different commands too!

and it was just a reminder for ppls who doesnt know that

not everyone reads the full topic
did not know about working with other commands.. well thx for clearing that up
05/26/2011 13:41 TheSuperKiller#1765
Quote:
Originally Posted by Chaosnightmare View Post
I use different clients and repacks to try different things, but aor client + JW988's guide stuff works like a charm. The command works fine but for some weird reason not for everyone. You can also use the insert item procedure to insert items.

Code:
USE [Telecaster]
GO

DECLARE @return_value int

EXEC @return_value = [dbo].[smp_insert_item]
@IN_SID = 5009, --Change this Per Item
@IN_OWNER_ID = 15, --Char ID
@IN_ACCOUNT_ID = 0,
@IN_SUMMON_ID = 0,
@IN_AUCTION_ID = 0,
@IN_KEEPING_ID = 0,
@IN_CODE = 2010258, --Item Code
@IN_IDX = 100, --Place in Inv (doesnt seem to matter)
@IN_FLAG = 0,
@IN_CNT = 1, --How Many you want
@IN_LEVEL = 1, --Item Level
@IN_ENHANCE = 0, -- Item +
@IN_ENDURANCE = 100,
@IN_GCODE = 1,
@IN_REMAIN_TIME = 0,
@IN_ELEMENTAL_EFFECT_TYPE = 0,
@IN_ELEMENTAL_EFFECT_EXPIRE_TIME = N'1970-01-01 11:00:00.000',
@IN_ELEMENTAL_EFFECT_ATTACK_POINT = 0,
@IN_ELEMENTAL_EFFECT_MAGIC_POINT = 0

SELECT 'Return Value' = @return_value

GO
Found this while back here.
sry but tried it 1000000 time I get this error :)

Quote:
Msg 8114, Level 16, State 5, Procedure smp_insert_item, Line 0
Error converting data type nvarchar to int.

(1 row(s) affected)

And the item doesnt show .

What I did :

Quote:
USE [Telecaster]
GO

DECLARE @return_value int

EXEC @return_value = [dbo].[smp_insert_item]
@IN_SID = 7890, --Change this Per Item
@IN_OWNER_ID = TheSuperKiller, --Char ID
@IN_ACCOUNT_ID = 0,
@IN_SUMMON_ID = 0,
@IN_AUCTION_ID = 0,
@IN_KEEPING_ID = 0,
@IN_CODE = 3630024, --Item Code
@IN_IDX = 21, --Place in Inv (doesnt seem to matter)
@IN_FLAG = 0,
@IN_CNT = 1, --How Many you want
@IN_LEVEL = 1, --Item Level
@IN_ENHANCE = 0, -- Item +
@IN_ENDURANCE = 100,
@IN_GCODE = 1,
@IN_REMAIN_TIME = 0,
@IN_ELEMENTAL_EFFECT_TYPE = 0,
@IN_ELEMENTAL_EFFECT_EXPIRE_TIME = N'1970-01-01 11:00:00.000',
@IN_ELEMENTAL_EFFECT_ATTACK_POINT = 0,
@IN_ELEMENTAL_EFFECT_MAGIC_POINT = 0

SELECT 'Return Value' = @return_value

GO



btw : I searched alot And didn't find any answer
05/26/2011 14:07 ironhammer500#1766
Quote:
Originally Posted by TheSuperKiller View Post
sry but tried it 1000000 time I get this error :)




And the item doesnt show .

What I did :






btw : I searched alot And didn't find any answer
Ur owner id has to be the number id of ur chara in the database I.E. 1 for 1st chara and so on

just go on telecaster and chara table, find ur chara and find its id i think its the sid not sure.
05/26/2011 14:22 TheSuperKiller#1767
Quote:
Originally Posted by ironhammer500 View Post
Ur owner id has to be the number id of ur chara in the database I.E. 1 for 1st chara and so on

just go on telecaster and chara table, find ur chara and find its id i think its the sid not sure.
got it now ..... it should be number not the name ...... testing :)

thanks man :D
05/26/2011 14:59 Makenci#1768
ich hätte mal ne frage , wie ändere ich das das es in deutsch alels ist zb ? weil ich seh vielle ändern das in russisch oder kp welche sprache
05/26/2011 15:03 leduan#1769
brauchst ein deutschen 6.2 client sowie auch für jede andere sprache.
05/26/2011 15:12 Makenci#1770
asoo ok, danke, kann man den den überhaupt noch irgendwo downloaden ?