AMXmod plugin help

Lost in space
Banned
πŸ’» Oldtimer
Joined
Dec 21, 2003
Messages
3,608
Best answers
0
well , i seem to be running into amx plug troubles myself :(
----------------------------------------------------------------
; AMX Mod X plugins

; Admin Base - Always one has to be activated
admin.amxx ; admin base (required for any admin-related)
;admin_sql.amxx ; admin base - SQL version (comment admin.amxx)

; Basic
admincmd.amxx ; basic admin console commands
adminhelp.amxx ; help command for admin console commands
adminslots.amxx ; slot reservation
multilingual.amxx ; Multi-Lingual management

; Menus
menufront.amxx ; front-end for admin menus
cmdmenu.amxx ; command menu (speech, settings)
plmenu.amxx ; players menu (kick, ban, client cmds.)
;telemenu.amxx ; teleport menu (Fun Module required!)
mapsmenu.amxx ; maps menu (vote, changelevel)

; Chat / Messages
adminchat.amxx ; console chat commands
antiflood.amxx ; prevent clients from chat-flooding the server
scrollmsg.amxx ; displays a scrolling message
imessage.amxx ; displays information messages
adminvote.amxx ; vote commands

; Map related
nextmap.amxx ; displays next map in mapcycle
mapchooser.amxx ; allows to vote for next map
timeleft.amxx ; displays time left on map

; Configuration
pausecfg.amxx ; allows to pause and unpause some plugins
statscfg.amxx ; allows to manage stats plugins via menu and commands


; Custom - Add 3rd party plugins here

giji_ssj.amxx
swoop_trails.amxx
-----------------------------------------------------------
^ my plugins.ini

-----------------------------------------------------------
// AMX Configuration File
echo Executing AMX Mod X Configuration File

// Default access for all non admin players (see users.ini for access details)
amx_default_access "z"

// Name of setinfo which should store a password on a client (you should change this)
// (Example: setinfo _pw "password")
amx_password_field "_pw"

// Mode of logging to a server
// 0 - disable logging, players won't be checked (and access won't be set)
// 1 - normal mode which obey flags set in accounts
// 2 - kick all players not on list
amx_mode 1

// Show admins activity
// 0 - disabled
// 1 - show without admin name
// 2 - show with name
amx_show_activity 2

// Frequency in seconds and text of scrolling message
amx_scrollmsg "Welcome to %hostname% -- This server is using AMX Mod X" 600

// Center typed colored messages (last parameter is a color in RRRGGGBBB format)
amx_imessage "Welcome to %hostname%" "000255100"
amx_imessage "This server is using AMX Mod X\nVisit http://www.amxmodx.org" "000100255"

// Frequency in seconds of colored messages
amx_freq_imessage 180

// Set in seconds how fast players can chat (chat-flood protection)
amx_flood_time 0.75

// Amount of reserved slots (for more details see comments in a plugin source)
amx_reservation 0

// Displaying of time remaining
// a - display white text on bottom
// b - use voice
// c - don't add "remaining" (only in voice)
// d - don't add "hours/minutes/seconds" (only in voice)
// e - show/speak if current time is less than this set in parameter
amx_time_display "ab 1200" "ab 600" "ab 300" "ab 180" "ab 60" "bcde 11"

// Announce "say thetime" and "say timeleft" with voice
amx_time_voice 1

// Minimum delay in seconds between two voting sessions
amx_vote_delay 10

// How long voting session goes on
amx_vote_time 10

// Display who votes for what option
amx_vote_answers 1

// Some ratios for voting success
amx_votekick_ratio 0.40
amx_voteban_ratio 0.40
amx_votemap_ratio 0.40
amx_vote_ratio 0.02

// Max. time to which map can be extended
amx_extendmap_max 90

// Step for each extending
amx_extendmap_step 15

//If you set this to 0, clients cannot chose their language
amx_client_languages 1

// Plugin Debug mode
// 0 - No debugging (garbage line numbers)
// 1 - Plugins with "debug" option in plugins.ini are put into debug mode
// 2 - All plugins are put in debug mode
// Note - debug mode will affect JIT performance
amx_debug 1
----------------------------------------------------------------
my amxx cfg

at first i whored the amxx installation off the evm instal (me doesn't like evm)l and got no where. So i dled the curent version of amxmodx. I can tell it's working as it displays my server name in game like on most servers taht say in game "this server is using amxmodx" and stuff

can anyone help me :( ?
 
New Member
β˜… Black Lounger β˜…
πŸ’» Oldtimer
Joined
Apr 15, 2003
Messages
4,628
Best answers
0
heh i had the same problem, go to the modules.ini and enable fakemeta/engine/fun dlls by removing the ; by them =P thanks to SSJGoku83 for telling me that
 
Lost in space
Banned
πŸ’» Oldtimer
Joined
Dec 21, 2003
Messages
3,608
Best answers
0
Davidskiwan said:
heh i had the same problem, go to the modules.ini and enable fakemeta/engine/fun dlls by removing the ; by them =P thanks to SSJGoku83 for telling me that
Do you know where i can obtqain the fakemeta module , i don't seem to have it in any of my amxx related folders :( Are these installed by default with amxx ?
 
ESF Head Team Mapper
πŸ‘‘ Administrator
🌠 Staff
βœ”οΈ HL Verified
πŸš‚ Steam Linked
πŸ‚ Regular
Joined
Dec 25, 2001
Messages
3,619
Best answers
0
Location
Germany
err .. fakemeta should be default...
 
Lost in space
Banned
πŸ’» Oldtimer
Joined
Dec 21, 2003
Messages
3,608
Best answers
0
oh ah my mistake >_.
--------------------------
; 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

; ------------------------------------
; Array - advanced arrays in scripting
; ------------------------------------
;array_amxx_i386.so
;array_amxx.dll
;array_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
------------------------------
Like that , or do i need to remove more of those evil ;

EDIT :
-----------
; AMX Mod X plugins

; Admin Base - Always one has to be activated
admin.amxx ; admin base (required for any admin-related)
;admin_sql.amxx ; admin base - SQL version (comment admin.amxx)

; Basic
admincmd.amxx ; basic admin console commands
adminhelp.amxx ; help command for admin console commands
adminslots.amxx ; slot reservation
multilingual.amxx ; Multi-Lingual management

; Menus
menufront.amxx ; front-end for admin menus
cmdmenu.amxx ; command menu (speech, settings)
plmenu.amxx ; players menu (kick, ban, client cmds.)
;telemenu.amxx ; teleport menu (Fun Module required!)
mapsmenu.amxx ; maps menu (vote, changelevel)

; Chat / Messages
adminchat.amxx ; console chat commands
antiflood.amxx ; prevent clients from chat-flooding the server
scrollmsg.amxx ; displays a scrolling message
imessage.amxx ; displays information messages
adminvote.amxx ; vote commands

; Map related
nextmap.amxx ; displays next map in mapcycle
mapchooser.amxx ; allows to vote for next map
timeleft.amxx ; displays time left on map

; Configuration
pausecfg.amxx ; allows to pause and unpause some plugins
statscfg.amxx ; allows to manage stats plugins via menu and commands


; Custom - Add 3rd party plugins here
swoop_trails.amxx
---------------------
should i add some : to the custom plugs ?
 
ESF Head Team Mapper
πŸ‘‘ Administrator
🌠 Staff
βœ”οΈ HL Verified
πŸš‚ Steam Linked
πŸ‚ Regular
Joined
Dec 25, 2001
Messages
3,619
Best answers
0
Location
Germany
; Custom - Add 3rd party plugins here = plugins you want to add ... you dont need to add stuff there if u dont have custom plugins.
 
Lost in space
Banned
πŸ’» Oldtimer
Joined
Dec 1, 2002
Messages
2,725
Best answers
0
Well, I narrowed Overlord's problem down to AMXX not loading up any of his plugins, despite his modules file and dir along with his plugins file and dir being set up right. =E

Here's my config files for my (semi) dedicated Sven Co-Op server, maybe they can help.
modules.ini plugins.ini
 
Lost in space
Banned
πŸ’» Oldtimer
Joined
Dec 21, 2003
Messages
3,608
Best answers
0
well that solved most of my problem , but acording to my console it says my custom plugs are a bad load :(
 
Active Member
β˜… Black Lounger β˜…
βœ”οΈ HL Verified
πŸ’» Oldtimer
Joined
Jul 14, 2002
Messages
8,229
Best answers
0
Location
December
Read all the posts in the thread and it should tell you your answer probably
 
Lost in space
Banned
πŸ’» Oldtimer
Joined
Dec 21, 2003
Messages
3,608
Best answers
0
Works now , just forgot to get rid of a few ; :) Thnx for the help
 
Active Member
β˜… Black Lounger β˜…
βœ”οΈ HL Verified
πŸ’» Oldtimer
Joined
Jul 14, 2002
Messages
8,229
Best answers
0
Location
December
And.. why did you post here? Read the news or create a thread.
 
New Member
Joined
Dec 27, 2005
Messages
1
Best answers
0
Note: (to dReAm KiLIer)
You might want to stop useing AMX mod and update to AMXx. AMX mod is dead. The developer QUIT. These people took the code, with OLO's permission I add, and are makeing a much better job than OLO did. They've fixed several memory leak and memory allocation problem. This team is moveing faster than OLO would permit. You should take a look into it.
I know this post has been here a while but i just thought i would point out that AMX is far from dead, if anyone does look it may have taken a while with the lack of people but they are still continuing to update and do have a very computer friendly 1.0 Beta out and if you find a bug / problem with it they reply quite fast.

Edit: As well as these new AMXX plugins that are coming out like bouncing beams etc are quiet easy to convert to AMX and now that i thought about it i got a little job to do :p Dont get me wrong AMXX has made leaps and bounds but have always used AMX.
 
New Member
Joined
Mar 15, 2005
Messages
2
Best answers
0
Sorry for stupid question and my English, but i have a question. I instaled AMX 1.6 mod and when i tryed to transform to ssj2, power surounds me, it looks like i will transform, but I waited about 5min. but nothing. When i press "X", i cant transform even to ssj1 or back to normal. Can anyone help me please.
 
Active Member
β˜… Black Lounger β˜…
βœ”οΈ HL Verified
πŸ’» Oldtimer
Joined
Jul 14, 2002
Messages
8,229
Best answers
0
Location
December
XLord2 said:
Sorry for stupid question and my English, but i have a question. I instaled AMX 1.6 mod and when i tryed to transform to ssj2, power surounds me, it looks like i will transform, but I waited about 5min. but nothing. When i press "X", i cant transform even to ssj1 or back to normal. Can anyone help me please.
ESF Forums don't support evm o.o
http://www.corona-bytes.net/?core=evm
 
Base belongs to me.
πŸ‘‘ Administrator
🌠 Staff
βœ”οΈ HL Verified
πŸš‚ Steam Linked
πŸ’ŽLΓ©géñdārΓ½
Joined
Nov 30, 2002
Messages
10,867
Best answers
0
Location
Netherlands
Sean, *shrugs*. I thought it wasn't allowed to advertise to EVM website (only through sticky link) Besides that point, EVM does not supports AMXX v1.6. It only supports v1.0
 
Active Member
β˜… Black Lounger β˜…
βœ”οΈ HL Verified
πŸ’» Oldtimer
Joined
Jul 14, 2002
Messages
8,229
Best answers
0
Location
December
FF|Skyrider said:
Sean, *shrugs*. I thought it wasn't allowed to advertise to EVM website (only through sticky link) Besides that point, EVM does not supports AMXX v1.6. It only supports v1.0
That's not advertising, it's called directing someone where to ask help in the right place ;o

And to whoever said I shouldn't use AMX anymore. I know. This was before they released the custom mod tools (I think? o_O) and I couldn't get it working. Apparently they added a EXE that extracted a folder called AMXX and it allowed me to use plugins. And I don't use them anymore because I don't have my Dedicated Server installed anymore. I migh get it installed again once I get my internet working on my other box so i can get linux installed and run servers and stuff with AMXX ;o
 
Base belongs to me.
πŸ‘‘ Administrator
🌠 Staff
βœ”οΈ HL Verified
πŸš‚ Steam Linked
πŸ’ŽLΓ©géñdārΓ½
Joined
Nov 30, 2002
Messages
10,867
Best answers
0
Location
Netherlands
Mostly all ESF servers already have the latest AMXX version installed. (v1.6), i hope a new version will be released first, they promised i thought at newyear. Its been over that.
 

Users who are viewing this thread

Top Bottom