Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > Silkroad Online > SRO Private Server > SRO PServer Guides & Releases
You last visited: Today at 18:48

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Release] SAVI v1.4.0.0 | Auto Events | vSro

Discussion on [Release] SAVI v1.4.0.0 | Auto Events | vSro within the SRO PServer Guides & Releases forum part of the SRO Private Server category.

Reply
 
Old 05/27/2018, 04:17   #76
 
MR_MeGO's Avatar
 
elite*gold: 0
Join Date: May 2016
Posts: 10
Received Thanks: 2
Link not working !
MR_MeGO is offline  
Old 05/27/2018, 09:07   #77
 
NorseGodTyr's Avatar
 
elite*gold: 0
Join Date: May 2013
Posts: 2,221
Received Thanks: 1,457
Quote:
Originally Posted by MR_MeGO View Post
Link not working !
The Link work
Copy paster after elitepvpers.com
also only this link
Code:
https://mega.nz/#!lQYQibKB!vMcL1g4TpYthZm7h6WIseWxFqlX2m0ctO92v7-eLAaE
NorseGodTyr is offline  
Old 03/01/2019, 22:37   #78
 
elite*gold: 0
Join Date: Sep 2015
Posts: 10
Received Thanks: 1
The event does not give a reward, at the end, how to repair that?
And in kill the gm, after it dies, it does not revive.
OwenXtreme is offline  
Old 03/21/2019, 01:36   #79
 
elite*gold: 0
Join Date: Aug 2018
Posts: 17
Received Thanks: 3
Thanks for releasing i was looking for this.
hexagram1 is offline  
Old 05/10/2019, 04:03   #80
 
iAmAndrew's Avatar
 
elite*gold: 45
Join Date: Nov 2014
Posts: 239
Received Thanks: 46
What should i change?
appear me this error

Msg 137, Level 15, State 1, Procedure _AddLogItem, Line 24
Must declare the scalar variable "@len_desc1".
Msg 137, Level 15, State 2, Procedure _AddLogItem, Line 25
Must declare the scalar variable "@len_desc1".
Msg 137, Level 15, State 1, Procedure _AddLogItem, Line 28
Must declare the scalar variable "@strDesc_separado".
Msg 137, Level 15, State 2, Procedure _AddLogItem, Line 30
Must declare the scalar variable "@len_desc1".
Msg 137, Level 15, State 1, Procedure _AddLogItem, Line 33
Must declare the scalar variable "@strDesc_separado".
Msg 137, Level 15, State 2, Procedure _AddLogItem, Line 35
Must declare the scalar variable "@strDesc_separado".
Msg 137, Level 15, State 2, Procedure _AddLogItem, Line 39
Must declare the scalar variable "@strDesc_separado".
iAmAndrew is offline  
Old 05/12/2019, 06:29   #81
 
sa.vi's Avatar
 
elite*gold: 0
Join Date: Mar 2016
Posts: 68
Received Thanks: 37
Quote:
Originally Posted by NorseGodTyr View Post
The Link work
Copy paster after elitepvpers.com
also only this link
Code:
https://mega.nz/#!lQYQibKB!vMcL1g4TpYthZm7h6WIseWxFqlX2m0ctO92v7-eLAaE
thank you for helping us

Quote:
Originally Posted by OwenXtreme View Post
The event does not give a reward, at the end, how to repair that?
And in kill the gm, after it dies, it does not revive.
about reward , change database name in procedures
and add it to addlogchar to fix GM

IF (@EventID =20 AND @strPos Like '%(0x65bd)%')
BEGIN
DECLARE @Name nvarchar(32)= (SELECT CharName16 FROm Vengard_SHARD.._Char Where CharID=@CharID)
INSERT INTO SaVi_Bot.._AddKill (CharName)values(@Name)
END
IF (@EventID = 20)
BEGIN
EXEC SaVi_Bot.._KillAdd @CharID,@Desc,@strPos
END

also apologize for late thats cus i dont open forum much

Quote:
Originally Posted by hexagram1 View Post
Thanks for releasing i was looking for this.
hope its helped you
Quote:
Originally Posted by iAmAndrew View Post
What should i change?
appear me this error

Msg 137, Level 15, State 1, Procedure _AddLogItem, Line 24
Must declare the scalar variable "@len_desc1".
Msg 137, Level 15, State 2, Procedure _AddLogItem, Line 25
Must declare the scalar variable "@len_desc1".
Msg 137, Level 15, State 1, Procedure _AddLogItem, Line 28
Must declare the scalar variable "@strDesc_separado".
Msg 137, Level 15, State 2, Procedure _AddLogItem, Line 30
Must declare the scalar variable "@len_desc1".
Msg 137, Level 15, State 1, Procedure _AddLogItem, Line 33
Must declare the scalar variable "@strDesc_separado".
Msg 137, Level 15, State 2, Procedure _AddLogItem, Line 35
Must declare the scalar variable "@strDesc_separado".
Msg 137, Level 15, State 2, Procedure _AddLogItem, Line 39
Must declare the scalar variable "@strDesc_separado".

replace this part in addlogitem

USE [SRO_VT_LOG]
GO
/****** Object: StoredProcedure [dbo].[_AddLogItem] Script Date: 5/12/2019 6:27:03 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER procedure [dbo].[_AddLogItem]
@CharID int,
@ItemRefID int,
@ItemSerial bigint,
@dwData int,
@TargetStorage tinyint,
@Operation tinyint,
@Slot_From tinyint,
@Slot_To tinyint,
@EventPos varchar(64),
@strDesc varchar(128),
@Gold bigint -- #ifdef EXTEND_GOLD_TYPE »?AO
as
declare @len_pos int
declare @len_desc int
declare @strDesc_separado varchar(128)
declare @len_desc1 int
set @len_pos = len(@EventPos)
set @len_desc = len(@strDesc)
if (@len_pos > 0 and @len_desc > 0)
begin
insert _LogEventItem (EventTime, CharID, ItemRefID, dwData, TargetStorage, Operation, Slot_From, Slot_To, EventPos, strDesc, Serial64, Gold) -- #ifdef EXTEND_GOLD_TYPE ±³?¼
values(GetDate(), @CharID, @ItemRefID, @dwData, @TargetStorage, @Operation, @Slot_From, @Slot_To, @EventPos, @strDesc, @ItemSerial, @Gold) -- #ifdef EXTEND_GOLD_TYPE ±³?¼
end
else if (@len_pos > 0 and @len_desc = 0)
begin
insert _LogEventItem (EventTime, CharID, ItemRefID, dwData, TargetStorage, Operation, Slot_From, Slot_To, EventPos, Serial64, Gold) -- #ifdef EXTEND_GOLD_TYPE ±³?¼
values(GetDate(), @CharID, @ItemRefID, @dwData, @TargetStorage, @Operation, @Slot_From, @Slot_To, @EventPos, @ItemSerial, @Gold) -- #ifdef EXTEND_GOLD_TYPE ±³?¼
end
else if (@len_pos = 0 and @len_desc > 0)
begin
insert _LogEventItem (EventTime, CharID, ItemRefID, dwData, TargetStorage, Operation, Slot_From, Slot_To, strDesc, Serial64, Gold) -- #ifdef EXTEND_GOLD_TYPE ±³?¼
values(GetDate(), @CharID, @ItemRefID, @dwData, @TargetStorage, @Operation, @Slot_From, @Slot_To, @strDesc, @ItemSerial, @Gold) -- #ifdef EXTEND_GOLD_TYPE ±³?¼
end
else if (@len_pos = 0 and @len_desc = 0)
begin
insert _LogEventItem (EventTime, CharID, ItemRefID, dwData, TargetStorage, Operation, Slot_From, Slot_To, Serial64, Gold) -- #ifdef EXTEND_GOLD_TYPE ±³?¼
values(GetDate(), @CharID, @ItemRefID, @dwData, @TargetStorage, @Operation, @Slot_From, @Slot_To, @ItemSerial, @Gold) -- #ifdef EXTEND_GOLD_TYPE ±³?¼
end
-- A¯·? ¾?A??U ±¸AOA?¸é!
-- #define LOG_ITEMEVENT_BUY_CASHITEM (BYTE)35
if (@Operation = 35)
begin
insert _LogCashItem (RefItemID, CharID, Cnt, EventTime, Serial64)
values(@ItemRefID, @CharID, @dwData, GetDate(), @ItemSerial)
end
if (@Operation = 90 OR @Operation = 160)
begin
set @len_desc1 = CHARINDEX (']',@strDesc)
if(@len_desc1 = 9)
begin
set @strDesc = SUBSTRING(@strDesc,0,9)
set @strDesc_separado = SUBSTRING(@strDesc, 8, 1)
end
else if(@len_desc1 = 10)
begin
set @strDesc = SUBSTRING(@strDesc,0,10)
set @strDesc_separado = SUBSTRING(@strDesc, 8, 2)
end
if(@strDesc_separado >= 1)
begin
--set @strDesc_separado = @len_desc1
Declare @CharName nvarchar(32) =( SELECT CHARname16 From SRO_VT_SHARD.._Char Where CharID=@CharID)
insert SaVi_Bot.._LogPlus(CharName, ItemRefID, Plus) values(@CharName, @ItemRefID, @strDesc_separado)
end
end
sa.vi is offline  
Thanks
1 User
Old 08/02/2019, 11:31   #82
 
elite*gold: 0
Join Date: Jun 2019
Posts: 43
Received Thanks: 9
Only trivia is active from event screens. How do I activate other tabs?
LiteSro is offline  
Old 08/02/2019, 23:59   #83
 
elite*gold: 0
Join Date: Aug 2010
Posts: 689
Received Thanks: 372
Quote:
Originally Posted by LiteSro View Post
Only trivia is active from event screens. How do I activate other tabs?
c# If you have any information, you can edit the source and use it.
you only need to manually set the other 3 buton set to the button active setting C# information is required.
bende16 is offline  
Thanks
1 User
Old 09/13/2019, 03:23   #84
 
elite*gold: 0
Join Date: Nov 2008
Posts: 27
Received Thanks: 0
do u have data for server hyperion can i use it
shonmicil is offline  
Reply

Tags
auto alchemy, auto events, auto events pve server, vsro 1.88


Similar Threads Similar Threads
[Release] G Auto Events For Vsro Servers
04/16/2020 - SRO PServer Guides & Releases - 305 Replies
http://i.epvpimg.com/Qcj1h.png GUI V5.0 END POINT image: http://i.epvpimg.com/vqEvgab.png image: http://i.epvpimg.com/GHqnbab.png image: http://i.epvpimg.com/DWBtbab.png image: http://i.epvpimg.com/9kccdab.png image: http://i.epvpimg.com/rBIlcab.png
SAVI [Auto Events , Security]
10/10/2019 - Silkroad Online Trading - 11 Replies
SAVI Hello Epvp, Program will give you a great help to protect your server and make the server more enjoyable and stability with Auto-events, Program tested in V-SRO only.
eBot v3 | Automatic Events | Boost Your Server Quality | vSro
10/07/2018 - SRO PServer Guides & Releases - 143 Replies
Hello, EPVP community. Beforehand introducing my program and its features, i want to summarize the general use of it and point out why P-sro scene needs a program like this. In the light of the recent p-sro servers we realized how the Auto-Events are important to bring huge amount of players since it provides a real-proper in game content-schedule and stuff. But then, you have to work tons of hours to for coding something like that. At this point, i wanted to code an Event-Bot, aka eBot,...
[Release] SAVI v1.4.0.0 | Auto Events | vSro
04/18/2016 - SRO PServer Guides & Releases - 29 Replies
---removed---



All times are GMT +2. The time now is 18:48.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.