|
You last visited: Today at 04:42
Advertisement
[Release] Coins Per Level System
Discussion on [Release] Coins Per Level System within the SRO PServer Guides & Releases forum part of the SRO Private Server category.
02/11/2014, 19:32
|
#1
|
elite*gold: 1117
Join Date: Dec 2013
Posts: 858
Received Thanks: 806
|
[Release] Coins Per Level System
it's not important system so i decide to release it
you have first to add this code into SRO_VT_SHARDLOG.dbo._AddLogChar
if (@EventID = 22)
begin
exec SRO_VT_SYSTEM_ALEXIUNS.dbo._CoinsPerLevel @CharID , @Data2, @EventTime
end
then you will create this table
create table _LeveLog (CharID int,Data2 tinyint,EventTime DateTime)
last thing you will create the proc
USE [SRO_VT_SYSTEM_ALEXIUNS]
GO
/****** Object: StoredProcedure [dbo].[_CoinsPerLevel] Script Date: 02/11/2014 20:27:42 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
create proc [dbo].[_CoinsPerLevel]
@CharID int,
@Data2 tinyint,
@EventTime DateTime
as
/* This is system by Alexiuns */
declare @Charname varchar(64) = (select CharName16 from SRO_VT_SHARD.dbo._Char Where CharID = @CharID)
if not exists (select CharID,Data2 From _LeveLog Where CharID = @CharID and Data2 = @Data2)
begin
insert into _LeveLog values (@CharID,@Data2,@EventTime)
exec SRO_VT_SHARD.dbo._ADD_ITEM_EXTERN @CharName,'ITEM_ETC_SD_TOKEN_01',1,1
end
btw this system with anti cheat
|
|
|
02/13/2014, 12:17
|
#2
|
Chat Killer In Duty
elite*gold: 5
Join Date: May 2008
Posts: 16,402
Received Thanks: 6,509
|
#Approved
|
|
|
02/14/2014, 13:07
|
#3
|
elite*gold: 0
Join Date: Feb 2013
Posts: 84
Received Thanks: 15
|
i want to get this coin at lvl 110 only
|
|
|
02/14/2014, 13:40
|
#4
|
elite*gold: 1117
Join Date: Dec 2013
Posts: 858
Received Thanks: 806
|
Quote:
Originally Posted by Mr.gotsha
i want to get this coin at lvl 110 only
|
if (@EventID = 22) and (@Data2 = 110)
begin
exec SRO_VT_SYSTEM_ALEXIUNS.dbo._CoinsPerLevel @CharID , @Data2, @EventTime
end
|
|
|
02/14/2014, 14:15
|
#5
|
elite*gold: 0
Join Date: May 2011
Posts: 365
Received Thanks: 385
|
Alexiuns i need your help to edit an AutoEquipment Procedure maybe we can check it together if you want..
I sent you a friend request @ Skype.
|
|
|
02/15/2014, 23:41
|
#6
|
elite*gold: 0
Join Date: Feb 2014
Posts: 116
Received Thanks: 36
|
Awesome
|
|
|
02/15/2014, 23:57
|
#7
|
elite*gold: 0
Join Date: Dec 2013
Posts: 795
Received Thanks: 1,093
|
I will try this on my next project.
Thanks+1.
|
|
|
02/28/2014, 04:14
|
#8
|
elite*gold: 0
Join Date: Feb 2014
Posts: 50
Received Thanks: 5
|
thx
|
|
|
05/05/2014, 15:33
|
#9
|
elite*gold: 0
Join Date: Oct 2007
Posts: 479
Received Thanks: 63
|
Msg 137, Level 15, State 2, Procedure _AddLogChar, Line 188
Must declare the scalar variable "@EventTime".
|
|
|
04/01/2016, 15:34
|
#10
|
elite*gold: 1117
Join Date: Dec 2013
Posts: 858
Received Thanks: 806
|
Quote:
Originally Posted by lepitismak
Msg 137, Level 15, State 2, Procedure _AddLogChar, Line 188
Must declare the scalar variable @  Time".
|
just
declare @  Time datetime = GETDATE()
|
|
|
12/27/2016, 00:36
|
#11
|
elite*gold: 0
Join Date: Nov 2016
Posts: 2
Received Thanks: 0
|
Quote:
Originally Posted by Alexiuns*
it's not important system so i decide to release it
you have first to add this code into SRO_VT_SHARDLOG.dbo._AddLogChar
if (@EventID = 22)
begin
exec SRO_VT_SYSTEM_ALEXIUNS.dbo._CoinsPerLevel @CharID , @Data2, @EventTime
end
then you will create this table
create table _LeveLog (CharID int,Data2 tinyint,EventTime DateTime)
last thing you will create the proc
USE [SRO_VT_SYSTEM_ALEXIUNS]
GO
/****** Object: StoredProcedure [dbo].[_CoinsPerLevel] Script Date: 02/11/2014 20:27:42 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
create proc [dbo].[_CoinsPerLevel]
@CharID int,
@Data2 tinyint,
@EventTime DateTime
as
/* This is system by Alexiuns */
declare @Charname varchar(64) = (select CharName16 from SRO_VT_SHARD.dbo._Char Where CharID = @CharID)
if not exists (select CharID,Data2 From _LeveLog Where CharID = @CharID and Data2 = @Data2)
begin
insert into _LeveLog values (@CharID,@Data2,@EventTime)
exec SRO_VT_SHARD.dbo._ADD_ITEM_EXTERN @CharName,'ITEM_ETC_SD_TOKEN_01',1,1
end
btw this system with anti cheat
|
Where I get the SRO_VT_SYSTEM_ALEXIUNS ????
|
|
|
12/27/2016, 01:11
|
#12
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
Quote:
Originally Posted by iSwOo
Where I get the SRO_VT_SYSTEM_ALEXIUNS ????
|
Use any DB. SYSTEM_ALEXIUNS its for example.
|
|
|
12/27/2016, 04:56
|
#13
|
elite*gold: 0
Join Date: Dec 2016
Posts: 4
Received Thanks: 0
|
Thanks
|
|
|
12/28/2016, 08:16
|
#14
|
elite*gold: 0
Join Date: Nov 2016
Posts: 2
Received Thanks: 0
|
Quote:
Originally Posted by Hamza FiGo
Use any DB. SYSTEM_ALEXIUNS its for example.
|
But that procedure is it?
They explain me
That is for the monsters to loose that item?
That stops to add that item to the inventory for each level achieved?
Or what is it for?
Please help
|
|
|
12/28/2016, 08:34
|
#15
|
elite*gold: 0
Join Date: Dec 2016
Posts: 76
Received Thanks: 12
|
Quote:
Originally Posted by iSwOo
But that procedure is it?
They explain me
That is for the monsters to loose that item?
That stops to add that item to the inventory for each level achieved?
Or what is it for?
Please help
|
nothing wrong with this query just try it and it's will work
|
|
|
Similar Threads
|
[RELEASE]Stick Run Coins - Xp - Level Hack [FLY]
10/21/2013 - Facebook - 16 Replies
Stick Run How To Fly
Open Stick Run. Start a single player game and just die at the first barrier.
Stay at the failed screen. Open Cheat Engine and choose your browser.
Change Value Type to Double and Scan Type to "Value Between"
Put 5 and 5. Click first scan, change all (except green and red ones) to 0.
Play again and just jump. Now you're flying ;)
After you reached to the score you want change all to 5 again to stop flying.
|
G-SRO Cap 120*Free Silk Coins In Monsters*Reborn System*Forge SYSTEM To Plus 100
08/13/2013 - SRO PServer Advertising - 4 Replies
---removes---
|
All times are GMT +1. The time now is 04:43.
|
|