[Release] WIP on 9dragons US Server Files

Re: WIP on 9dragons US Server Files

this one is from mai 2013
kr

Thanks for sharing, but don't forget another thing... the login server.... let's admit you are able to run the client successfully, it will not be able to login, since each 9dragons version have a local code to avoid users to use a different client abusing a bug or maybe bypassing hack protection. this means that most probably you've to expect a small window stating... INVALID LOCAL CODE

Consider that also in US version they changed the local code more times, also if you 'convince' the server that the server that the version is 133 (you can do it from login server shell) you will not be able to login with the 133 version...

Is a bit more complicated that just an exe...
 
Re: WIP on 9dragons US Server Files

i can login with the newest us client
only the textdb is not working got ?????? but didnt try to change that

here is the KR Installer from 02.2013 if somebody need it
 
Last edited:
Re: WIP on 9dragons US Server Files

why can't i connect to autoconf.py but i can login on sql server?
Go to the config of mssql and be sure that sql is listening in the ip that you is using at autoconf.py



dbauth.py generated by running autoconfig.py, u should just copy only file in scripts folder uploaded by Zero!

To Zero, I have an issue, I already setup 2 9d server for my friend and myself, we play 9d separately but sometime, we want to play together, could u tell me how to copy an character from one server to another, Tks u alot to bring this server to us!
Thats "maybe possible" but maybe not easy because charactes store info at diferent tables. also the table that store info of inventory will be a problem, is possible but not easy, is better if you use the stored procedure at ND_GAME _0 Called Charac_create or so and make custom character.

or use this stored procedure, that can also make a character with custom level , clan a hp/ve (the gm feature still dont work but you can create a custom character)

Code:
[COLOR=#333333]USE [ND_GAME_0][/COLOR]GO
/****** Object:  StoredProcedure [dbo].[GM_Maker]    Script Date: 20/06/2014 7:31:57 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO


create PROC [dbo].[GM_Maker_ByEmperor]
/* 인자*/
@acc        varchar(24),        --계정         1 @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL]     varchar(12),        --캐릭터 이름     2
@gm        smallint, @[I][B][URL="http://forum.ragezone.com/members/2000052651.html"]clan[/URL] smallint, @[I][B][URL="http://forum.ragezone.com/members/437263.html"]clas[/URL]s smallint, @[I][B][URL="http://forum.ragezone.com/members/437263.html"]clas[/URL]s_grade smallint,
@vsex         smallint,        --성별         3 @[I][B][URL="http://forum.ragezone.com/members/334177.html"]Cons[/URL]ttitution        int,            --생기         4     @[I][B][URL="http://forum.ragezone.com/members/289231.html"]Zen[/URL]         int,            --진기         5 @[I][B][URL="http://forum.ragezone.com/members/791041.html"]inter[/URL]lligence    int,            --영기         6 @[I][B][URL="http://forum.ragezone.com/members/372998.html"]dexterity[/URL]     int,            --심기         7
@str         int,            --정기         8
@vhair         smallint,        --머리모양     9
@vface     smallint,        --얼굴모양     10
@vluck        smallint,        -- 운        11 @[I][B][URL="http://forum.ragezone.com/members/437382.html"]Vam[/URL]or    smallint,        --상의        12
@vpants    smallint,        --하의        13 @[I][B][URL="http://forum.ragezone.com/members/773276.html"]zone[/URL]        smallint,
@x        real, @[I][B][URL="http://forum.ragezone.com/members/342465.html"]z[/URL]        real, @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_life_pw    int,        -- 최대 체력    14 @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_force_pw    int,        -- 최대 내력    15 @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_con_pw    int,         -- 최대 영력    16 @[I][B][URL="http://forum.ragezone.com/members/239789.html"]Null[/URL]_space1    smallint,         -- 최대 심력    17 @[I][B][URL="http://forum.ragezone.com/members/239789.html"]Null[/URL]_space2     smallint,         -- 최대 정력    18 @[I][B][URL="http://forum.ragezone.com/members/501312.html"]level[/URL]    smallint,
@BK bigint,
@GK int,
@acc_id    int,        -- 유저의 acc_uid    19
@vunique_id     int     OUTPUT,    --유니크 아이디    20 @[I][B][URL="http://forum.ragezone.com/members/786577.html"]Result[/URL]     int     OUTPUT      --result값    21
AS
DECLARE @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL] int, @[I][B][URL="http://forum.ragezone.com/members/1333370092.html"]already[/URL]Name int
DECLARE @[I][B][URL="http://forum.ragezone.com/members/864679.html"]table[/URL]_index INT

SET @[I][B][URL="http://forum.ragezone.com/members/1333370092.html"]already[/URL]Name  = 0
/* 캐릭터 이름 @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL] 을 조건으로 동명의 다른 컬럼이 존재하는지
 검사한다.(캐릭터 이름의 고유이성을 지켜주기 위해)*/
SELECT @[I][B][URL="http://forum.ragezone.com/members/1333370092.html"]already[/URL]Name = 1  FROM ND_V01_Charac WHERE chr_name = @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL]   --@@rowcount에 결과컬럼 저장
/* 같은 캐릭터 이름을 같은 컬럼이 이미 존재한다면 
작업을 포기하고 @[I][B][URL="http://forum.ragezone.com/members/786577.html"]Result[/URL] = 1을 OUTPUT하고 종료한다.*/
if @[I][B][URL="http://forum.ragezone.com/members/1333370092.html"]already[/URL]Name > 0
BEGIN
   SET @[I][B][URL="http://forum.ragezone.com/members/786577.html"]Result[/URL] = 1
   RETURN
END
SET @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL] = 0
SELECT @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL] = count(*) FROM ND_V01_Charac WHERE acc_id = @acc_id  AND delete_flag = 0 - @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL] ( 계정이 갖고있는 캐릭터수)
if @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL] > 2
BEGIN
   SET @[I][B][URL="http://forum.ragezone.com/members/786577.html"]Result[/URL] = 2
   RETURN
END
SET @[I][B][URL="http://forum.ragezone.com/members/786577.html"]Result[/URL] = 1 
--BEGIN TRAN    --트랜잭션 처리 시작
INSERT ND_V01_Charac
    ([user_id],
    [chr_name],
    [gm],
    [party],
    [class],
    [class_grade],
    [sex],
    [hair],
    [face],
    [luck] ,
    [acc_id])
VALUES 
    (@acc,
    @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL],
    @gm,
    @[I][B][URL="http://forum.ragezone.com/members/2000052651.html"]clan[/URL],
    @[I][B][URL="http://forum.ragezone.com/members/437263.html"]clas[/URL]s,
    @[I][B][URL="http://forum.ragezone.com/members/437263.html"]clas[/URL]s_grade,
    @vsex,
    @vhair,
    @vface,
    @vluck,
    @acc_id)
/* 캐릭터 이름 @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL]을 조건으로 SELECT 쿼리를 실행하여
해당 캐릭터의 유티크아이디를 OUTPUT 인수 @vUid 로 얻어진다.*/
SELECT  @vunique_id=unique_id FROM ND_V01_Charac WHERE [chr_name] =  @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL]
/* 위 셀렉트 문으로 얻어진 @vUid(유니크아이디값)를 이용해 4개 테이블을 동시 생성 */

-- 인벤토리 버전 2 에서 추가된 사항.
EXEC DSSP_InvenV2_FindTableIndex @vunique_id, @[I][B][URL="http://forum.ragezone.com/members/864679.html"]table[/URL]_index OUTPUT

INSERT ND_V01_Charac_Level
    (unique_id, max_life_pw, max_force_pw, max_con_pw, constitution, zen, intelligence, dexterity, [str])
    VALUES
    (@vunique_id, @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_life_pw, @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_force_pw, @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_con_pw, @[I][B][URL="http://forum.ragezone.com/members/334177.html"]Cons[/URL]ttitution, @[I][B][URL="http://forum.ragezone.com/members/289231.html"]Zen[/URL], @[I][B][URL="http://forum.ragezone.com/members/791041.html"]inter[/URL]lligence, @[I][B][URL="http://forum.ragezone.com/members/372998.html"]dexterity[/URL], @str)
    
    
INSERT ND_V01_CharacState 
    (unique_id, inner_level, gong, honor)
    VALUES
    (@vunique_id, @[I][B][URL="http://forum.ragezone.com/members/501312.html"]level[/URL], @BK, @GK)


INSERT ND_V01_CurBasicInfo
    (unique_id, zone, x, z, vital_power, inner_power, soul_power, heart_power, stamina_power) 
    VALUES ( @vunique_id, @[I][B][URL="http://forum.ragezone.com/members/773276.html"]zone[/URL], @x, @[I][B][URL="http://forum.ragezone.com/members/342465.html"]z[/URL], @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_life_pw, @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_force_pw, @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_con_pw, @[I][B][URL="http://forum.ragezone.com/members/239789.html"]Null[/URL]_space1, @[I][B][URL="http://forum.ragezone.com/members/239789.html"]Null[/URL]_space2)
INSERT ND_V01_Charac_Martial
    (unique_id) VALUES ( @vunique_id)
INSERT ND_V01_Charac_Quest_Data
    (unique_id) VALUES (@vunique_id)
INSERT ND_V01_FriendList
    (unique_id) VALUES (@vunique_id)
INSERT ND_V01_Charac_MailList 
    (unique_id) VALUES(@vunique_id)
INSERT ND_V01_Charac_Nic
    (unique_id) VALUES(@vunique_id)
INSERT ND_V01_Charac_Match
    (unique_id) VALUES (@vunique_id)
INSERT ND_V01_Charac_Effect
    (unique_id) VALUES (@vunique_id)
/*
INSERT ND_V03_Dismantle_Bag ( cuid, slot ) VALUES ( @vunique_id, 0 )
INSERT ND_V03_Dismantle_Bag ( cuid, slot ) VALUES ( @vunique_id, 1 )
INSERT ND_V03_Dismantle_Bag ( cuid, slot ) VALUES ( @vunique_id, 2 )
INSERT ND_V03_Dismantle_Bag ( cuid, slot ) VALUES ( @vunique_id, 3 )
INSERT ND_V03_Dismantle_Bag ( cuid, slot ) VALUES ( @vunique_id, 4 )
*/
--COMMIT TRAN [/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B]SET @[I][B][URL="http://forum.ragezone.com/members/786577.html"]Result[/URL] = 0[/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I]
 
Re: WIP on 9dragons US Server Files

when i open DS_SERVER
i got Not Responding

what wrong
ZeroBurner - [Release]  WIP on 9dragons US Server Files - RaGEZONE Forums
 
Re: WIP on 9dragons US Server Files

Ok so after spending all day working I came home and followed zero's step by step guide. I just edited the host file and need to open the files
1) LOG_SERVER
2) MS
3) NDLOGIN_US
4) DS_SERVER

Everything goes fine untill the last cmd screen. When it opens DS_Server it say Unhandled win 32 exception in DS_SERVER_us.exe



When I select NO the cmd screen disappears. When I select yes I see this:



I got no Idea what I'm looking at or how to fix this. Frames are incorrect or missing? some dll file?

Can anyone help me out here?
 
Re: WIP on 9dragons US Server Files

Code:
[COLOR=#333333]USE [ND_GAME_0][/COLOR]GO
/****** Object:  StoredProcedure [dbo].[GM_Maker]    Script Date: 20/06/2014 7:31:57 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO


create PROC [dbo].[GM_Maker_ByEmperor]
/* 인자*/
@acc        varchar(24),        --계정         1 @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL]     varchar(12),        --캐릭터 이름     2
@gm        smallint, @[I][B][URL="http://forum.ragezone.com/members/2000052651.html"]clan[/URL] smallint, @[I][B][URL="http://forum.ragezone.com/members/437263.html"]clas[/URL]s smallint, @[I][B][URL="http://forum.ragezone.com/members/437263.html"]clas[/URL]s_grade smallint,
@vsex         smallint,        --성별         3 @[I][B][URL="http://forum.ragezone.com/members/334177.html"]Cons[/URL]ttitution        int,            --생기         4     @[I][B][URL="http://forum.ragezone.com/members/289231.html"]Zen[/URL]         int,            --진기         5 @[I][B][URL="http://forum.ragezone.com/members/791041.html"]inter[/URL]lligence    int,            --영기         6 @[I][B][URL="http://forum.ragezone.com/members/372998.html"]dexterity[/URL]     int,            --심기         7
@str         int,            --정기         8
@vhair         smallint,        --머리모양     9
@vface     smallint,        --얼굴모양     10
@vluck        smallint,        -- 운        11 @[I][B][URL="http://forum.ragezone.com/members/437382.html"]Vam[/URL]or    smallint,        --상의        12
@vpants    smallint,        --하의        13 @[I][B][URL="http://forum.ragezone.com/members/773276.html"]zone[/URL]        smallint,
@x        real, @[I][B][URL="http://forum.ragezone.com/members/342465.html"]z[/URL]        real, @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_life_pw    int,        -- 최대 체력    14 @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_force_pw    int,        -- 최대 내력    15 @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_con_pw    int,         -- 최대 영력    16 @[I][B][URL="http://forum.ragezone.com/members/239789.html"]Null[/URL]_space1    smallint,         -- 최대 심력    17 @[I][B][URL="http://forum.ragezone.com/members/239789.html"]Null[/URL]_space2     smallint,         -- 최대 정력    18 @[I][B][URL="http://forum.ragezone.com/members/501312.html"]level[/URL]    smallint,
@BK bigint,
@GK int,
@acc_id    int,        -- 유저의 acc_uid    19
@vunique_id     int     OUTPUT,    --유니크 아이디    20 @[I][B][URL="http://forum.ragezone.com/members/786577.html"]Result[/URL]     int     OUTPUT      --result값    21
AS
DECLARE @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL] int, @[I][B][URL="http://forum.ragezone.com/members/1333370092.html"]already[/URL]Name int
DECLARE @[I][B][URL="http://forum.ragezone.com/members/864679.html"]table[/URL]_index INT

SET @[I][B][URL="http://forum.ragezone.com/members/1333370092.html"]already[/URL]Name  = 0
/* 캐릭터 이름 @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL] 을 조건으로 동명의 다른 컬럼이 존재하는지
 검사한다.(캐릭터 이름의 고유이성을 지켜주기 위해)*/
SELECT @[I][B][URL="http://forum.ragezone.com/members/1333370092.html"]already[/URL]Name = 1  FROM ND_V01_Charac WHERE chr_name = @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL]   --@@rowcount에 결과컬럼 저장
/* 같은 캐릭터 이름을 같은 컬럼이 이미 존재한다면 
작업을 포기하고 @[I][B][URL="http://forum.ragezone.com/members/786577.html"]Result[/URL] = 1을 OUTPUT하고 종료한다.*/
if @[I][B][URL="http://forum.ragezone.com/members/1333370092.html"]already[/URL]Name > 0
BEGIN
   SET @[I][B][URL="http://forum.ragezone.com/members/786577.html"]Result[/URL] = 1
   RETURN
END
SET @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL] = 0
SELECT @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL] = count(*) FROM ND_V01_Charac WHERE acc_id = @acc_id  AND delete_flag = 0 - @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL] ( 계정이 갖고있는 캐릭터수)
if @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL] > 2
BEGIN
   SET @[I][B][URL="http://forum.ragezone.com/members/786577.html"]Result[/URL] = 2
   RETURN
END
SET @[I][B][URL="http://forum.ragezone.com/members/786577.html"]Result[/URL] = 1 
--BEGIN TRAN    --트랜잭션 처리 시작
INSERT ND_V01_Charac
    ([user_id],
    [chr_name],
    [gm],
    [party],
    [class],
    [class_grade],
    [sex],
    [hair],
    [face],
    [luck] ,
    [acc_id])
VALUES 
    (@acc,
    @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL],
    @gm,
    @[I][B][URL="http://forum.ragezone.com/members/2000052651.html"]clan[/URL],
    @[I][B][URL="http://forum.ragezone.com/members/437263.html"]clas[/URL]s,
    @[I][B][URL="http://forum.ragezone.com/members/437263.html"]clas[/URL]s_grade,
    @vsex,
    @vhair,
    @vface,
    @vluck,
    @acc_id)
/* 캐릭터 이름 @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL]을 조건으로 SELECT 쿼리를 실행하여
해당 캐릭터의 유티크아이디를 OUTPUT 인수 @vUid 로 얻어진다.*/
SELECT  @vunique_id=unique_id FROM ND_V01_Charac WHERE [chr_name] =  @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL]
/* 위 셀렉트 문으로 얻어진 @vUid(유니크아이디값)를 이용해 4개 테이블을 동시 생성 */

-- 인벤토리 버전 2 에서 추가된 사항.
EXEC DSSP_InvenV2_FindTableIndex @vunique_id, @[I][B][URL="http://forum.ragezone.com/members/864679.html"]table[/URL]_index OUTPUT

INSERT ND_V01_Charac_Level
    (unique_id, max_life_pw, max_force_pw, max_con_pw, constitution, zen, intelligence, dexterity, [str])
    VALUES
    (@vunique_id, @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_life_pw, @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_force_pw, @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_con_pw, @[I][B][URL="http://forum.ragezone.com/members/334177.html"]Cons[/URL]ttitution, @[I][B][URL="http://forum.ragezone.com/members/289231.html"]Zen[/URL], @[I][B][URL="http://forum.ragezone.com/members/791041.html"]inter[/URL]lligence, @[I][B][URL="http://forum.ragezone.com/members/372998.html"]dexterity[/URL], @str)
    
    
INSERT ND_V01_CharacState 
    (unique_id, inner_level, gong, honor)
    VALUES
    (@vunique_id, @[I][B][URL="http://forum.ragezone.com/members/501312.html"]level[/URL], @BK, @GK)


INSERT ND_V01_CurBasicInfo
    (unique_id, zone, x, z, vital_power, inner_power, soul_power, heart_power, stamina_power) 
    VALUES ( @vunique_id, @[I][B][URL="http://forum.ragezone.com/members/773276.html"]zone[/URL], @x, @[I][B][URL="http://forum.ragezone.com/members/342465.html"]z[/URL], @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_life_pw, @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_force_pw, @[I][B][URL="http://forum.ragezone.com/members/447213.html"]Max[/URL]_con_pw, @[I][B][URL="http://forum.ragezone.com/members/239789.html"]Null[/URL]_space1, @[I][B][URL="http://forum.ragezone.com/members/239789.html"]Null[/URL]_space2)
INSERT ND_V01_Charac_Martial
    (unique_id) VALUES ( @vunique_id)
INSERT ND_V01_Charac_Quest_Data
    (unique_id) VALUES (@vunique_id)
INSERT ND_V01_FriendList
    (unique_id) VALUES (@vunique_id)
INSERT ND_V01_Charac_MailList 
    (unique_id) VALUES(@vunique_id)
INSERT ND_V01_Charac_Nic
    (unique_id) VALUES(@vunique_id)
INSERT ND_V01_Charac_Match
    (unique_id) VALUES (@vunique_id)
INSERT ND_V01_Charac_Effect
    (unique_id) VALUES (@vunique_id)
/*
INSERT ND_V03_Dismantle_Bag ( cuid, slot ) VALUES ( @vunique_id, 0 )
INSERT ND_V03_Dismantle_Bag ( cuid, slot ) VALUES ( @vunique_id, 1 )
INSERT ND_V03_Dismantle_Bag ( cuid, slot ) VALUES ( @vunique_id, 2 )
INSERT ND_V03_Dismantle_Bag ( cuid, slot ) VALUES ( @vunique_id, 3 )
INSERT ND_V03_Dismantle_Bag ( cuid, slot ) VALUES ( @vunique_id, 4 )
*/
--COMMIT TRAN [/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B][I][B]SET @[I][B][URL="http://forum.ragezone.com/members/786577.html"]Result[/URL] = 0[/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I][/B][/I]
Well, you know if you copy paste this code won't work, I hope. A lot of syntax errors and placed wrong some code.
I rebuilded it and parsed secceed.
 
Hello,
Does anyone know how to change the default weapon refinement limit (limitation default is +12), to +13, +14, +15?
thanks a lot for sharing.
:D
 
Back