|
You last visited: Today at 19:35
Advertisement
urgent case i need to remove vip skills from all players
Discussion on urgent case i need to remove vip skills from all players within the SRO Private Server forum part of the Silkroad Online category.
02/03/2020, 16:09
|
#1
|
elite*gold: 0
Join Date: Oct 2010
Posts: 151
Received Thanks: 11
|
urgent case i need to remove vip skills from all players
urgent case please i need to remove vip skills from all players
|
|
|
02/03/2020, 16:20
|
#2
|
elite*gold: 0
Join Date: Dec 2009
Posts: 386
Received Thanks: 88
|
_CharSkillMastary
|
|
|
02/03/2020, 16:28
|
#3
|
elite*gold: 0
Join Date: May 2018
Posts: 244
Received Thanks: 119
|
Wrong Section .
|
|
|
02/03/2020, 20:31
|
#4
|
elite*gold: 0
Join Date: Jul 2014
Posts: 187
Received Thanks: 70
|
It's a wrong section but you need to get the skill ids from _RefSkill table of all your VIP skills and simply do a
delete from _CharSkill WHERE SkillID IN (1,2,3,4...all ids)
|
|
|
02/03/2020, 21:12
|
#5
|
elite*gold: 0
Join Date: May 2018
Posts: 244
Received Thanks: 119
|
Quote:
Originally Posted by JohnDornel^
It's a wrong section but you need to get the skill ids from _RefSkill table of all your VIP skills and simply do a
delete from _CharSkill WHERE SkillID IN (1,2,3,4...all ids)
|
SO WE CAN DO IT BY THIS QUERY
DELETE FROM _CHARSKILL WHERE SKILLID IN (SELECT SKILLID FROM _REFSKILL WHERE BASIC_CODE LIKE '%VIP_SKILL%') -- 80% FROM SKILL -----CODE THAT SAME AT ALL SKILLS
|
|
|
02/03/2020, 22:50
|
#6
|
elite*gold: 0
Join Date: Oct 2010
Posts: 151
Received Thanks: 11
|
Quote:
Originally Posted by Hercules*
SO WE CAN DO IT BY THIS QUERY
DELETE FROM _CHARSKILL WHERE SKILLID IN (SELECT SKILLID FROM _REFSKILL WHERE BASIC_CODE LIKE '%VIP_SKILL%') -- 80% FROM SKILL -----CODE THAT SAME AT ALL SKILLS
|
im so sorry i dont know what is right section thx to you all i when i try i get
(0 row(s) affected)
|
|
|
02/03/2020, 23:10
|
#7
|
elite*gold: 23
Join Date: Feb 2011
Posts: 641
Received Thanks: 477
|
Quote:
Originally Posted by ali2008x
im so sorry i dont know what is right section thx to you all i when i try i get
(0 row(s) affected)
|
look for the name assigned to the skill in the group and look it up with query
|
|
|
02/04/2020, 13:50
|
#8
|
elite*gold: 0
Join Date: Oct 2018
Posts: 446
Received Thanks: 593
|
Use the query Rest Skill from all players
Quote:
USE [SRO_VT_SHARD]
GO
--Made by ModGift
-- edit by InPanic Kev --
update _ClientConfig
set Data = '0'
-- edit by InPanic Kev --
DELETE FROM [dbo].[_CharSkill]
WHERE SKillID NOT LIKE '1' and SKillID NOT LIKE '2' and SKillID NOT LIKE '40'
and SKillID NOT LIKE '70' and SKillID NOT LIKE '8421' and SKillID NOT LIKE '8419'
and SKillID NOT LIKE '8420' and SKillID NOT LIKE '9354' and SKillID NOT LIKE '9355'
and SKillID NOT LIKE '9944' and SKillID NOT LIKE '10625' and SKillID NOT LIKE '11162'
and SKillID NOT LIKE '11526'
GO
UPDATE [dbo].[_CharSkillMastery]
SET
[Level] = '0'
|
if You Need Rest Skill from by CharName Use the query
for CH
Quote:
USE SRO_VT_SHARD
DECLARE @CharName varchar (64)
DECLARE @CharID int
DECLARE @GiveSP int
SET @CharName = 'CharName' --Your Char Name
SET @GiveSP = '10000000' --Write the amount of Skill Point
SET @CharID = (SELECT CharID FROM _Char WHERE CharName16 = @CharName) --Do not change
-- edit by InPanic Kev --
update _ClientConfig
set Data = '0'
where CharID = @CharID
-- edit by InPanic Kev --
--- Do Not Change Here ---
--- made by ModGift for RZ ---
DELETE [dbo].[_CharSkill]
WHERE [CharID] = @CharID and [SkillID] > '2' and SkillID<'40'
DELETE [dbo].[_CharSkill]
WHERE [CharID] = @CharID and [SkillID] > '40' and SkillID<'70'
DELETE [dbo].[_CharSkill]
WHERE [CharID] = @CharID and [SkillID] > '70'
UPDATE [dbo].[_CharSkillMastery]
SET
[Level] = '0'
WHERE CharID= @CharID
UPDATE [dbo].[_Char]
SET RemainSkillPoint= @GiveSP
WHERE CharName16 = @CharName
GO
|
___
for Eur
Quote:
USE SRO_VT_SHARD
DECLARE @CharName varchar (64)
DECLARE @CharID int
DECLARE @GiveSP int
SET @CharName = 'CharName' --Your Char Name
SET @GiveSP = '10000000' --Write the amount of Skill Point
SET @CharID = (SELECT CharID FROM _Char WHERE CharName16 = @CharName) --Do not change
-- edit by InPanic Kev --
update _ClientConfig
set Data = '0'
where CharID = @CharID
-- edit by InPanic Kev --
--- Do Not Change Here ---
--- made by ModGift ---
DELETE [dbo].[_CharSkill]
WHERE [CharID] = @CharID and [SkillID] > '2'
INSERT INTO [dbo].[_CharSkill]
([CharID]
,[SkillID]
,[Enable])
VALUES
(@CharID
,'8421'
,'1')
INSERT INTO [dbo].[_CharSkill]
([CharID]
,[SkillID]
,[Enable])
VALUES
(@CharID
,'8419'
,'1')
INSERT INTO [dbo].[_CharSkill]
([CharID]
,[SkillID]
,[Enable])
VALUES
(@CharID,
'8420'
,'1')
INSERT INTO [dbo].[_CharSkill]
([CharID]
,[SkillID]
,[Enable])
VALUES
(@CharID,
'9354'
,'1')
INSERT INTO [dbo].[_CharSkill]
([CharID]
,[SkillID]
,[Enable])
VALUES
(@CharID,
'9355'
,'1')
INSERT INTO [dbo].[_CharSkill]
([CharID]
,[SkillID]
,[Enable])
VALUES
(@CharID,
'9944'
,'1')
INSERT INTO [dbo].[_CharSkill]
([CharID]
,[SkillID]
,[Enable])
VALUES
(@CharID,
'10625'
,'1')
INSERT INTO [dbo].[_CharSkill]
([CharID]
,[SkillID]
,[Enable])
VALUES
(@CharID,
'11162'
,'1')
INSERT INTO [dbo].[_CharSkill]
([CharID]
,[SkillID]
,[Enable])
VALUES
(@CharID,
'11526'
,'1')
UPDATE [dbo].[_CharSkillMastery]
SET
[Level] = '0'
WHERE CharID= @CharID
UPDATE [dbo].[_Char]
SET RemainSkillPoint= @GiveSP
WHERE CharName16 = @CharName
GO
|
|
|
|
02/04/2020, 15:56
|
#9
|
elite*gold: 0
Join Date: May 2018
Posts: 244
Received Thanks: 119
|
Quote:
Originally Posted by NESTA3!!
Use the query Rest Skill from all players
if You Need Rest Skill from by CharName Use the query
for CH
___
for Eur
|
First you need those steps
1st- try to read the thread
2nd- think
3rd- comment
He need to remove Specific MASTERY SKILLS
NOT RESET ALL MASTERY SKILLS FOR ALL PLAYERS
|
|
|
 |
Similar Threads
|
[Buying] [Urgent]Archimone Heroic Kill [Urgent]
07/14/2016 - World of Warcraft Trading - 0 Replies
Hi, I would like to buy Archimonde kill on Heroic mode. I can pay in gold or paypal up to you. Need only Kill for a moose mount.
Hit me here please or PM me at Eist#2201
|
[Request Help] Remove mobs / remove eur items / remove npc
02/15/2013 - SRO Private Server - 0 Replies
Iam sure all now saies this guy is mad :D why not remove the db
i want to know how i can remove mobs from samrkand and add alex mobs there and remove eur item from npc and drobs
and remove some npcs
ty guys
_________________________
I see that there is too much help here
it's my topic no.2
without any answer
|
URGENT-URGENT -LEAD PLS
08/31/2011 - Metin2 Private Server - 0 Replies
Guys I bought a dedicate yesterday but i don't know how to put my metin2 server inside of it! I pay if someone help me!!!
skype: synxsoft
msn: [email protected]
|
URGENT! ALL SPEEDHACKERS URGENT!
04/25/2007 - Eudemons Online - 9 Replies
Hi everyone.
I am an avid player of Eudemons Online and the first time i discovered AndyX's speedhack i was so happy beyond describing. About 2 weeks ago, i got caught but i got off without paying. Then 1 week ago, i was caught for the second time and i tried pretending innocent so i didnt have to pay the fee of 2760 eps to get out but this time the gm told me i was speedhacking and the location+time. all the speedhackers are slowly starting to be botjailed and this is a warning to every1....
|
All times are GMT +1. The time now is 19:37.
|
|