Register for your free account! | Forgot your password?

You last visited: Today at 12:08

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

Advertisement



[Release] Survival arena event

Discussion on [Release] Survival arena event within the SRO PServer Guides & Releases forum part of the SRO Private Server category.

Reply
 
Old   #1
 
bimbum*'s Avatar
 
elite*gold: 147
Join Date: Oct 2017
Posts: 548
Received Thanks: 882
[Release] Survival arena event

Hello*,
many ppl had been requesting a survival arena event so here we go!!

Note*:
you will have to edit procedures

Map*:


Download*:
(UPDATED)
bimbum* is offline  
Thanks
6 Users
Old 04/19/2020, 18:26   #2
 
elite*gold: 0
Join Date: Jul 2017
Posts: 43
Received Thanks: 8
Please reupload to Mega

Gesendet von meinem SM-N960F mit Tapatalk
TechnicVreak is offline  
Old 04/19/2020, 18:34   #3
 
bimbum*'s Avatar
 
elite*gold: 147
Join Date: Oct 2017
Posts: 548
Received Thanks: 882
Quote:
Originally Posted by TechnicVreak View Post
Please reupload to Mega

Gesendet von meinem SM-N960F mit Tapatalk
here you go
bimbum* is offline  
Thanks
1 User
Old 04/19/2020, 19:18   #4
 
TEVEZ_7's Avatar
 
elite*gold: 0
Join Date: Feb 2010
Posts: 57
Received Thanks: 18
so it work by ilegend_tool , small hint how to work !
and how can you edit the reward items ?
TEVEZ_7 is offline  
Old 04/19/2020, 19:44   #5
 
bimbum*'s Avatar
 
elite*gold: 147
Join Date: Oct 2017
Posts: 548
Received Thanks: 882
Quote:
Originally Posted by TEVEZ_7 View Post
so it work by ilegend_tool , small hint how to work !
and how can you edit the reward items ?
it doesn't need any hints just read the procedure (survival_cullinan)
bimbum* is offline  
Old 04/19/2020, 21:52   #6
 
elite*gold: 0
Join Date: Apr 2016
Posts: 201
Received Thanks: 47
is it a joke? you only shared some code how to reward ppl and how they can register themselves... but you havent added that part which handles the kills...the core! i think its useless if you dont explain how it rlly works without using any tools. OR if it requires a tools to work properly then you should have been shared that and its settings via this thread as well.
ps. i guess the kill handling sys. shows similarity to the wanted system.
Piskota is offline  
Old 04/19/2020, 21:55   #7
 
bimbum*'s Avatar
 
elite*gold: 147
Join Date: Oct 2017
Posts: 548
Received Thanks: 882
Quote:
Originally Posted by Piskota View Post
is it a joke? you only shared some code how to reward ppl and how they can register themselves... but you havent added that part which handles the kills...the core! i think its useless if you dont explain how it rlly works without using any tools. OR if it requires a tools to work properly then you should have been shared that and its settings via this thread as well.
ps. i guess the kill handling sys. shows similarity to the wanted system.
its updated however it's still not fully completed just needs some few edits
bimbum* is offline  
Old 04/20/2020, 07:23   #8
 
NorseGodTyr's Avatar
 
elite*gold: 0
Join Date: May 2013
Posts: 2,221
Received Thanks: 1,457
for kill count you have to add like this
_AddLogChar

IF @EventID = '20' and @strPos like '%(0x63ec)%'
BEGIN
DECLARE @PvpKilledID varchar(200) = @CharID
DECLARE @PvpKillerName VARCHAR(512) = @Desc
SELECT @PvpKillerName = REPLACE(@PvpKillerName, LEFT (@PvpKillerName, CHARINDEX('(', @PvpKillerName)), '')
SELECT @PvpKillerName = REPLACE(@PvpKillerName, RIGHT (@PvpKillerName, CHARINDEX(')', REVERSE (@PvpKillerName))), '')
DECLARE @PvpKillerID varchar(200) SELECT @PvpKillerID = CharID FROM [SRO_VT_SHARD].[dbo].[_Char] WHERE CharName16 = @PvpKillerName
Declare @ServiceEvent int = (Select [Service] From _Survival_Service Where [Service] like '1')
IF(@ServiceEvent = '1')
Begin
INSERT INTO _Survival_KillLog VALUES (@PvpKillerID, @PvpKilledID, GETDATE())
END
END
NorseGodTyr is offline  
Thanks
2 Users
Old 04/22/2020, 15:10   #9
 
SymbolofeviL's Avatar
 
elite*gold: 0
Join Date: Jun 2012
Posts: 67
Received Thanks: 6
how do i control the time of the event or the region i want the event to be in?
SymbolofeviL is offline  
Old 04/22/2020, 21:35   #10
 
NorseGodTyr's Avatar
 
elite*gold: 0
Join Date: May 2013
Posts: 2,221
Received Thanks: 1,457
Quote:
Originally Posted by SymbolofeviL View Post
how do i control the time of the event or the region i want the event to be in?
about region
check my script
Quote:
@strPos like '%(0x63ec)%'
its Region Survival Area also Colosseum

and about a time create a schedule via windows
or per hands via exec query
NorseGodTyr is offline  
Thanks
1 User
Old 04/22/2020, 22:20   #11
 
SymbolofeviL's Avatar
 
elite*gold: 0
Join Date: Jun 2012
Posts: 67
Received Thanks: 6
Quote:
its Region Survival Area also Colosseum

and about a time create a schedule via windows
or per hands via exec query
__________________
I DON'T KNOW HOW TO DO THAT, ANY HINTS?

EXEC [survival_cullinan]
it excutes but legendtools doesn't sent notice i don't know why
is this how it looks? @NorseGodTyr
SymbolofeviL is offline  
Old 04/23/2020, 12:52   #12
 
NorseGodTyr's Avatar
 
elite*gold: 0
Join Date: May 2013
Posts: 2,221
Received Thanks: 1,457
Quote:
Originally Posted by SymbolofeviL View Post
I DON'T KNOW HOW TO DO THAT, ANY HINTS?

EXEC [survival_cullinan]
it excutes but legendtools doesn't sent notice i don't know why
is this how it looks? @NorseGodTyr
ye but idk why will not work somthing wrong in exec procedure or the timer ?
NorseGodTyr is offline  
Old 04/23/2020, 16:42   #13
 
SymbolofeviL's Avatar
 
elite*gold: 0
Join Date: Jun 2012
Posts: 67
Received Thanks: 6
Quote:
Originally Posted by NorseGodTyr View Post
ye but idk why will not work somthing wrong in exec procedure or the timer ?
exec procedure i assume
SymbolofeviL is offline  
Old 04/23/2020, 16:48   #14
 
NorseGodTyr's Avatar
 
elite*gold: 0
Join Date: May 2013
Posts: 2,221
Received Thanks: 1,457
Quote:
Originally Posted by SymbolofeviL View Post
exec procedure i assume
Download this source code


and build the .exe and try with this

here is an example how this work
NorseGodTyr is offline  
Old 05/03/2020, 18:36   #15
 
elite*gold: 0
Join Date: Oct 2019
Posts: 195
Received Thanks: 81
Thanks ^^

Mr Yuni ™ is offline  
Thanks
2 Users
Reply


Similar Threads Similar Threads
[Release] Survival Arena
03/25/2020 - SRO PServer Guides & Releases - 24 Replies
https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak- ash3/s720x720/164480_570510592973191_2141206299_n. jpg https://fbcdn-sphotos-b-a.akamaihd.net/hphotos-ak -ash3/s720x720/72623_570510786306505_1094755716_n. png https://fbcdn-sphotos-g-a.akamaihd.net/hphotos-ak -snc7/s720x720/429676_570510449639872_1623090760_n .png more information about the survival arena can be found here youtube video
ZSZC | Water | 105 Cap CH | Low Rate | Survival Arena | Desert Arena | Long Term
01/06/2019 - SRO PServer Advertising - 4 Replies
http://i.epvpimg.com/LKKQaab.png Welcome to ZSZC Online! We are pleased to announce our second server ZSZC- Water, which we have been working on for a long time, a 105-cap server. ZSZC Online promises its players a bug free and no delay game experience, we offer you the best 105 Cap Server. Do you want to go back to the old active times? If so, plunge into the adventure of ZSZC - Water! http://i.epvpimg.com/rD1cfab.png The beta is for you to get a first insight and to fix us on any...
BEST 80 CAP SW - ErioticRoad - Sun's at npc.-Pvp arena-Event Arena MORE MORE MORE ...
07/20/2012 - SRO PServer Advertising - 24 Replies
edit



All times are GMT +2. The time now is 12:08.


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.