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

AMX Mod X 1.8.0 Released!


Post New Thread Closed Thread   
 
Thread Tools Display Modes
JayHaxor
BANNED
Join Date: Aug 2007
Location: New Jersey
Old 10-26-2007 , 16:41   Re: AMX Mod X 1.8.0 Released!
#31

Koolio, works great =D
JayHaxor is offline
Old 10-26-2007, 17:56
hoboman
This message has been deleted by Roach. Reason: wrong thread
Old 10-26-2007, 18:05
TheNewt
This message has been deleted by Roach. Reason: reply to deleted post.
diamond-optic
Veteran Member
Join Date: May 2005
Old 10-26-2007 , 19:45   Re: AMX Mod X 1.8.0 Released!
#32

great work.. changelog looks awesome

cant wait to get this up and running
__________________
diamond-optic is offline
QuakerOates
Senior Member
Join Date: Mar 2004
Old 10-27-2007 , 03:14   Re: AMX Mod X 1.8.0 Released!
#33

Gj
__________________
SteamBans.org
QuakerOates is offline
KWo
AMX Mod X Beta Tester
Join Date: Jul 2004
Location: Poland
Old 10-27-2007 , 03:31   Re: AMX Mod X 1.8.0 Released!
#34

Just a question to Bailopan - from that what I can see - it seems You are too much busy to work on AMX X, so the main work on 1.8.0 version sawce did. The question is - are You going to extend some of AMX X features in some future version of AMX X or You rather think only about bug-fixes version (if they will exist in 1.8.0)? The question is related to some features they were promised long time ago, but You are still too much busy to work on them.
Is possible 1.8.0 is one of the latest version of AMX X, because the main goal for You will be developing SourceMod and for AMX X there is no time (or maybe even the motivation)?

Anyaway thanks to sawce for making 1.8.0.
__________________
The Fullpack of podbot mm V3B22 - 24 apr 2012!!! is available here.
The All-In-One 3.2a package - 02 jun 2013 (AMX X 1.8.2 [with ATAC 3.0.1b , CSDM2.1.3c beta, CM OE 0.6.5, podbot mm V3B22c and mm 1.20) is available here.
The newest Beta V3B23a (rel. 28 august 2018!!!) is available here.
KWo is offline
James
Senior Member
Join Date: Dec 2004
Old 10-27-2007 , 05:54   Re: AMX Mod X 1.8.0 Released!
#35

Nice, good job. I have one question: Per-Map Features prefix_de.cfg is overriden by maps cfg, like de_nuke.cfg right?
__________________
Do good things, and good things happen to you
James is offline
BigBaller
Veteran Member
Join Date: Mar 2004
Location: Everett, WA
Old 10-27-2007 , 06:34   Re: AMX Mod X 1.8.0 Released!
#36

Quote:
Originally Posted by James View Post
Nice, good job. I have one question: Per-Map Features prefix_de.cfg is overriden by maps cfg, like de_nuke.cfg right?
I think they will work in tandem if you configure them right, because as I believe the map config is loaded before the prefix config, however this may not be the case.

To be safe I would define specific CVARs in de_nuke.cfg and not place the same ones in the prefix_de.cfg
__________________

BigBaller is offline
James
Senior Member
Join Date: Dec 2004
Old 10-27-2007 , 07:09   Re: AMX Mod X 1.8.0 Released!
#37

I think will be situation, when I set CVARS for (example) all de_ maps, but for certain de_ maps i will need some special setup...
__________________
Do good things, and good things happen to you
James is offline
BigBaller
Veteran Member
Join Date: Mar 2004
Location: Everett, WA
Old 10-27-2007 , 07:25   Re: AMX Mod X 1.8.0 Released!
#38

Code:
public delayed_load() {     new configFile[128], curMap[64], configDir[128]     get_configsdir(configDir, sizeof(configDir)-1)     get_mapname(curMap, sizeof(curMap)-1)     new i=0;         while (curMap[i] != '_' && curMap[i++] != '^0') {/*do nothing*/}         if (curMap[i]=='_')     {         // this map has a prefix         curMap[i]='^0';         formatex(configFile, sizeof(configFile)-1, "%s/maps/prefix_%s.cfg", configDir, curMap);         if (file_exists(configFile))         {             server_cmd("exec %s", configFile);         }     }     get_mapname(curMap, sizeof(curMap)-1)         formatex(configFile, sizeof(configFile)-1, "%s/maps/%s.cfg", configDir, curMap)     if (file_exists(configFile))     {         server_cmd("exec %s", configFile)     }     }

Going by what the admin.sma the code suggests that all prefix based configs are loaded before a map specific configuration.

So I would guess that if you make a map prefix config for de maps then creating a de_nuke configuration would override the prefix config in a matter of seconds later.

To test I would try using mp_timelimit ... set your server config to like 20 minutes. make a prefix_de.cfg and set it to 35 then make a de_nuke.cfg set it to 27 or something in the middle. If you have HLSW then you can most likely watch the changes just by monitoring the server, otherwise you'd have to look in the logs to see if it changed.

Alternatively you could use the log_amx scripting function of AMXX. This would make a lot easier to do cause then you dont have to try the test I mentioned above, and easier to read in the amxx logs.

Code:
public delayed_load() {     new configFile[128], curMap[64], configDir[128]     get_configsdir(configDir, sizeof(configDir)-1)     get_mapname(curMap, sizeof(curMap)-1)     new i=0;         while (curMap[i] != '_' && curMap[i++] != '^0') {/*do nothing*/}         if (curMap[i]=='_')     {         // this map has a prefix         curMap[i]='^0';         formatex(configFile, sizeof(configFile)-1, "%s/maps/prefix_%s.cfg", configDir, curMap);         if (file_exists(configFile))         {             server_cmd("exec %s", configFile);             log_amx("Prefix based configuration file loaded. File is %s", configFile); // Prefix configuration loaded and logged.         }     }     get_mapname(curMap, sizeof(curMap)-1)         formatex(configFile, sizeof(configFile)-1, "%s/maps/%s.cfg", configDir, curMap)     if (file_exists(configFile))     {         server_cmd("exec %s", configFile)         log_amx("Map based configuration file loaded. File is %s", configFile); // Map configuration loaded and logged.     }     }

Edit

And here is your answer
Quote:
L 10/27/2007 - 0629: -------- Mapchange to fy_snow --------
L 10/27/2007 - 062:45: [admin.amxx] Prefix based configuration file loaded. File is addons/amxmodx/configs/maps/prefix_fy.cfg
L 10/27/2007 - 062:45: [admin.amxx] Map based configuration file loaded. File is addons/amxmodx/configs/maps/fy_snow.cfg
But what would be the case for plugin based configurations if the Devs could answer that one?
__________________


Last edited by BigBaller; 10-27-2007 at 07:34. Reason: And his answer is!
BigBaller is offline
Old 10-27-2007, 10:15
Dominion
This message has been deleted by Roach. Reason: General AMXx related support requests go in the support forum. If there is an issue you have found, file a bug report.
Old 10-27-2007, 10:30
ShinG0
This message has been deleted by Roach. Reason: General AMXx related support requests go in the support forum. If there is an issue you have found, file a bug report.
Old 10-27-2007, 10:42
ExKiLL
This message has been deleted by Roach. Reason: General AMXx related support requests go in the support forum. If there is an issue you have found, file a bug report.
Old 10-27-2007, 11:59
Dominion
This message has been deleted by Roach. Reason: General AMXx related support requests go in the support forum. If there is an issue you have found, file a bug report.
BAILOPAN
Join Date: Jan 2004
Old 10-27-2007 , 12:31   Re: AMX Mod X 1.8.0 Released!
#39

We will not be handling any bug reports through the forums. Please post in the bug tracker.

Prefixed map plugin files are not superseded by anything; prefix-de would be loaded after de_nuke.
__________________
egg
BAILOPAN is offline
vittu
SuperHero Moderator
Join Date: Oct 2004
Location: L.A. County, CA
Old 10-27-2007 , 12:55   Re: AMX Mod X 1.8.0 Released!
#40

Was this overlooked: stock const AMXX_VERSION_STR[] = "1.8.0.3660";
or are you keeping that svn form now?
vittu is offline
Send a message via AIM to vittu Send a message via MSN to vittu Send a message via Yahoo to vittu
Closed Thread



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 07:08.


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