Hi Twilight.
US or RunUP client?
Printable View
Backdoor inside... => Reported => filedelete
Twilight can you please explan for me what these two rows mean ? and how do you know what the number to enter in.
RebirthMapPos1 = 20, 66, 26, 33
RebirthMapPos2 = 33, 563, 3, 27
thanks in advanced.
Note: i editing my map.ini correctly but when i use /cmove 45 or 46 47 to move to new maps. the error : "map data load error" occur. anyway to solve this ? I use RunUP Client
I'm planning to open a closed-beta server, I am now working on the Game Shop. I was wondering if anyone has an English version or translation of items table?
Thanks in advance.
1. in PS_Game_logs maps loaded?
example
2009-05-14 22:22:48 map 45, zone 47 mob count = 285
2009-05-14 22:22:48 map 46, zone 48 mob count = 268
2009-05-14 22:22:48 map 47, zone 49 mob count = 458
2. use /cmove with coordinates ex:
/cmove 45,166.1815,9.359992,175.4331
Good work.....
Thanks ZeroSignal and Twilight for everything - release and all help with files.
Someone can release configured data.saf and PS_GameDefs with working item store? I dont understand how can i configure it....I need test it.
The English language any client of the game understands. The Item Store gains titles of items from the table.
data.saf - big size also is permanently inflected (Cash. SData) with upgrading. I already told as to inflect. The packer later will appear and we can easier inflect and construct new stands in Cash. SData
help new skill bug
how to add this?
http://img269.imageshack.us/img269/2442/777q.jpg
Thats true..... so maybe you can release only Cash.SData and PS_GameDefs?Quote:
data.saf - big size also is permanently inflected (Cash. SData) with upgrading. I already told as to inflect. The packer later will appear and we can easier inflect and construct new stands in Cash. SData
Thanks.
ok i think i will quit this shit here....
i deleted all and setup whole new mssql and shaiya pserverfiles
i did it 3 times on 2 different PCs but every time i can not create a char, its always telling me "name already in use"
i cant figure out where is the prob....checked many times the SQL stuff and all Logfiles but i dont get it.
i dont know why it all worked the first time i set up a server and yet not anymore
so bye bye all :(:
Try it:Quote:
i did it 3 times on 2 different PCs but every time i can not create a char, its always telling me "name already in use"
SQL Database - PS_GameData - CHAR - Design table and clear AllowNulls in Character table. And done :P
hi
GO TO
SQL Database - PS_GameData - CHAR - design table and change Maketime in varchar
xd you have the same problem I've had but I am a good programmer
CHANGE MY SCRYPT
go to USP_SAVE_CHAR_ITEM_ADD_E
/****** Object: Stored Procedure dbo.usp_Save_Char_Item_Add_E Script Date: 2008-6-7 18:31:57 ******/
/****** Object: Stored Procedure dbo.usp_Save_Char_Item_Add_E Script Date: 2008/3/15 下午 05:25:52 ******/
/****** 偃羹: 盪濰 煎衛盪 dbo.usp_Save_Char_Item_Add_E 蝶觼董 陳瞼: 2006-04-11 螃 10:57:16 ******/
CREATE Proc usp_Save_Char_Item_Add_E
@CharID int,
@ItemUID bigint,
@Bag tinyint,
@Slot tinyint,
@ItemID int,
@Type tinyint,
@TypeID tinyint,
@Quality int,
@Gem1 tinyint,
@Gem2 tinyint,
@Gem3 tinyint,
@Gem4 tinyint,
@Gem5 tinyint,
@Gem6 tinyint,
@Craftname varchar(20) = '',
@Count tinyint,
@Maketime varchar(20)='01/01/1999',
@Maketype char(1)
AS
--SET NOCOUNT ON
IF(@Quality >= 5000)
BEGIN
SET @Quality=0
END
INSERT INTO CharItems
(CharID, bag, slot, ItemID, Type, TypeID, ItemUID, quality, gem1, gem2, gem3, gem4,
gem5, gem6, craftname, [count], maketime, maketype)
VALUES(@CharID, @Bag, @Slot, @ItemID, @Type, @TypeID, @ItemUID, @Quality, @Gem1, @Gem2, @Gem3, @Gem4,
@Gem5, @Gem6, @Craftname, @Count, @Maketime, @Maketype)
IF(@@ERROR = 0)
BEGIN
RETURN 1
END
ELSE
BEGIN
RETURN -1
END
--SET NOCOUNT OFF
GO
and
go to usp_Read_Char_Items_Detail_R
CHANGE MY SCRYPT
/****** Object: Stored Procedure dbo.usp_Read_Char_Items_Detail_R Script Date: 2008-6-7 18:31:57 ******/
/****** Object: Stored Procedure dbo.usp_Read_Char_Items_Detail_R Script Date: 2008/3/15 下午 05:25:51 ******/
CREATE Proc usp_Read_Char_Items_Detail_R
@CharID int
AS
/******SET NOCOUNT ON******/
SELECT ItemID, Type, TypeID, ItemUID, Bag, Slot, Quality,
Gem1, Gem2, Gem3, Gem4, Gem5, Gem6, Craftname, [Count], Maketype ,
'2009' AS MakeTime_YYYY,
'01' AS MakeTime_MM,
'01' AS MakeTime_DD,
'00' AS MakeTime_HH,
'00' AS MakeTime_MI,
'00' AS MakeTime_SS
FROM CharItems
WHERE CharID = @CharID AND Del = 0
/******SET NOCOUNT OFF******/
GO
and restarts all the service and good luck:thumbup1:
I've spend 4 days but I've successfully with these changes it is sufficient to look for or just the error ^ ^
And you can create characters now