|
You last visited: Today at 13:07
Advertisement
Remove premium scroll
Discussion on Remove premium scroll within the SRO Private Server forum part of the Silkroad Online category.
12/22/2014, 18:14
|
#1
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
Remove premium scroll
I made the scroll and worked. But som times worked and remove the prem with the Expert package service and some times no. Just remove the prem and leave this Expert hand ON.
Whats wrong ?
|
|
|
12/22/2014, 18:41
|
#2
|
elite*gold: 28
Join Date: Aug 2014
Posts: 4,096
Received Thanks: 2,653
|
Show the lines
|
|
|
12/22/2014, 21:00
|
#3
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
skilldata_enc
Code:
1 59704 1013 SKILL_MALL_PREMIUM_REMOVE ???? ???? SKILL_MALL_PREMIUM_REMOVE 0 1 1 0 0 0 0 0 1000 0 0 0 3599 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 255 255 0 0 0 0 0 255 255 255 255 item\etc\mall_dungeon_free_ticket_forgotten_world.ddj SN_SKILL_MALL_PKREMOVER *** SN_SKILL_MALL_PKREMOVER_TT_DESC *** 0 0 3 1667396966 1851946342 1685418593 3600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
itemdata_xxx
Code:
1 70006 ITEM_MALL_PREMIUM_REMOVE ???? ???? ??? (???) *** SN_ITEM_MALL_PREMIUM_REMOVE SN_ITEM_MALL_PREMIUM_REMOVE_TT_DESC 1 0 3 3 13 14 180000 3 0 1 1 1 255 0 1 0 0 129 0 0 0 0 0 0 0 -1 0 -1 0 -1 0 -1 0 -1 0 0 0 0 0 0 0 100 0 0 0 *** item\etc\drop_mall_scroll.bsr item\etc\event_ghost_bottle.ddj *** *** 1 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 ????(?) 1 [USU1:SKILL_MALL_PREMIUM_REMOVE] -1 *** -1 *** -1 *** -1 *** -1 *** -1 *** -1 *** -1 *** -1 *** -1 *** -1 *** -1 *** -1 *** -1 *** -1 *** -1 *** -1 *** -1 *** 0 0
It can be from the procedure ?
|
|
|
12/22/2014, 21:15
|
#4
|
elite*gold: 41
Join Date: Oct 2012
Posts: 2,216
Received Thanks: 1,196
|
sure it's from procedure lel
|
|
|
12/22/2014, 22:34
|
#5
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
Quote:
Originally Posted by Crue*
sure it's from procedure lel
|
Code:
if
(@JobID= '59704')
BEGIN
DECLARE @CharName16 Varchar (MAX)
Select @CharName16=CharName16 from _Char where CharID = @CharID
Begin
DELETE FROM _TimedJob WHERE Data2 between 1 AND 11000 AND CharID = @CharID
end
end
|
|
|
12/23/2014, 12:15
|
#6
|
elite*gold: 0
Join Date: May 2013
Posts: 1,447
Received Thanks: 1,046
|
Quote:
Originally Posted by hamzafigo
Code:
if
(@JobID= '59704')
BEGIN
DECLARE @CharName16 Varchar (MAX)
Select @CharName16=CharName16 from _Char where CharID = @CharID
Begin
DELETE FROM _TimedJob WHERE Data2 between 1 AND 11000 AND CharID = @CharID
end
end
|
The answer is right BETWEEN 1 AND 11 000
|
|
|
12/23/2014, 12:37
|
#7
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
So what is wrong with it ?
|
|
|
12/23/2014, 12:59
|
#8
|
elite*gold: 28
Join Date: Aug 2014
Posts: 4,096
Received Thanks: 2,653
|
Okay use this to select the Data2 of the expert thing.
PHP Code:
SELECT DATA2 FTOM _TimedJob WHERE CharID = 'whatever'
now you get the required number simply add it to the other query.
|
|
|
12/23/2014, 13:39
|
#9
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
Quote:
Originally Posted by xExorcist
Okay use this to select the Data2 of the expert thing.
PHP Code:
SELECT DATA2 FTOM _TimedJob WHERE CharID = 'whatever'
now you get the required number simply add it to the other query.
|
You mean it`ll be like that?
Code:
if
(@JobID= '59704')
BEGIN
DECLARE @CharName16 Varchar (MAX)
Select @CharName16=CharName16 from _Char where CharID = @CharID
Begin
DELETE FROM _TimedJob WHERE Data2 between 1 AND 11000 AND CharID = @CharID
SELECT DATA2 FROM _TimedJob WHERE CharID = 'whatever'
end
end
Event tried this and didn`t work.
Code:
if
(@JobID= '59704')
BEGIN
DECLARE @CharName16 Varchar (MAX)
Select @CharName16=CharName16 from _Char where CharID = @CharID
Begin
DELETE DATA2 FROM _TimedJob WHERE CharID = 'whatever'
end
end
|
|
|
12/23/2014, 14:00
|
#10
|
elite*gold: 28
Join Date: Aug 2014
Posts: 4,096
Received Thanks: 2,653
|
-_- no I didn't mean like that just
PHP Code:
DELETE FROM _TimedJob WHERE CharID = @CharID
-- this will work but it will remove everything, so you need to get the exact Data2.
|
|
|
12/23/2014, 14:55
|
#11
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
Quote:
Originally Posted by xExorcist
-_- no I didn't mean like that just
PHP Code:
DELETE FROM _TimedJob WHERE CharID = @CharID
-- this will work but it will remove everything, so you need to get the exact Data2.
|
Ya it removed every scroll i have. hmm. So its from 1 and 11000
Ty xExorcist for help.
Quote:
Originally Posted by Crue*
do you know that
you're a piece of ****
|
|
|
|
12/23/2014, 16:01
|
#12
|
elite*gold: 0
Join Date: May 2013
Posts: 1,447
Received Thanks: 1,046
|
Gosh for real ? Find the item you are using, select Link from _refobjcommon where codename128 like '%CODENAME OF ITEM HERE%' get the link =>
SELECT * FROM _refobjitem where ID = LINKHERE
go to the right and find the skill name used
select * from _refskill where basic_code like '%skillnamehere%'
check the SkillID and in your procedure add
delete from _TimedJob where CharID = @CharID and JobID = SkillIDHERE
that should do it..
Since you placed the query as was given the one ending with 'whatever'.. Where you see the word HERE in the queries.. you have to edit by yourself. Have pHun
|
|
|
12/23/2014, 16:14
|
#13
|
elite*gold: 56
Join Date: Oct 2013
Posts: 1,165
Received Thanks: 774
|
Quote:
Originally Posted by xExorcist
Okay use this to select the Data2 of the expert thing.
PHP Code:
SELECT DATA2 FTOM _TimedJob WHERE CharID = 'whatever'
now you get the required number simply add it to the other query.
|
Syntax Error :P
|
|
|
12/23/2014, 16:33
|
#14
|
elite*gold: 28
Join Date: Aug 2014
Posts: 4,096
Received Thanks: 2,653
|
Quote:
Originally Posted by Syloxx
Syntax Error :P
|
Crawl back, not feeling like arguing today, you should know why, so shutap..
|
|
|
12/23/2014, 19:40
|
#15
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
Quote:
Originally Posted by Zed*
Gosh for real ? Find the item you are using, select Link from _refobjcommon where codename128 like '%CODENAME OF ITEM HERE%' get the link =>
SELECT * FROM _refobjitem where ID = LINKHERE
go to the right and find the skill name used
select * from _refskill where basic_code like '%skillnamehere%'
check the SkillID and in your procedure add
delete from _TimedJob where CharID = @CharID and JobID = SkillIDHERE
that should do it..
Since you placed the query as was given the one ending with 'whatever'.. Where you see the word HERE in the queries.. you have to edit by yourself. Have pHun
|
Ah ty for the hint.
|
|
|
Similar Threads
|
Premium Scroll question
07/31/2013 - Flyff Private Server - 0 Replies
Hello. This is Premium Scroll released by Swag. And if i using this in my server and going offline(on character) the time not going down. How to make it timedown if you are offline? Thanks
6 II_SYS_SWAG_PREMIUM_1 "Preium (1...
|
[Selling] 10 premium boxes common for 1 scroll
07/03/2013 - Archlord Trading - 0 Replies
Got 40 total. Pm me or Tell me on this thread if you are interested.
|
Scroll of Soul-Linked REMOVE.
12/25/2011 - Flyff Private Server - 5 Replies
Hello,
After I look at this forum, and get nothing I decide to open thread.
I Want to know the "Scroll of Soul-Linked REMOVE" ID (v15-17)
Exactly name of this scroll will be good too.
That importent.
Thanks guys,
|
All times are GMT +1. The time now is 13:08.
|
|