Register for your free account! | Forgot your password?

You last visited: Today at 04:11

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Gngwc Room

Discussion on Gngwc Room within the SRO Private Server forum part of the Silkroad Online category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2009
Posts: 671
Received Thanks: 288
Gngwc Room

Hello guys I want add my gngwc room to my server

Here's the picture

I get coord. from pic so I created warp using


And I put this things to char tb.
/warp Region /x/y/z

When I select char.I get error server is not running
Here's the refbinassoc table
PHP Code:
CHINA    0
TQ    0
West_China    1
Oasis_Kingdom    0
Thief Village    1
Roc    0
Eu    0
Am    0
Ca    0
SD    0
KingsValley    0
Pharaoh    0
DELTA    0
TEMPLE    0
FORT_JA_AREA    0
FORT_DW_AREA    0
FORT_HT_AREA    0
FORT_CT_AREA    0
FORT_SK_AREA    0
FORT_BJ_AREA    0
FORT_HM_AREA    0
FORT_ER_AREA    0
ARENA_OCCUPY    1
ARENA_FLAG    1
ARENA_SCORE    1
SIEGE_DUNGEON    1
ARENA_GNGWC    1
GOD_TOGUI    0
GOD_WRECK_IN    0
GOD_FLAME    0
GOD_WRECK_OUT    0
EVENT_GHOST    0
JUPITER    0
PRISON    0
GM_EVENT    1
NULL    NULL 
So what's wrong?
LegendM is offline  
Old 05/10/2012, 23:30   #2
 
Neko*'s Avatar
 
elite*gold: 0
Join Date: Apr 2012
Posts: 338
Received Thanks: 180
Check the RefReigon table , and make sure all exist there , cuz i think it is not ready since vsro is a Test files and if it success and you were teleported to a empty place , then update your Map.pk2.
you can get the GNGWC files from it's client , or Creddy Map.pk2 , and i think it is also exist in server files data folder

GL
Neko* is offline  
Thanks
1 User
Old 05/10/2012, 23:32   #3
 
elite*gold: 0
Join Date: Feb 2010
Posts: 2,278
Received Thanks: 443
ofc RefReigon table dont have the lines for Gngwc lol
you can get this lines from isro client Gngwc(from Reigon.text) GL in getting them xD
i want to have them too
but i cant find working link for Gngwc isro client
rushcrush is offline  
Old 05/10/2012, 23:33   #4
 
elite*gold: 0
Join Date: Aug 2009
Posts: 671
Received Thanks: 288
Quote:
Originally Posted by Neko* View Post
Check the RefReigon table , and make sure all exist there , cuz i think it is not ready since vsro is a Test files and if it success and you were teleported to a empty place , then update your Map.pk2.
you can get the GNGWC files from it's client , or Creddy Map.pk2 , and i think it is also exist in server files data folder

GL
I already checked refregion.There's no service or something like that.And I think it's already have visual files in test client

Quote:
Originally Posted by rushcrush View Post
ofc RefReigon table dont have the lines for Gngwc lol
you can get this lines from isro client Gngwc(from Reigon.text) GL in getting them xD
i want to have them too
but i cant find working link for Gngwc isro client
Lets try credy online client then
LegendM is offline  
Old 05/10/2012, 23:34   #5
 
Neko*'s Avatar
 
elite*gold: 0
Join Date: Apr 2012
Posts: 338
Received Thanks: 180
I think creddy have this lines , isn't the screen shot from creddy ?
they activated it , i think lines should match ^^
Neko* is offline  
Old 05/10/2012, 23:39   #6
 
elite*gold: 0
Join Date: Aug 2009
Posts: 671
Received Thanks: 288
Yea,I think so anyway I'll try tomorrow
LegendM is offline  
Old 05/10/2012, 23:40   #7
 
elite*gold: 0
Join Date: Feb 2010
Posts: 2,278
Received Thanks: 443
Quote:
Originally Posted by LegendM View Post
I already checked refregion.There's no service or something like that.And I think it's already have visual files in test client



Lets try credy online client then
no server have it
in this pic not GNGWC lol
it's arena
rushcrush is offline  
Old 05/10/2012, 23:40   #8
 
✗EpicSoul✗'s Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 1,189
Received Thanks: 531
you know there is a stored procedure which adds the regions from the regioninfo.txt from the server files.

here it is :

Code:
USE [SRO_VT_SHARD]
GO
<-- for epvpers from epicsoul :)--->
/****** Object:  StoredProcedure [dbo].[_InsertRefRegion]    Script Date: 05/10/2012 22:45:19 ******/
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER    PROCEDURE [dbo].[_InsertRefRegion]
@RegionID		as smallint,
@X_NotUsed		as int,
@Z_NotUsed		as int,
@Continent		as varchar(128),
@AreaName		as varchar(128),
@IsBattleField		as tinyint,
@ClimateID		as int,
@Capacity		as int
as
begin transaction
begin
	declare @_x	tinyint
	declare @_z	tinyint
	if (@RegionID > 0)
	begin
		set @_x = @RegionID % 256
		set @_z = @RegionID / 256
	end
	else
	begin
		set @_x = 0
		set @_z = 0
	end
	if (exists(select wRegionID from _RefRegion where wRegionID = @RegionID))
	begin
		update _RefRegion 
		set 	X = @_x, Z = @_z, ContinentName = @Continent, AreaName = @AreaName, IsBattleField = @IsBattleField,
			Climate = @ClimateID, MaxCapacity = @Capacity, AssocObjID = 0,
		<-- insert the refregion path here-->
			AssocFile256 = '***'
		where wRegionID = @RegionID
	end
	else
	begin
		insert into _RefRegion(wRegionID, X, Z, ContinentName, AreaName, IsBattleField, Climate, MaxCapacity, AssocObjID, AssocServer, AssocFile256)
		values (@RegionID, @_x, @_z, @Continent, @AreaName, @IsBattleField, @ClimateID, @Capacity, 0, 0, '***')
	end
	
 	if (@@error <> 0)
	begin
		raiserror('리젼정보 추가 [혹은 갱신] 실패했다! [RID: %d]' ,  1, 16, @RegionID)
		rollback transaction
		return
	end
	commit transaction
end
✗EpicSoul✗ is offline  
Thanks
1 User
Old 05/10/2012, 23:44   #9
 
Neko*'s Avatar
 
elite*gold: 0
Join Date: Apr 2012
Posts: 338
Received Thanks: 180
Quote:
Originally Posted by rushcrush View Post
no server have it
in this pic not GNGWC lol
it's arena
no , GNGWC use same pattern , tiles , and texture of Battle arena.

btw creddy have it , you can check here , the pyramid design area ...

Quote:
Originally Posted by ✗EpicSoul✗ View Post
you know there is a stored procedure which adds the regions from the regioninfo.txt from the server files.

here it is :
is is just ....
Neko* is offline  
Old 05/10/2012, 23:48   #10
 
elite*gold: 0
Join Date: Aug 2009
Posts: 671
Received Thanks: 288
Quote:
Originally Posted by ✗EpicSoul✗ View Post
you know there is a stored procedure which adds the regions from the regioninfo.txt from the server files.

here it is :

Code:
USE [SRO_VT_SHARD]
GO
<-- for epvpers from epicsoul :)--->
/****** Object:  StoredProcedure [dbo].[_InsertRefRegion]    Script Date: 05/10/2012 22:45:19 ******/
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER    PROCEDURE [dbo].[_InsertRefRegion]
@RegionID		as smallint,
@X_NotUsed		as int,
@Z_NotUsed		as int,
@Continent		as varchar(128),
@AreaName		as varchar(128),
@IsBattleField		as tinyint,
@ClimateID		as int,
@Capacity		as int
as
begin transaction
begin
	declare @_x	tinyint
	declare @_z	tinyint
	if (@RegionID > 0)
	begin
		set @_x = @RegionID % 256
		set @_z = @RegionID / 256
	end
	else
	begin
		set @_x = 0
		set @_z = 0
	end
	if (exists(select wRegionID from _RefRegion where wRegionID = @RegionID))
	begin
		update _RefRegion 
		set 	X = @_x, Z = @_z, ContinentName = @Continent, AreaName = @AreaName, IsBattleField = @IsBattleField,
			Climate = @ClimateID, MaxCapacity = @Capacity, AssocObjID = 0,
		<-- insert the refregion path here-->
			AssocFile256 = 'xxx'
		where wRegionID = @RegionID
	end
	else
	begin
		insert into _RefRegion(wRegionID, X, Z, ContinentName, AreaName, IsBattleField, Climate, MaxCapacity, AssocObjID, AssocServer, AssocFile256)
		values (@RegionID, @_x, @_z, @Continent, @AreaName, @IsBattleField, @ClimateID, @Capacity, 0, 0, 'xxx')
	end
	
 	if (@@error <> 0)
	begin
		raiserror('리젼정보 추가 [혹은 갱신] 실패했다! [RID: %d]' ,  1, 16, @RegionID)
		rollback transaction
		return
	end
	commit transaction
end
thanks for share but i couldnt understand 1 thing.What you mean with regioninfo.txt in server files?client or what ?
LegendM is offline  
Old 05/10/2012, 23:49   #11
 
✗EpicSoul✗'s Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 1,189
Received Thanks: 531
check your servers data folder. you will see what i mean.
✗EpicSoul✗ is offline  
Thanks
1 User
Old 05/10/2012, 23:51   #12
 
Neko*'s Avatar
 
elite*gold: 0
Join Date: Apr 2012
Posts: 338
Received Thanks: 180
Quote:
Originally Posted by LegendM View Post
thanks for share but i couldnt understand 1 thing.What you mean with regioninfo.txt in server files?client or what ?
it will add the regions from server files .. to refregion table , and then you can make a client .txt copy.

just update your server files folder with GNGWC client , data , map PK2[s]
Neko* is offline  
Old 05/10/2012, 23:52   #13
 
elite*gold: 0
Join Date: Aug 2009
Posts: 671
Received Thanks: 288
Quote:
Originally Posted by ✗EpicSoul✗ View Post
check your servers data folder. you will see what i mean.
got it.
thank you guys both of you
LegendM is offline  
Old 05/11/2012, 00:05   #14
 
elite*gold: 0
Join Date: Feb 2010
Posts: 2,278
Received Thanks: 443
Quote:
Originally Posted by Neko* View Post
it will add the regions from server files .. to refregion table , and then you can make a client .txt copy.

just update your server files folder with GNGWC client , data , map PK2[s]
GNGWC client , data , map PK2[s] where?
rushcrush is offline  
Old 05/11/2012, 00:06   #15
 
Neko*'s Avatar
 
elite*gold: 0
Join Date: Apr 2012
Posts: 338
Received Thanks: 180
Quote:
Originally Posted by LegendM View Post
got it.
thank you guys both of you
Great , Keep going , and tell us if you succeeded to add it , please explain your steps ^^

Quote:
Originally Posted by rushcrush View Post
GNGWC client , data , map PK2[s] where?
well i don't have it , and also i am pretty sure it is so hard to get this client ..
i think Creddy client have all the data.pk2 files , and also all the map.pk2 of GNGWC arena , since they activated it , we can get it from it's client i think !
Neko* is offline  
Reply


Similar Threads Similar Threads
Elysion Silkroad 100 Cap Only Chinese With GNGWC !!
04/16/2012 - SRO PServer Advertising - 568 Replies
close this topic
[Suche Room DDoSer] [B] PromoCodes für jeden Room :D
02/07/2012 - WarRock Trading - 0 Replies
Moin Leute bitte schnell einen der einen dost. Teamspeak3.monsterserver.de:11450 PW : DNx Channel CQC
GNGWC 2011 IST HIER!!!
08/30/2011 - WarRock - 4 Replies
Was ist das nur so ne frage :D danke press thanks : )
[GM]Gargamel at GNGWC 2008
08/25/2008 - Silkroad Online - 32 Replies
Foto0150.jpg - ImageHost.org Foto0151.jpg - ImageHost.org Foto0152.jpg - ImageHost.org Foto0153.jpg - ImageHost.org IMGP0196.jpg - ImageHost.org Source: (Click)



All times are GMT +2. The time now is 04:11.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.