|
You last visited: Today at 01:11
Advertisement
p server issues and resolve
Discussion on p server issues and resolve within the Rappelz Private Server forum part of the Rappelz category.
08/17/2011, 14:18
|
#301
|
elite*gold: 0
Join Date: Aug 2011
Posts: 2
Received Thanks: 0
|
help (~_~)
|
|
|
08/17/2011, 18:29
|
#302
|
elite*gold: 0
Join Date: Aug 2011
Posts: 16
Received Thanks: 0
|
Hello
Just one question
how change the gold rate ?
in gameserver . opt but do not work
please help me :'(
|
|
|
08/21/2011, 05:51
|
#303
|
elite*gold: 0
Join Date: Jun 2011
Posts: 30
Received Thanks: 2
|
need help here

|
|
|
08/21/2011, 21:29
|
#304
|
elite*gold: 0
Join Date: Aug 2011
Posts: 12
Received Thanks: 0
|
I forgot the login and password in Sql Server Managment
Studio
help me
how can i get it back?
or
what should I do?
.................................................. ................................................
Sql Server Managment Studio انا نسيت الباس في برنامج
كيف أسترجعها؟
أو
ماذا أفعل؟
|
|
|
08/22/2011, 12:07
|
#305
|
elite*gold: 0
Join Date: Mar 2011
Posts: 448
Received Thanks: 54
|
Quote:
Originally Posted by acrv158
I forgot the login and password in Sql Server Managment
Studio
help me
how can i get it back?
or
what should I do?
[Some bullshit here]
|
Quit crossposting
|
|
|
08/24/2011, 13:25
|
#306
|
elite*gold: 0
Join Date: May 2011
Posts: 53
Received Thanks: 1
|
Quote:
Originally Posted by mhtjaber
help (~_~)

|
Just disable your fire wall and try it again
__________________________________________________ _
Hey guys does anyone know how to fix my problem ^_^
The problem is when I enter ("#insert_item") in (game001) didn't work ?
I make a serch and I found that
--------------------------------------------------
Add item for those who "#insert_item" doesn't work.
Spoiler:
Go on telecaster, right click on tables, "New Query"
Paste the text of the spoiler below.
USE [Telecaster]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[smp_insert_item]
@IN_SID = 1, --Change this Per Item
@IN_OWNER_ID = 1, --Char ID
@IN_ACCOUNT_ID = 0,
@IN_SUMMON_ID = 0,
@IN_AUCTION_ID = 0,
@IN_KEEPING_ID = 0,
@IN_CODE = 910037, --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
-------------------------------------------------------------------
But Idon't get it
Could anyone help me please ?
|
|
|
08/24/2011, 15:11
|
#307
|
elite*gold: 0
Join Date: Nov 2009
Posts: 538
Received Thanks: 28
|
For the insert cmd do this
#sv(lv, level u want, "NAME")
#learn_all_skill("NAME")
#Insert_item(id , enchant , level , flag , "NAME")
For the mssql query u need to start a new query copy and paste this in and fill out the details, u will need to know item codes your character sid number. Probaly good idea to know what your doing to.
Also make sure your logged out for the Query one.
Code:
USE [Telecaster]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[smp_insert_item]
@IN_SID = 1, --Change this Per Item
@IN_OWNER_ID = 1, --Char ID
@IN_ACCOUNT_ID = 0,
@IN_SUMMON_ID = 0,
@IN_AUCTION_ID = 0,
@IN_KEEPING_ID = 0,
@IN_CODE = 910037, --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
|
|
|
08/24/2011, 16:57
|
#308
|
elite*gold: 0
Join Date: May 2011
Posts: 53
Received Thanks: 1
|
Quote:
Originally Posted by ironhammer500
For the insert cmd do this
#sv(lv, level u want, "NAME")
#learn_all_skill("NAME")
#Insert_item(id , enchant , level , flag , "NAME")
For the mssql query u need to start a new query copy and paste this in and fill out the details, u will need to know item codes your character sid number. Probaly good idea to know what your doing to.
Also make sure your logged out for the Query one.
Code:
USE [Telecaster]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[smp_insert_item]
@IN_SID = 1, --Change this Per Item
@IN_OWNER_ID = 1, --Char ID
@IN_ACCOUNT_ID = 0,
@IN_SUMMON_ID = 0,
@IN_AUCTION_ID = 0,
@IN_KEEPING_ID = 0,
@IN_CODE = 910037, --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
|
OK
The three first letters insert it to captinharlockserver (game001)
And all the stuff in the spoiler put it in New Query
Thanks alot man
|
|
|
08/25/2011, 12:29
|
#309
|
elite*gold: 0
Join Date: Feb 2010
Posts: 4,213
Received Thanks: 1,178
|
#de-pinned
|
|
|
09/10/2011, 15:53
|
#310
|
elite*gold: 0
Join Date: Aug 2011
Posts: 7
Received Thanks: 1
|
hi i need help i created my server yesterday.and i cant see any servers in server list. pls help -_-
|
|
|
09/10/2011, 16:58
|
#311
|
elite*gold: 0
Join Date: Oct 2008
Posts: 10,822
Received Thanks: 8,863
|
did u write in auth window "set game.open_external 1 and start_service" ?
|
|
|
09/11/2011, 11:30
|
#312
|
elite*gold: 0
Join Date: Aug 2011
Posts: 7
Received Thanks: 1
|
yeah i write start_service it says bla bla bla ok and i write set game.open_external 1 it isnt say anything
ok i solve problem but i have an other problem :/ when i select the server it gives this error
|
|
|
09/24/2011, 18:51
|
#313
|
elite*gold: 0
Join Date: May 2010
Posts: 69
Received Thanks: 2
|
i have a question i have all the server rdy to go but when i launch PrincessAuroraServer its comes up with the error: AUTH DB INIT ERROR: Login failed for the user 'sa'. The user is not associated with the trused SQL Server connection,,,,,, if any1 can get back to me quickly would be nice ty
|
|
|
09/25/2011, 15:23
|
#314
|
elite*gold: 0
Join Date: Aug 2011
Posts: 7
Received Thanks: 1
|
delete sa's password in sql studio
|
|
|
09/25/2011, 16:18
|
#315
|
elite*gold: 0
Join Date: Jul 2011
Posts: 8
Received Thanks: 1
|
Quote:
Originally Posted by mtbl0w
yeah i write start_service it says bla bla bla ok and i write set game.open_external 1 it isnt say anything
ok i solve problem but i have an other problem :/ when i select the server it gives this error 
<image>
|
I had this problem awhile ago. I fixed it by checking all the IP addresses in every settings file. The server is very nitpicky about IP addresses.
|
|
|
 |
|
Similar Threads
|
A7 Issues with my server
03/16/2011 - Dekaron Private Server - 4 Replies
So i have i have been searching for the last few days now. so i finally find a good place to download a clean A7 server files. i get them applied i think. they came with a bin and data folder. so i put the date folder into the my old client and the bin folder in there. i went threw changed all the ips and thn took the share folder and put it in the server sided share folder. now i needa know if thats correct cuz it is supposed to have the aloken in there and i dont see her. it also deleted my...
|
Server Issues 9DVN
04/06/2010 - 9Dragons - 20 Replies
Hey guys,
I'm having the same problem as diablo666ro. "Cannot Retrieve server list. Please refer to the notice on our website.". It's happening all the time. I have tried everything that this site provides. Its not changing anything. This is the SS I got. Its attached below. Please help both diablo and I. We really wanna play ><
Any help is GREATLY appreciated!!
|
EO Server Creation Issues
04/14/2008 - EO PServer Hosting - 1 Replies
Alright , im a big fan of EO , and i have decided to host a eudemons private SERVER , I attempted following Dragon** Guide on this forum , only it was not neatly written , + the TuT Was to fast , but with my knowledge , i attempted it without a guide BUT whenever i attempt to login with test/test , i get 'The server is Down' error , no matter everything i try !
If anyone could help me with this issue , join the hamachi network @ BlanketEO/blanket ........ :P
Whoever helps me create...
|
Server.dat Issues
12/10/2006 - Conquer Online 2 - 9 Replies
Hi Guys.
Im having a few problems, Ive been playing on Qonquer fine for the last 2 months untill the new server group fairy tales came into place. I have my client updated as Qonquer instructed and extracted the zip folder for the patches he provided. Ive had Qonquer working for the past few months and everything was fine untill the new servers came out so Im thinking maybe its a server.dat problem as Qonquer didnt update the server.dat he has on his site. If anyone has Qonquer working and a...
|
All times are GMT +1. The time now is 01:11.
|
|