Raised This Month: $51 Target: $400
 12% 

Round End Events - FINAL VERSION RELEASED


Post New Thread Reply   
 
Thread Tools Display Modes
ExodoX
Junior Member
Join Date: Oct 2011
Location: Argentina
Old 09-24-2017 , 22:42   Re: [AMXX] CSGO Round End Events
Reply With Quote #81

Quote:
Originally Posted by EFFx View Post
May be your bots. Try with podbots and tell me what happen.
I testing this using podbot, but i think this don't work fine on Rehlds, because all bot join but can't choose team (i try with set a team from amxmodmenu or from pb menu) but nothing...

Update: I test with yapb bots and works...i will notice you when i get a log of many events

Update 2: After remove zbot and use yapb bots that show fine, and nothing bad on logs of plugin....
Image: https://gyazo.com/4a648f9a696731467e780a188bbae56c
Testing with yapb bots on 4vs4

Maybe the zbots are the problem... i will notice you if i see any anomaly on logs of plugin.

Last edited by ExodoX; 09-25-2017 at 01:18.
ExodoX is offline
EFFx
Veteran Member
Join Date: Feb 2016
Location: São Paulo, Brasil
Old 09-25-2017 , 06:24   Re: [AMXX] CSGO Round End Events
Reply With Quote #82

Thank you for the support.
__________________
• Ranking System • AutoMix 5vs5 System
• Web Ban System • Plugins for free

____________________________________________
For private works:
• Discord: EFFEXo#8850 • Steam: EFFEXo
EFFx is offline
sekac
Senior Member
Join Date: Nov 2016
Old 07-25-2018 , 05:45   Re: [AMXX] CSGO Round End Events
Reply With Quote #83

I noticed that it in my 5v5 server, it shows that someone did an ACE with 4 kills, and when someone gets 5 kills it doesn't show he did an ACE (it just shows that he got 5 kills).
sekac is offline
EFFx
Veteran Member
Join Date: Feb 2016
Location: São Paulo, Brasil
Old 07-25-2018 , 19:35   Re: [AMXX] CSGO Round End Events
Reply With Quote #84

This plugin wasn't made only for 5v5 servers, it can be used in any mod. The Ace message is when someone has killed the whole enemy team, so, at the round start, it picks up the number of each team, and if a player hit that value, it shows Ace. But I'm gonna check this plugin again, perhaps I'll update.

Tried a little here:

Code:
L 07/25/2018 - 20:49:00: Quentin_Tarantino brought a knife to a gunfight.
L 07/25/2018 - 20:51:00: Kugelfang survived attacks from 2 different enemies.
L 07/25/2018 - 20:53:40: Counter-Terrorists had the best accuracy with 16%
L 07/25/2018 - 20:56:22: Mickey_Rourke lasted 3 consecutive rounds without dying.
L 07/25/2018 - 20:58:44: Matt_Damon fired 81 shots in that round.
L 07/25/2018 - 20:59:52: S.E.S. killed 2 enemies with under 25 health.
L 07/25/2018 - 21:01:36: Thomas Chong defended the planted bomb from 2 enemies.
L 07/25/2018 - 21:03:36: Matt_Damon brought a knife to a gunfight.
L 07/25/2018 - 21:05:36: Quentin_Tarantino survived attacks from 3 different enemies.
L 07/25/2018 - 21:06:35: 153 shots were fired that round.
L 07/25/2018 - 21:07:51: EFFx has bought 5 items.
L 07/25/2018 - 21:09:51: EFFx survived the most time: 115 seconds.
L 07/25/2018 - 21:11:16: The Counter-Terrorists eliminated the Terrorists in 33 seconds.
L 07/25/2018 - 21:12:20: EFFx has spent 10000 money.
L 07/25/2018 - 21:12:54: Terrorists won without taking any casualties.
L 07/25/2018 - 21:13:59: Ace! EFFx killed the entire enemy team.
Looks good for now. But I saw some wrong codes, will update soon.
__________________
• Ranking System • AutoMix 5vs5 System
• Web Ban System • Plugins for free

____________________________________________
For private works:
• Discord: EFFEXo#8850 • Steam: EFFEXo

Last edited by EFFx; 07-26-2018 at 03:01.
EFFx is offline
EFFx
Veteran Member
Join Date: Feb 2016
Location: São Paulo, Brasil
Old 07-26-2018 , 03:01   Re: [AMXX] CSGO Round End Events
Reply With Quote #85

Updated to v1.2:

Code:
. Changed some formats and now the events is appearing more randomly.
. Fixed the 'X brought knife to a gunfight' event.
. Fixed the hud color check format.
. Fixed the percent value on ev_Accuracy event.
. Added new event: X Killed Y teammate(s)
. Added amx 1.8.3 version check on buy event. (1.8.3 has CS_OnBuy forward)
. Changed some chances on the .ini file.
. Optimized the code a little.
__________________
• Ranking System • AutoMix 5vs5 System
• Web Ban System • Plugins for free

____________________________________________
For private works:
• Discord: EFFEXo#8850 • Steam: EFFEXo

Last edited by EFFx; 07-26-2018 at 03:01.
EFFx is offline
Black Rose
Veteran Member
Join Date: Feb 2011
Location: Stockholm, Sweden
Old 08-01-2018 , 15:40   Re: [AMXX] CSGO Round End Events
Reply With Quote #86

Quote:
Originally Posted by EFFx View Post
Updated to v1.2:

Code:
. Added amx 1.8.3 version check on buy event. (1.8.3 has CS_OnBuy forward)
Code:
#if AMXX_VERSION_NUM < 183 public client_buy(id, iItem) #else public CS_OnBuy(id, iItem) #endif {

The only thing this checks is what version of svn_version.inc was used when the plugin was compiled. This forward is not backwards compatible which means you have a pretty big chance of this code never getting called. Also, not all versions of 1.8.3 has CS_OnBuy(), but that's a minor issue since those using 1.8.3 are more likely to keep it up to date.

Since it's a forward you don't have to worry too much. If the version of AMXX used has CS_OnBuy() it will replace client_buy() which means you can just hook both, only one will be called in the end.
Code:
public client_buy(id, iItem)     VersionSafeOnBuy(id, iItem) public CS_OnBuy(id, iItem)     VersionSafeOnBuy(id, iItem) VersionSafeOnBuy(id, iItem) {

There is a way of determening the version of AMXX during runtime but I won't get in to that now.
__________________

Last edited by Black Rose; 08-01-2018 at 15:45.
Black Rose is offline
EFFx
Veteran Member
Join Date: Feb 2016
Location: São Paulo, Brasil
Old 08-01-2018 , 17:03   Re: [AMXX] CSGO Round End Events
Reply With Quote #87

Gotcha, I'mma fix this. Thank you
__________________
• Ranking System • AutoMix 5vs5 System
• Web Ban System • Plugins for free

____________________________________________
For private works:
• Discord: EFFEXo#8850 • Steam: EFFEXo
EFFx is offline
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 08-03-2018 , 17:45   Re: [AMXX] CSGO Round End Events
Reply With Quote #88

#if defined CS_OnBuy
__________________
OciXCrom is offline
Send a message via Skype™ to OciXCrom
Black Rose
Veteran Member
Join Date: Feb 2011
Location: Stockholm, Sweden
Old 08-03-2018 , 18:03   Re: [AMXX] CSGO Round End Events
Reply With Quote #89

Quote:
Originally Posted by OciXCrom View Post
#if defined CS_OnBuy
Nope.
__________________
Black Rose is offline
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 08-03-2018 , 19:17   Re: [AMXX] CSGO Round End Events
Reply With Quote #90

Why not?
__________________
OciXCrom is offline
Send a message via Skype™ to OciXCrom
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 11:23.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode