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

Need some help


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Speed|Ninja
Junior Member
Join Date: Jan 2007
Old 01-21-2007 , 23:49   Need some help
Reply With Quote #1

Alright having taken some time to try and figure out the whole Modules.ini deal out myself, i still have not been able to figure out, Cstrike is missing offa the servers modules.ini file and it runs Counterstrike thats the only thing i can figure out

Also for a bit of clarity

; ------------------------------

; Fun - provides extra functions

; ------------------------------

fun_amxx_i386.so

fun_amxx.dll

fun_amxx_amd64.so

That being laid out like how it is, would that happen to be the correct format if so please correct me so i might get past this tad bit of an aggitation.
Speed|Ninja is offline
godlike
Senior Member
Join Date: Apr 2005
Old 01-22-2007 , 13:39   Re: Need some help
Reply With Quote #2

; ----------------------------------------------------------
; Counter-Strike - adds functions specific to Counter-Strike
; ----------------------------------------------------------
cstrike_amxx_i386.so
cstrike_amxx.dll
cstrike_amxx_amd64.so

add that in your modules.ini
__________________
Read the rules before posting something stupid: click here

Any questions about amxx PM me
godlike is offline
Speed|Ninja
Junior Member
Join Date: Jan 2007
Old 01-22-2007 , 15:32   Re: Need some help
Reply With Quote #3

Did add that line, still isn't working thats what not makes no sense, last night after making this post i went and downloaded the AMX Mod X v1.76 and went into its modules files and snagged the Cstrike files rom there and uploaded them to the server, still isn't working even thought files are located in there properly and i've configed everything right.
Speed|Ninja is offline
Speed|Ninja
Junior Member
Join Date: Jan 2007
Old 01-22-2007 , 15:37   Re: Need some help
Reply With Quote #4

Hmmmm now that i think about it i forgot to add a single file last night the .dll wasn't sure if i should've added it or not could be the reason why lol.

Give me some time till later on and i will post back the results when i get around to checking that part out, might just be that lol, but yeah At school ATM finishing up some Statistics assignments.
Speed|Ninja is offline
vvg125
AMX Mod X Beta Tester
Join Date: Dec 2006
Location: Queens (Douglaston), New
Old 01-22-2007 , 18:49   Re: Need some help
Reply With Quote #5

Did you actually put in the cstrike_amxx.dll module?
__________________
vvg125 is offline
Send a message via AIM to vvg125 Send a message via MSN to vvg125 Send a message via Yahoo to vvg125
Speed|Ninja
Junior Member
Join Date: Jan 2007
Old 01-22-2007 , 20:49   Re: Need some help
Reply With Quote #6

No i didn't havin checked it i missed and fergot o add the file.
Speed|Ninja is offline
Speed|Ninja
Junior Member
Join Date: Jan 2007
Old 01-22-2007 , 23:09   Re: Need some help
Reply With Quote #7

Alright even with the file in place it is still not working my Modules files are laid out like this

; AMX Mod X Modules

; You can specify both linux & win32 modules here

; To enable a module, remove the semi-colon from the line


; ------------------------------

; Fun - provides extra functions

; ------------------------------

fun_amxx_i386.so

fun_amxx.dll

fun_amxx_amd64.so


; ----------------------------------------------------

; Engine - provides engine functions core to Half-Life

; ----------------------------------------------------

engine_amxx_i386.so

engine_amxx.dll

engine_amxx_amd64.so


; ----------------------------------------------------------

; Fakemeta - provides a massive interface into the HL engine

; ----------------------------------------------------------

fakemeta_amxx_i386.so

fakemeta_amxx.dll

fakemeta_amxx_amd64.so


; -------------------------------------------

; Database Access - only enable one of these

; -------------------------------------------

; MySQL

;mysql_amxx_i386.so

;mysql_amxx.dll

;mysql_amxx_amd64.so

; PostgreSQL

;pgsql_amxx_i386.so

;pgsql_amxx.dll

; Microsoft SQL

;mssql_amxx.dll

; SQLite

;sqlite_amxx.dll

;sqlite_amxx_i386.so

;sqlite_amxx_amd64.so


; ---------------------------------------------

; GeoIP - determines the country of ip adresses

; ---------------------------------------------

geoip_amxx_i386.so

geoip_amxx.dll

geoip_amxx_amd64.so


; --------------------------------

; Sockets - network socket support

; --------------------------------

sockets_amxx_i386.so

sockets_amxx.dll

sockets_amxx_amd64.so


; --------------------------

; Regular Expression support

; --------------------------

regex_amxx_i386.so

regex_amxx.dll

regex_amxx_amd64.so


; --------------------

; Binary Vault support

; --------------------

;nvault_amxx_i386.so

;nvault_amxx.dll

;nvault_amxx_amd64.so


; ----------------------------------------------------------

; Counter-Strike - adds functions specific to Counter-Strike

; ----------------------------------------------------------

cstrike_amxx_i386.so

cstrike_amxx.dll

cstrike_amxx_amd64.so

Last edited by Speed|Ninja; 01-22-2007 at 23:11.
Speed|Ninja is offline
vvg125
AMX Mod X Beta Tester
Join Date: Dec 2006
Location: Queens (Douglaston), New
Old 01-23-2007 , 00:57   Re: Need some help
Reply With Quote #8

Why don't you actually install the full cstrike addon and not just add one or two files...
__________________
vvg125 is offline
Send a message via AIM to vvg125 Send a message via MSN to vvg125 Send a message via Yahoo to vvg125
Roach
Writes love letters to sawce Daily
Join Date: Jul 2006
Location: Internet
Old 01-23-2007 , 13:46   Re: Need some help
Reply With Quote #9

Oy Vey...

Lets start from the beginning here...as all of those files in modules.ini are not needed to be active.

1) When AMXX is installed and you want to run this (UAIO) plugin you must have the cstrike files installed. Download the latest AMXX installer (1.76c) and point it to your FTP and have the core files plus the cstrike files installed there.

2) Each one of those .dll / .so extensions are for a different platform. Having them all enabled is pointless.

If you are running a Windows server you should only have the .dll uncommented. The other two should be commented, so it would look like this in the case of the Counter-Strike module:

Code:
; ----------------------------------------------------------
; Counter-Strike - adds functions specific to Counter-Strike
; ----------------------------------------------------------
; cstrike_amxx_i386.so
cstrike_amxx.dll
; cstrike_amxx_amd64.so
If you are running a Linux server you should be using the i386.so OR the amd64.so. Use the i386 if your server is running on a processor OTHER than the amd64 processor. For a server running Linux on a non-amd64 processor, your modules.ini should look like this:

Code:
; ----------------------------------------------------------
 ; Counter-Strike - adds functions specific to Counter-Strike
 ; ----------------------------------------------------------
cstrike_amxx_i386.so
 ; cstrike_amxx.dll
 ; cstrike_amxx_amd64.so
So to recap here:
If you are running a windows server you should not have any .so files uncommented, as they are not used. Only the .dll file should be uncommented.

And obviously if you arent using a database or anything like that you dont need to uncomment anything in the Database section of the modules.ini.
Roach is offline
Speed|Ninja
Junior Member
Join Date: Jan 2007
Old 01-23-2007 , 14:58   Re: Need some help
Reply With Quote #10

aight, lol still havn't gotten it working yet, imma check with our clan leader and see what he thinks since he pays for the server, if he's cool with it ill have the server stopped while i reinstall Amxx
Speed|Ninja 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:53.


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