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

Godmode and Noclip


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
F|4THeAd
Member
Join Date: Jan 2005
Old 09-04-2005 , 22:25   Godmode and Noclip
Reply With Quote #1

Hello.
For some reason, both plugins, amx_godmode and amx_noclip read as 'Bad load' in the plugins list and do not work. I cannot find plugins for godmode and noclip anywhere in this forum. All I can find is the AIO plugin which only works for Counter-Strike.

Can anyone provide me with plugins for godmode and noclip?

Thanks,

- F|4THeAd
F|4THeAd is offline
Dr_Knuckles
AlliedModders Donor
Join Date: Mar 2005
Location: SW Florida
Old 09-04-2005 , 22:36  
Reply With Quote #2

Show us your modules.ini
__________________
Dr_Knuckles is offline
F|4THeAd
Member
Join Date: Jan 2005
Old 09-05-2005 , 02:43  
Reply With Quote #3

; 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

; -----------------------------------------------------------
; The Specialists X - adds functions and stats specific to TS
; -----------------------------------------------------------
tsx_amxx_i386.so
tsx_amxx.dll
tsx_amxx_amd64.so

; -----------------------------------------------------------
; The Specialists Fun - more functionality
; -----------------------------------------------------------
tsfun_amxx_i386.so
tsfun_amxx.dll
tsfun_amxx_amd64.so
F|4THeAd is offline
Dr_Knuckles
AlliedModders Donor
Join Date: Mar 2005
Location: SW Florida
Old 09-05-2005 , 02:46  
Reply With Quote #4

Well I dunno why they aren't working, but I can say that you probably have too many modules enabled. Why would you have all of those?
__________________
Dr_Knuckles is offline
F|4THeAd
Member
Join Date: Jan 2005
Old 09-05-2005 , 12:49  
Reply With Quote #5

I didn't before, but my clanmate who writes amxx plugins told me there's no harm in having them all on.

EDIT:

I just realized 2 lines I missed before:

Load fails: Module "cstrike" required for plugin. Check modules.ini.
Load fails: Module "cstrike" required for plugin. Check modules.ini.

Why were they working before?
F|4THeAd is offline
Proach
Veteran Member
Join Date: Jan 2005
Location: The Netherlands
Old 09-05-2005 , 15:28  
Reply With Quote #6

eehm.. cause you did had cstrike?
or maybe they just used other functions.. I don;t know
__________________

www.psmod.net (the better psychostats)
PAOL
Proach is offline
Send a message via ICQ to Proach
F|4THeAd
Member
Join Date: Jan 2005
Old 09-06-2005 , 02:01  
Reply With Quote #7

Well, if anyone can fix it, here are the .sma files

Code:
/* AMX Mod script. * * (c) Copyright 2002-2003, f117bomb * This file is provided as is (no warranties). */   #include <amxmod> #include <amxmisc> /* * Usage: amx_godmode <authid, nick, @team or #userid> <0=OFF 1=ON> * Examples: * amx_godmode @CT 1             - Sets Godmode on Counter-Terrorists * amx_godmode @CT 0             - Removes Godmode on Counter-Terrorists */ public admin_godmode(id,level,cid) {     if (!cmd_access(id,level,cid,3))         return PLUGIN_HANDLED     new arg[32], arg2[8], name2[32]     read_argv(1,arg,31)     read_argv(2,arg2,7)     get_user_name(id,name2,31)     if (arg[0]=='@'){         new players[32], inum         get_players(players,inum,"ae",arg[1])         if (inum==0){             console_print(id,"No clients in such team")             return PLUGIN_HANDLED         }         for(new a=0;a<inum;++a) {             set_user_godmode(players[a],str_to_num(arg2))         }               switch(get_cvar_num("amx_show_activity"))   {             case 2: client_print(0,print_chat,"ADMIN %s: set godmode on all %s",name2,arg[1])             case 1: client_print(0,print_chat,"ADMIN: set godmode on all %s",arg[1])             }         console_print(id,"All clients have set godmode")     }     else {         new player = cmd_target(id,arg,3)         if (!player) return PLUGIN_HANDLED         set_user_godmode(player,str_to_num(arg2))         new name[32]         get_user_name(player,name,31)         switch(get_cvar_num("amx_show_activity"))   {             case 2: client_print(0,print_chat,"ADMIN %s: set godmode on %s",name2,name)             case 1: client_print(0,print_chat,"ADMIN: set godmode on %s",name)             }         console_print(id,"Client ^"%s^" has set godmode",name)     }     return PLUGIN_HANDLED   } public plugin_init() {       register_plugin("Admin Godmode","0.9.3","f117bomb")       register_concmd("amx_godmode","admin_godmode",ADMIN_LEVEL_A,"<authid, nick, @team or #userid> <0=OFF 1=ON>")       return PLUGIN_CONTINUE   }

Code:
/* AMX Mod script. * * (c) Copyright 2002-2003, f117bomb * This file is provided as is (no warranties). */   #include <amxmod> #include <amxmisc> /* * Usage: amx_noclip <authid, nick, @team or #userid> <0=OFF 1=ON> * Examples: * amx_noclip @CT 1             - Sets noclip on Counter-Terrorists * amx_noclip @CT 0             - Removes noclip on Counter-Terrorists */ public admin_noclip(id,level,cid) {     if (!cmd_access(id,level,cid,3))         return PLUGIN_HANDLED     new arg[32], arg2[8], name2[32]     read_argv(1,arg,31)     read_argv(2,arg2,7)     get_user_name(id,name2,31)     if (arg[0]=='@'){         new players[32], inum         get_players(players,inum,"ae",arg[1])         if (inum==0){             console_print(id,"No clients in such team")             return PLUGIN_HANDLED         }         for(new a=0;a<inum;++a) {             set_user_noclip(players[a],str_to_num(arg2))         }               switch(get_cvar_num("amx_show_activity"))   {                 case 2: client_print(0,print_chat,"ADMIN %s: set noclip on all %s",name2,arg[1])                 case 1: client_print(0,print_chat,"ADMIN: set noclip on all %s",arg[1])             }         console_print(id,"All clients have set noclip")     }     else {         new player = cmd_target(id,arg,7)         if (!player) return PLUGIN_HANDLED         set_user_noclip(player,str_to_num(arg2))         new name[32]         get_user_name(player,name,31)         switch(get_cvar_num("amx_show_activity"))   {                 case 2: client_print(0,print_chat,"ADMIN %s: set noclip on %s",name2,name)                 case 1: client_print(0,print_chat,"ADMIN: set noclip on %s",name)             }         console_print(id,"Client ^"%s^" has set noclip",name)     }     return PLUGIN_HANDLED   } public plugin_init() {       register_plugin("Admin Noclip","0.9.3","f117bomb")       register_concmd("amx_noclip","admin_noclip",ADMIN_LEVEL_A,"<authid, nick, @team or #userid> <0=OFF 1=ON>")       return PLUGIN_CONTINUE   }

If anyone can patch em up, that would be great.
F|4THeAd 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 16:12.


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