←  Szukam pluginu

AMXX.pl: Support AMX Mod X i SourceMod

»

Anty crash

Zablokowany

  • +
  • -
KL279 - zdjęcie KL279 04.12.2010

Witam

Ostatno nie tylko na moich serwerach dzieci bawią się komendą kraszującą więc moje pytanie brzmi:
Czy jest plugin blokujacy tą komende czy skrypt? Bardzo mało ludzi u mnie przez to gra.

Pozdrawiam
Mr. Death
Odpowiedz

  • +
  • -
mgr inż. Pavulon - zdjęcie mgr inż. Pavulon 04.12.2010

Masz Dproto ? Jaka wersja ? Daj też listę pluginów i modułów.
Odpowiedz

  • +
  • -
Pittero - zdjęcie Pittero 04.12.2010

Jak ta komenda ?
Odpowiedz

  • +
  • -
KL279 - zdjęcie KL279 04.12.2010

To jest plugins.ini FFA do war3 nie mam dostępu a jezeli chodzi o Dproto to nie wiem bo wgrywałem gotowca z netshoot tylko dodałem pare pluginów:
; 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)
pluginmenu.amxx ; Menus for commands/cvars organized by plugin

; 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

; Counter-Strike
;restmenu.amxx ; restrict weapons menu
statsx.amxx ; stats on death or round end (CSX Module required!)
;miscstats.amxx ; bunch of events announcement for Counter-Strike
;stats_logging.amxx ; weapons stats logging (CSX Module required!)

; Enable to use AMX Mod plugins
;amxmod_compat.amxx ; AMX Mod backwards compatibility layer

; Custom - Add 3rd party plugins here


Automaticknifeduel.amxx

ultimate_sounds.amxx

afkkisss.amxx

wybor_interpu.amxx

admin_freelook.amxx

adminslots.amxx

amx_ssban.amxx

polski_cs.amxx


admin_check.amxx

snow_or_rain.amxx
snow.amxx


modules.ini:

;;;
; To enable a module, remove the semi-colon (;) in front of its name.
; If it's not here, simply add it its name, one per line.
; You don't need to write the _amxx part or the file extension.
;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; SQL Modules usually need to be enabled manually ;;
;; You can have any number on at a time. Use ;;
;; amx_sql_type in sql.cfg to specify the default ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;mysql
;sqlite

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Put third party modules below here. ;;
;; You can just list their names, without the _amxx ;;
;; or file extension. ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;



;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; These modules will be auto-detected and loaded ;;
;; as needed. You do not need to enable them here ;;
;; unless you have problems. ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

fun
;engine
;fakemeta
;geoip
;sockets
;regex
;nvault
cstrike
csx
;hamsandwich

Użytkownik KL279 edytował ten post 04.12.2010 12:22
Odpowiedz

gameman - zdjęcie gameman 04.12.2010

"dzieci bawia sie komenda" Ale wiesz po tych slowach my sie niedomyslimy jaka komenda sie bawia ? jaka to komenda? znam mozliwosc zablokowania kazdej komendy na servie taki prosty plugin napisal mi uzytkownik tego forum.
Użytkownik gameman edytował ten post 04.12.2010 13:13
Odpowiedz

  • +
  • -
mgr inż. Pavulon - zdjęcie mgr inż. Pavulon 04.12.2010

meta list
w konsoli.
znając życie masz dproto 0.3.x czy 0.4.x gdzie nie było kilku zabezpieczeń przed crash'ami

Skorzystaj z Dproto [0.9.87] - Instalacja i konfiguracja (Non Steam + Steam) - Nieoficjalny polski support AMX Mod X
Odpowiedz

gameman - zdjęcie gameman 04.12.2010

najlepiej gdybys zrobil jak pisal pavulon ale jezeli ci sie niechce to sproboj:
#include <amxmodx>

public plugin_init()
{
        register_plugin("plugin", "1.0", "Niepamietam");
        register_concmd("meta list", "cmdmeta list");
}

public cmdVote(id)
{
        console_print(id, "Komenda meta list jest zablokowana na tym serwerze!");
        return PLUGIN_HANDLED;
}

Powinno dzialac :P przerabialem zablokowanie komendy vote

#include <amxmodx>

public plugin_init()
{
        register_plugin("plugin", "1.0", "darkman");
        register_concmd("vote", "cmdVote");
}

public cmdVote(id)
{
        console_print(id, "Komenda vote jest zablokowana na tym serwerze!");
        return PLUGIN_HANDLED;
}

Użytkownik gameman edytował ten post 04.12.2010 13:39
Odpowiedz

  • +
  • -
mgr inż. Pavulon - zdjęcie mgr inż. Pavulon 04.12.2010

gameman, dobrze się czujesz ?
Po 1. komend meta (raczej) nie zablokujesz
Po 2. meta list ma wyświetlić listę pluginów metamod'a, a co za tym idzie wersję Dproto.
Po 3. kod jest całkowicie błędny. nie dość że nie można użyć funkcji ze spacją w nazwie "cmdmeta list" to jeszcze nawet nie spróbowałeś jej stworzyć, tylko zostawiłeś cmdVote
Odpowiedz

  • +
  • -
DarkGL - zdjęcie DarkGL 04.12.2010

komende meta list da się zmienić ale nie zablokować zmienić na np. abcd
Odpowiedz

gameman - zdjęcie gameman 04.12.2010

hehe no wporzadku? ja tylko napisalem ze mozna tak zablokowac komende vote niech sproboje przerobic moze da rade, ale skoro nie to "OK!"
Odpowiedz
Zablokowany