|
You last visited: Today at 16:42
Advertisement
[Request] easy way to add lines to skilldata_35000enc
Discussion on [Request] easy way to add lines to skilldata_35000enc within the SRO Private Server forum part of the Silkroad Online category.
01/22/2015, 02:22
|
#1
|
elite*gold: 15
Join Date: Jul 2014
Posts: 146
Received Thanks: 6
|
[Request] easy way to add lines to skilldata_35000enc
as title said i want easy way to add lines to skilldata_35000enc
because i try every guide on epvpers, and still get crashed after launching the client + i can't add any new stuff to my server w/o knowing how to add lines to
skilldata_35000enc
and i want to limit guild members for 20 or 25 players and union to only 2 guilds
it that's possiple ?
|
|
|
01/22/2015, 09:12
|
#2
|
elite*gold: 41
Join Date: Oct 2012
Posts: 2,216
Received Thanks: 1,196
|
about skilldata_xxenc
use this program.
Guild/union limit
|
|
|
01/22/2015, 09:47
|
#3
|
elite*gold: 15
Join Date: Jul 2014
Posts: 146
Received Thanks: 6
|
Quote:
Originally Posted by Crue*
about skilldata_xxenc
use this program.
Guild/union limit
|
i tryed it before, if it worked for me i wouldn't post a thread here :/
|
|
|
01/22/2015, 10:09
|
#4
|
elite*gold: 56
Join Date: Oct 2013
Posts: 1,165
Received Thanks: 774
|
double click the error msg and fix the problem
|
|
|
01/22/2015, 10:12
|
#5
|
elite*gold: 15
Join Date: Jul 2014
Posts: 1,614
Received Thanks: 1,375
|
Quote:
Originally Posted by MissinGDeaTh
i tryed it before, if it worked for me i wouldn't post a thread here :/
|
lazy people can't fix anything.
USE [SRO_VT_SHARD]
GO
/****** Object: StoredProcedure [dbo].[_Guild_FnAddMember] Script Date: 01/22/2015 10:12:09 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO
ALTER PROCEDURE [dbo].[_Guild_FnAddMember]
@guildID int,
@MemberID int,
@MemberClass tinyint,
@joinDate smalldatetime,
@permission int
as
Declare @LiMiT int = '31' -- << Userr Limit Credits by $Apollo
if (exists (select CharID from _GuildMember where CharID = @MemberID))
begin
return -1001
end
declare @MemberName varchar(64)
declare @curLevel tinyint
select @MemberName = CharName16, @curLevel = CurLevel from _Char with (nolock) where CharID = @MemberID
if (@@error <> 0 or @@rowcount = 0)
begin
return -1
end
if (exists (select CharID from _GuildMember with (nolock) where GuildID = @guildID and CharID = @MemberID))
begin
return -2
end
declare @ReFObjID int
select @ReFObjID = RefObjID from _Char with (nolock) where CharID = @MemberID
if (@@error <> 0 or @@rowcount = 0)
begin
return -5
end
|
|
|
01/22/2015, 19:10
|
#6
|
elite*gold: 15
Join Date: Jul 2014
Posts: 146
Received Thanks: 6
|
Quote:
Originally Posted by Crue*
about skilldata_xxenc
use this program.
Guild/union limit
|
can you tell me if this lines are wrong ?! cuz am getting client crashed -_-
Quote:
1 귀환서 사용전 SKILL_MALL_STATS_POINT_RECALL_A_KARA 0 FALSE 0 DEFAULT none none none none none none none none 0 0,0,0,0 ONE none none none none none none none 0 1
귀환서 사용전 SKILL_MALL_STATS_POINT_RECALL_A_KARA ACT_S 0 FALSE none none 0 0 0 0 1 0,0 AT_LOOP MOV_NONE,0,0,0 0,0,0 false,0,0,0,0,false system\ item_returnscroll.efp none 0,0,0 none 0,0,0 none 0 none none none
|
|
|
|
01/22/2015, 19:44
|
#7
|
elite*gold: 15
Join Date: Jul 2014
Posts: 1,614
Received Thanks: 1,375
|
Quote:
Originally Posted by MissinGDeaTh
can you tell me if this lines are wrong ?! cuz am getting client crashed -_-
|
Those are skilleffect lines...
|
|
|
01/22/2015, 19:54
|
#8
|
elite*gold: 15
Join Date: Jul 2014
Posts: 146
Received Thanks: 6
|
Quote:
Originally Posted by TheWickedNite
Those are skilleffect lines...
|
ye i know, but it crashes my client at loading ..
|
|
|
01/22/2015, 20:05
|
#9
|
elite*gold: 15
Join Date: Jul 2014
Posts: 1,614
Received Thanks: 1,375
|
Quote:
Originally Posted by MissinGDeaTh
ye i know, but it crashes my client at loading ..
|
They're not supposed to be added in skilldataenc.
|
|
|
01/22/2015, 20:16
|
#10
|
elite*gold: 15
Join Date: Jul 2014
Posts: 146
Received Thanks: 6
|
Quote:
Originally Posted by TheWickedNite
They're not supposed to be added in skilldataenc.
|
I thought the error was in skilldataenc, but it was not, so am now asking for these lines in skilleffect, because it crashes the CLIENT. and i didn't want to start a new topic for that :/
|
|
|
01/24/2015, 20:31
|
#11
|
elite*gold: 0
Join Date: Mar 2010
Posts: 177
Received Thanks: 11
|
Quote:
Originally Posted by TheWickedNite
lazy people can't fix anything.
USE [SRO_VT_SHARD]
GO
/****** Object: StoredProcedure [dbo].[_Guild_FnAddMember] Script Date: 01/22/2015 10:12:09 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO
ALTER PROCEDURE [dbo].[_Guild_FnAddMember]
@guildID int,
@MemberID int,
@MemberClass tinyint,
@joinDate smalldatetime,
@permission int
as
Declare @LiMiT int = '31' -- << Userr Limit Credits by $Apollo
if (exists (select CharID from _GuildMember where CharID = @MemberID))
begin
return -1001
end
declare @MemberName varchar(64)
declare @curLevel tinyint
select @MemberName = CharName16, @curLevel = CurLevel from _Char with (nolock) where CharID = @MemberID
if (@@error <> 0 or @@rowcount = 0)
begin
return -1
end
if (exists (select CharID from _GuildMember with (nolock) where GuildID = @guildID and CharID = @MemberID))
begin
return -2
end
declare @ReFObjID int
select @ReFObjID = RefObjID from _Char with (nolock) where CharID = @MemberID
if (@@error <> 0 or @@rowcount = 0)
begin
return -5
end
|
this query canceled the whole guild function in the server, i can't CREATE guild or join another player to my guild.
|
|
|
01/24/2015, 20:53
|
#12
|
elite*gold: 15
Join Date: Jul 2014
Posts: 1,614
Received Thanks: 1,375
|
Quote:
Originally Posted by Little Messi
this query canceled the whole guild function in the server, i can't CREATE guild or join another player to my guild.
|
Then you suck, you're supposed to use this in guild_fn_member ****
|
|
|
 |
Similar Threads
|
an easy request
12/30/2012 - Metin2 - 2 Replies
Hi all plz any1 who bought m2bob can u upload to us the 2.0.1 version or the last and ty :handsdown:
|
easy request
12/15/2012 - CO2 Private Server - 1 Replies
i need to add chi master in my server i find the topic exclusive chi master 60 percent but i dont know where can i add those codes i dont know so plz Help Me Fast to add it
What's going on ??????? some body help me
what's going on some body Help me ??? now
What's going on Help me fast i wanna it
|
Add lines easy way
10/22/2012 - SRO Private Server - 1 Replies
Hello community of Elitepvpers ..
So I've a problem with my database I want to add this :
http://www.elitepvpers.com/forum/private-sro-expl oits-hacks-bots-guides/1907572-release-lines-arabi a-mobs-uniqs.html
Sur I changed the id of monster but I need to add row per row ? It's inhumain there is not any other way ? Add lines by lines should be for easy or all directly ? Can you help me ?
I just want to make a copy past but how ?
|
Request| Lines
06/01/2012 - SRO Private Server - 5 Replies
i almost finish with jsro server files they state on 98% working
i just need to extract from characterdata.txt of jsro
the part of refobjchar.
if someone know a good way to do it , i be glad to hear.
|
All times are GMT +1. The time now is 16:42.
|
|