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
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
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
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
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
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
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 ?
Great , Keep going , and tell us if you succeeded to add it , please explain your steps ^^
Quote:
Originally Posted by rushcrush
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 !