Raised This Month: $32 Target: $400
 8% 

AMX Match Deluxe (Current Version: 8.11)


Post New Thread Reply   
 
Thread Tools Display Modes
Infra
Senior Member
Join Date: Aug 2004
Location: California
Old 09-01-2004 , 13:58  
Reply With Quote #21

Quote:
Originally Posted by ol
can you do it for amx0.99?????????

think you!!!!!


i like this very nice
This plugin is already on amx...

If you want the stuff I have added here added to this plugin for amx you are going to have to get a hold of Shomilder. I won't take over his whole plugin like that...
__________________
--Infra
Infra is offline
Send a message via AIM to Infra
ToTaLKaosPaNcAk3
Member
Join Date: Mar 2004
Location: Duarte, CA
Old 09-02-2004 , 03:00  
Reply With Quote #22

the overtime thingy is messed up wen i do amx_match ctteam tteam mr15 cal it exec the cal overtime config instead of the cal.cfg
__________________
-PaNcAk3
ToTaLKaosPaNcAk3 is offline
Send a message via AIM to ToTaLKaosPaNcAk3
ol
Senior Member
Join Date: Jul 2004
Old 09-02-2004 , 07:23  
Reply With Quote #23

can you upload it(1.79 for amx0.99) here?
ol is offline
Infra
Senior Member
Join Date: Aug 2004
Location: California
Old 09-02-2004 , 13:36  
Reply With Quote #24

Quote:
Originally Posted by ol
can you upload it(1.79 for amx0.99) here?
No! Dude, I'm not "porting" it back to amx. If you want the match mod for amx, go here:

http://djeyl.net/forum/index.php?showtopic=5875

Quote:
Originally Posted by ToTaLKaosPaNcAk3
the overtime thingy is messed up wen i do amx_match ctteam tteam mr15 cal it exec the cal overtime config instead of the cal.cfg
Well, I knew it was probably going to be messed up, since I didn't test it. What happens at the overtime? Does it exec the cal.cfg? or does it exec the calot.cfg again?

I'm looking into the bug now
__________________
--Infra
Infra is offline
Send a message via AIM to Infra
Infra
Senior Member
Join Date: Aug 2004
Location: California
Old 09-02-2004 , 13:47  
Reply With Quote #25

Found the problem:

Changed:

Code:
public start_warmup() {     restart_round("8")     new overtime_config = get_cvar_num("amx_match_overtimecfg")     if (in_overtime2 == 0 && overtime_config == 0)     {            client_print(0,print_chat,"* [AMX MATCH] Executing match config file (%s.cfg + default.cfg)",cfgfile)         server_cmd("exec ^"%s/leagues/%s.cfg^"", customdir, cfgfile)         server_cmd("exec ^"%s/leagues/default.cfg^"", customdir)     }     else     {         client_print(0,print_chat,"* [AMX MATCH] Executing match overtime config file (%sot.cfg + default.cfg)",cfgfile)         server_cmd("exec ^"%s/leagues/%sot.cfg^"", customdir, cfgfile)         server_cmd("exec ^"%s/leagues/default.cfg^"", customdir)     }

To:

Code:
public start_warmup() {     restart_round("8")     if (in_overtime2 == 0)     {            client_print(0,print_chat,"* [AMX MATCH] Executing match config file (%s.cfg + default.cfg)",cfgfile)         server_cmd("exec ^"%s/leagues/%s.cfg^"", customdir, cfgfile)         server_cmd("exec ^"%s/leagues/default.cfg^"", customdir)     }     else     {         new overtime_config = get_cvar_num("amx_match_overtimecfg")         if(overtime_config == 0)         {             client_print(0,print_chat,"* [AMX MATCH] Executing match config file (%s.cfg + default.cfg)",cfgfile)             server_cmd("exec ^"%s/leagues/%s.cfg^"", customdir, cfgfile)             server_cmd("exec ^"%s/leagues/default.cfg^"", customdir)         }         else         {             client_print(0,print_chat,"* [AMX MATCH] Executing match overtime config file (%sot.cfg + default.cfg)",cfgfile)             server_cmd("exec ^"%s/leagues/%sot.cfg^"", customdir, cfgfile)             server_cmd("exec ^"%s/leagues/default.cfg^"", customdir)         }     }
__________________
--Infra
Infra is offline
Send a message via AIM to Infra
ol
Senior Member
Join Date: Jul 2004
Old 09-03-2004 , 00:53  
Reply With Quote #26

No! Dude, I'm not "porting" it back to amx. If you want the match mod for amx, go here:

http://djeyl.net/forum/index.php?showtopic=5875




it's not work for amx0.99

can you fix it
ol is offline
ToTaLKaosPaNcAk3
Member
Join Date: Mar 2004
Location: Duarte, CA
Old 09-03-2004 , 02:42  
Reply With Quote #27

how come wen everyone says ready the match doesnt start?
__________________
-PaNcAk3
ToTaLKaosPaNcAk3 is offline
Send a message via AIM to ToTaLKaosPaNcAk3
ol
Senior Member
Join Date: Jul 2004
Old 09-03-2004 , 07:56  
Reply With Quote #28

i test it by amxx 0.2 tp4

when i open the udp,but the sma is not compile

i have download udp.inc
Attached Thumbnails
Click image for larger version

Name:	1.jpg
Views:	909
Size:	26.0 KB
ID:	1426  
ol is offline
Infra
Senior Member
Join Date: Aug 2004
Location: California
Old 09-03-2004 , 17:27  
Reply With Quote #29

Quote:
Originally Posted by ol
it's not work for amx0.99

can you fix it
NO...

I don't care if it's not working for amx0.99. It's working on AMXX 0.16 and I believe it will work on AMXX 0.20. That's all I care about...

I already told you get a hold of Shomilder if you want anything changed/fixed for amx0.93 or later:

http://djeyl.net/forum/index.php?s=f...&showuser=2394


Quote:
Originally Posted by ToTaLKaosPaNcAk3
how come wen everyone says ready the match doesnt start?
How many people are in the match? The default players needed is 10, if there are not 10, then you need to start the match with either, "say /start" or "amx_matchstart". You can change this by changing the amx_match_playerneed cvar. You can also change it so that you only need one person on each team to say ready. Or have it so that only an admin can start it with /start or amx_matchstart.
__________________
--Infra
Infra is offline
Send a message via AIM to Infra
ToTaLKaosPaNcAk3
Member
Join Date: Mar 2004
Location: Duarte, CA
Old 09-03-2004 , 17:58  
Reply With Quote #30

oooo i only had 8 (4v4) ill try 5v5. thx
__________________
-PaNcAk3
ToTaLKaosPaNcAk3 is offline
Send a message via AIM to ToTaLKaosPaNcAk3
Reply


Thread Tools
Display Modes

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 18:27.


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