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

Having trouble with a plugin for Counter-Strike. Please help


Post New Thread Reply   
 
Thread Tools Display Modes
blinky
Member
Join Date: Jun 2005
Old 12-21-2005 , 11:11  
Reply With Quote #11

it should work for all mods.

if it says 20/20 then all the plugins listed in the in the plugins.ini are running

for example if you just type

asdfasdfa.amxx

it would say

bad load bad load asdfasdfa.amxx bad load

it IS possible that when you edited you plugins.ini you ftp client (whatever you use) didnt update the remote file but simply updated a copy of the file stored locally. check and make sure you actually edited it. also make sure you didnt comment it for some reason (a ; in front of the line)

edit: debug will basically give you details on an error instead of just saying 'there is an error'
blinky is offline
Miggie
Junior Member
Join Date: May 2005
Location: Michigan
Old 12-21-2005 , 11:33  
Reply With Quote #12

I checked the list of the 20 plugins in the game console when I type amx_plugins, and the nvx_3rdperson.amxx plugin isn't there.

I also checked the line in the plugins.ini file and there's no ";" infront of the line.

[quote]It IS possible that when you edited you plugins.ini you ftp client (whatever you use) didnt update the remote file but simply updated a copy of the file stored locally. check and make sure you actually edited it. also make sure you didnt comment it for some reason (a ; in front of the line)
Quote:



I don't understand any of this, you have to explain it like you're talking to an alien (because I'm not any good with this kind of computer stuff)

Please try to explain it out for me to understand, that would be awesome!

-Miggie
Miggie is offline
Miggie
Junior Member
Join Date: May 2005
Location: Michigan
Old 12-21-2005 , 11:34  
Reply With Quote #13

HAHAHAHA, sorry for the error in typing. I new to this, lol.


-Miggie
Miggie is offline
Kensai
Veteran Member
Join Date: Aug 2005
Location: San Diego, California
Old 12-21-2005 , 11:42  
Reply With Quote #14

Assuming you have a rented server, and you use FTP to edit the server.

Blinky is suggesting that maybe your ftp client did NOT save the updated files.

1. Try getting CuteFTP (nice ftp client, works great).

2. Please post your plugins.ini

3. Also, please check to make sure you have the correct modules enabled.

Code:
#include <amxmodx> #include <amxmisc> #include <engine>

This means you need the "engine" module enabled for this plugin.

To enable modules open up your "modules.ini" located in the configs folder. Should looks something like this:

Quote:
; 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
Notice how I enabled the Engine module .dll by "uncommenting" it. this means you remove the ";" from infront. Like disabling/enabling a plugin.

BUT, most server companies run Linux. SOOOOOO instead of enabling the "engine.dll" you need to enable the Linux version. ";engine_amxx_amd64.so"
Kensai is offline
Send a message via AIM to Kensai Send a message via MSN to Kensai
Miggie
Junior Member
Join Date: May 2005
Location: Michigan
Old 12-21-2005 , 12:44  
Reply With Quote #15

Well, I play mostly LAN with friends. So I think that means that I have a Listen server. And I don't even know what FTP is. But I'll try what you said, and thanks for making sense of what that guy said .

-Miggie

P.S. I'll reply when I've tried what you said about enabling the engine of it already hasn't been.
Miggie is offline
Miggie
Junior Member
Join Date: May 2005
Location: Michigan
Old 12-21-2005 , 12:53  
Reply With Quote #16

I have enabled the engine (I think) and made a LAN game. Then I typed amx_nvx_3rdperson Miggie into the console... still "Unknown command."



Here's what my modules.ini file looks like:

; 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

Hope this can help,
Miggie
Miggie is offline
Miggie
Junior Member
Join Date: May 2005
Location: Michigan
Old 12-21-2005 , 14:32  
Reply With Quote #17

Maybe I should just get a different one. Like the amx_view one; Where you can switch between 1st person, up left (over the shoulder Resident Evil 4 style), top (bird's eye view). But it can't be given to other players. Oh well. I'll keep checking back at this forum if anyone finds out the problem.



Thanks for all your time & help,
Miggie
Miggie is offline
Kensai
Veteran Member
Join Date: Aug 2005
Location: San Diego, California
Old 12-21-2005 , 15:25  
Reply With Quote #18

Ok, so you don't have a rented server.

I'm assuming you run Windows?

If so your modules.ini should look like so.

Quote:
; 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
Kensai is offline
Send a message via AIM to Kensai Send a message via MSN to Kensai
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 09:15.


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