This site is a testing version, but all data is shared with the live forum.


Raised This Month: $ Target: $400
 0% 

AMX Match Deluxe (Current Version: 8.11)


Post New Thread Reply   
 
Thread Tools Display Modes
James
Senior Member
Join Date: Dec 2004
Old 09-11-2005 , 11:08   problems with > 1.5
Reply With Quote #361

I really dont know why plugin doesnt work in amxx > 1.5. His functionallity end after first half is over. If somebody know why, please notify me.
Until we dont know why it doesnt work, we must use old amxx 1.01 unfortunatelly. I try find out why after first half doesnt work, i disable screenshots etc, but command set_task(2.0,"start_warmup") start warm_up, but restart_round("1") doesnt work, and when I replace this with sv_restart 1, restart work, but counting is strange ... pitty...
James is offline
Guenhwyvar
AMX Mod X Beta Tester
Join Date: Jul 2005
Location: Berlin / Germany
Old 09-11-2005 , 13:09  
Reply With Quote #362

Hm, for me, this is the third plugin doesn't work under 1.55 (but did on 1.01).

I had to disable them and wait for plugin updates, starting to begin thinking about an amxx downgrade.
Guenhwyvar is offline
cebos
Junior Member
Join Date: Aug 2005
Old 09-11-2005 , 22:30  
Reply With Quote #363

L 09/12/2005 - 13:27:52: -------- Mapchange --------
L 09/12/2005 - 13:27:52: [AMXX] Plugin "amx_match_deluxe.amxx" failed to load: Plugin uses an unknown function (name "regex_free") - check your modules.ini

This is what I am getting in my CS1.6 console.
cebos is offline
Guenhwyvar
AMX Mod X Beta Tester
Join Date: Jul 2005
Location: Berlin / Germany
Old 09-12-2005 , 02:43  
Reply With Quote #364

Code:
 --- Required Modules: --- -------------------------       - Regex

please post your modules.ini and the output of console > amx_modules.
Guenhwyvar is offline
sl1ps
Junior Member
Join Date: Sep 2005
Old 09-12-2005 , 06:22   :(
Reply With Quote #365

I've tried using it under amxx 1.55 and it doesn't work - as people have
pointed out.

But people have said it works on 1.01 - i've tried that too but it just gives
me this error

"[AMXX] Invalid Plugin (plugin "amx_match_deluxe.amxx")


I got version 1.01 from this link, is this correct ?
http://prdownloads.sourceforge.net/a...ar.gz?download

Also, do I need an older metamod - currently using latest one - for the 1.01
amxx ? if so could someone link the correct metamod version for 1.01

cheers[/url]
sl1ps is offline
curium
New Member
Join Date: Sep 2005
Old 09-12-2005 , 15:39  
Reply With Quote #366

There are 3 bugs in the code which are causing these problems. Here are the fixes.

On line 1061 replace this line:
Code:
format(hudmsg,199,"%s%s^n %L ",temp,(recdemo>0) ? "%L":"",LANG_PLAYER,"ENTER_WARMUP",LANG_PLAYER,"DEMOS_AUTORECORDED")
With this:
Code:
if(recdemo > 0)
   format(hudmsg,199,"%L^n %L ",LANG_PLAYER,"ENTER_WARMUP",LANG_PLAYER,"DEMOS_AUTORECORDED")
else
   format(hudmsg,199,"%L ",LANG_PLAYER,"ENTER_WARMUP")
I actually would recommend just commenting out those 3 lines, because it displays a really useless message over a useful message.

Code:
//format(hudmsg,199,"%s%s^n %L ",temp,(recdemo>0) ? "%L":"",LANG_PLAYER,"ENTER_WARMUP",LANG_PLAYER,"DEMOS_AUTORECORDED")
//set_hudmessage(0, 255, 255, -1.0, 0.38, 0, 2.0, 6.0, 0.8, 0.8, 5)
//show_hudmessage(0,hudmsg)
On line 1970 and 2039:
Replace:
Code:
format(hudmsg,255,"%s^n%L",(swap_type==1) ? "%L" : "",LANG_PLAYER,"BACK_TO_WARMUP",LANG_PLAYER,"DONT_CHANGE_TEAM")
With:
Code:
if(swap_type == 1)
format(hudmsg,255,"%L^n%L",LANG_PLAYER,"BACK_TO_WARMUP",LANG_PLAYER,"DONT_CHANGE_TEAM")
else
format(hudmsg,255,"%L",LANG_PLAYER,"BACK_TO_WARMUP")
Recompile and it should work just fine.
curium is offline
fannymagnet
Junior Member
Join Date: Mar 2005
Old 09-13-2005 , 06:37  
Reply With Quote #367

What editor do you use? I can't get the line numbers to match up.
fannymagnet is offline
GrassHoper
Junior Member
Join Date: Feb 2005
Location: Toulouse, France
Old 09-13-2005 , 07:36  
Reply With Quote #368

If you're running Windows, use AMXX Studio
Download AMXX Studio 1.2
GrassHoper is offline
Send a message via MSN to GrassHoper
curium
New Member
Join Date: Sep 2005
Old 09-13-2005 , 13:55  
Reply With Quote #369

I was just using Crimson Editor. Just do a find for that exact line content and you will find it.
curium is offline
fannymagnet
Junior Member
Join Date: Mar 2005
Old 09-13-2005 , 16:34  
Reply With Quote #370

Works a treat now with those fixes.
fannymagnet is offline
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 01:32.


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