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

AMX Mod X 1.8.2 for 2013 HLDS Update


Post New Thread Reply   
 
Thread Tools Display Modes
YamiKaitou
Has a lovely bunch of coconuts
Join Date: Apr 2006
Location: Texas
Old 03-18-2013 , 10:56   Re: AMX Mod X 1.8.2 for 2013 HLDS Update
Reply With Quote #161

This is not a general support thread. Figure out what plugins are crashing and go post in the plugins thread about your issues
__________________
ProjectYami Laboratories

I do not browse the forums regularly anymore. If you need me for anything (asking questions or anything else), then PM me (be descriptive in your PM, message containing only a link to a thread will be ignored).
YamiKaitou is offline
DS
SourceMod Developer
Join Date: Sep 2004
Location: WI, USA
Old 03-18-2013 , 17:14   Re: AMX Mod X 1.8.2 for 2013 HLDS Update
Reply With Quote #162

Quote:
Originally Posted by Chik3n View Post
Hello,

I've got some problems with this AMXX on my listen server.
I play on linux on cs 1.6 with AMXX but a lot of my plugins crash CS without any errors messages. They shut down the game, so i can't see where is the problem

Any ideas ?
If I'm reading this correctly, you're using a listen server on Linux? There is a crashing problem with Metamod 1.20, 1.20-am, and 1.20p on Linux listen servers. Metamod 1.21-am fixes this, so make sure you're running that. If you're still having crashes after that, it's quite possibly a problem with one or more AMXX plugins.

Last edited by DS; 03-18-2013 at 17:16.
DS is offline
Blyte_Scrin
Junior Member
Join Date: Mar 2013
Old 03-18-2013 , 20:29   Re: AMX Mod X 1.8.2 for 2013 HLDS Update
Reply With Quote #163

The main problem I seem to be having with the new amxx and csx/cstrike updates . There is no amxmodx/data/csstats.dat file included in the download for csx/cstrike 1.8.2. it has the csstats.amxx , wincsx.exe only. I have downloaded it from 5 different sources and they are all the missing the csstats.dat file.

This is for the Windows build.

Last edited by Blyte_Scrin; 03-18-2013 at 20:32. Reason: more info
Blyte_Scrin is offline
DS
SourceMod Developer
Join Date: Sep 2004
Location: WI, USA
Old 03-18-2013 , 21:01   Re: AMX Mod X 1.8.2 for 2013 HLDS Update
Reply With Quote #164

If I'm not mistaken, csstats.dat is automatically generated by the csx module on map change or server shutdown if the file doesn't already exist.
DS is offline
Chik3n
Junior Member
Join Date: Jan 2008
Old 03-19-2013 , 02:48   Re: AMX Mod X 1.8.2 for 2013 HLDS Update
Reply With Quote #165

Quote:
Originally Posted by DS View Post
If I'm reading this correctly, you're using a listen server on Linux? There is a crashing problem with Metamod 1.20, 1.20-am, and 1.20p on Linux listen servers. Metamod 1.21-am fixes this, so make sure you're running that. If you're still having crashes after that, it's quite possibly a problem with one or more AMXX plugins.
Sorry for missing informations.

You're right, i'm using a listen server on Linux.
I'm using the latest version of AMXX and metamod (AMXX 1.8.2, metamod 1.21-am)
Some plugins works correctly in contrary of others which crash my game when i run a new game.
But these plugins seems to work correctly on Windows, that's why i don't really understand...

Is there any log file where i can see any error message ?

EDIT :
I've found logs but nothing is writen here... only : "L 03/19/2013 - 08:44:06: -------- Mapchange to bkz_goldbhop --------"

Moreover, i've seen that plugins i've downloaded on this site by this page (http://www.amxmodx.org/compiler.php?...hor=&go=search) works perfectly.
Is anything to do especially to have a plugin listed here ? Specific coding or something that make them "official" ?

Last edited by Chik3n; 03-19-2013 at 03:45.
Chik3n is offline
Chik3n
Junior Member
Join Date: Jan 2008
Old 03-19-2013 , 12:32   Re: AMX Mod X 1.8.2 for 2013 HLDS Update
Reply With Quote #166

Sorry for double post but i've learn a little bit more about my problem.
In the plugin i need actually there is these lines :
Code:
public plugin_modules() {
    require_module("fakemeta");
    require_module("engine");
    require_module("hamsandwich");
    require_module("sockets");
    require_module("orpheu");
}
If i comment them, the plugin works, except a command (executable by a menu) and show me these error :
Code:
L 03/19/2013 - 17:29:21: L 03/19/2013 - 17:37:44: -------- Mapchange to bruderkz_runbhop_ez -------- 
L 03/19/2013 - 17:37:44: [ORPHEU] Function "InstallGameRules" not found 
L 03/19/2013 - 17:37:44: [AMXX] Displaying debug trace (plugin "kz_demo.amxx") 
L 03/19/2013 - 17:37:44: [AMXX] Run time error 10: native error (native "OrpheuGetFunction") 
L 03/19/2013 - 17:37:44: [AMXX]    [0] kz_demo.sma::plugin_precache (line 240) 
Warning: Couldn't get duration of phrase 'sound\radio\bot\cooked\well_cover_you_you_defuse.wav' 
[AMXX] Loaded 1 admin from file 
L 03/19/2013 - 17:37:45: [ORPHEU] Memory structure doesn't have a library defined 
L 03/19/2013 - 17:37:45: [AMXX] Displaying debug trace (plugin "kz_demo.amxx") 
L 03/19/2013 - 17:37:45: [AMXX] Run time error 10: native error (native "OrpheuMemorySetAtAddress") 
L 03/19/2013 - 17:37:45: [AMXX]    [0] kz_demo.sma::fnRestartRound (line 1569) 
L 03/19/2013 - 17:37:45: [AMXX]    [1] kz_demo.sma::plugin_cfg (line 251)
So, i can deduce that my orpheu module is bugged. Nevertheless, i've downloaded it from your site to be sure that it is the most recent version without bugs. Maybe there is a compatibility problem with linux ?

What do you think of it ?

Last edited by Chik3n; 03-19-2013 at 12:36.
Chik3n is offline
^SmileY
Veteran Member
Join Date: Jan 2010
Location: Brazil [<o>]
Old 03-19-2013 , 12:46   Re: AMX Mod X 1.8.2 for 2013 HLDS Update
Reply With Quote #167

Ask in the plugin thread there isn't a support thread.
__________________
Projects:

- See my Git Hub: https://github.com/SmileYzn
PHP Code:
set_pcvar_num(pCvar, !get_pcvar_num(pCvar)); 
^SmileY is offline
Send a message via MSN to ^SmileY Send a message via Skype™ to ^SmileY
Jhob94
AMX Mod X Donor
Join Date: Jul 2012
Location: Siiiiiiiiuu
Old 03-20-2013 , 13:36   Re: AMX Mod X 1.8.2 for 2013 HLDS Update
Reply With Quote #168

I think i found my problem:
[S_API FAIL] SteamAPI_Init() failed; SteamAPI_IsSteamRunning() failed.
Setting breakpad minidump AppID = 30
dlopen failed trying to load:
/data/dedigames/dedigame91/.steam/sdk32/steamclient.so
with error:
/data/dedigames/dedigame91/.steam/sdk32/steamclient.so: cannot open shared object file: No such file or directory
Looking up breakpad interfaces from steamclient
Calling BreakpadMiniDumpSystemInit
__________________

Last edited by Jhob94; 03-20-2013 at 14:09.
Jhob94 is offline
YamiKaitou
Has a lovely bunch of coconuts
Join Date: Apr 2006
Location: Texas
Old 03-20-2013 , 14:38   Re: AMX Mod X 1.8.2 for 2013 HLDS Update
Reply With Quote #169

I don't see any issue there
__________________
ProjectYami Laboratories

I do not browse the forums regularly anymore. If you need me for anything (asking questions or anything else), then PM me (be descriptive in your PM, message containing only a link to a thread will be ignored).
YamiKaitou is offline
Jhob94
AMX Mod X Donor
Join Date: Jul 2012
Location: Siiiiiiiiuu
Old 03-20-2013 , 15:21   Re: AMX Mod X 1.8.2 for 2013 HLDS Update
Reply With Quote #170

Well, i think is that because that is the only error on console when server kicks players with steam validation rejected.
And even if i delete folder addons that message continues displaying and dont let player joins. Maybe something wrong in liblist
__________________
Jhob94 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 22:46.


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