Witam czy macie może taki plugin gdy wyciągnie się noż to staje sie niewidzialnym ?
Witamy w Nieoficjalnym polskim support'cie AMX Mod X
Witamy w Nieoficjalnym polskim support'cie AMX Mod X, jak w większości społeczności internetowych musisz się zarejestrować aby móc odpowiadać lub zakładać nowe tematy, ale nie bój się to jest prosty proces w którym wymagamy minimalnych informacji.
|
Aureliusz
Rejestracja: 30.10.2015Aktualnie: Nieaktywny
Poza forum Ostatnio: 26.11.2016 17:59




Statystyki
- Grupa: Użytkownik
- Całość postów: 23
- Odwiedzin: 2 796
- Tytuł: Życzliwy
- Wiek: Wiek nie został ustalony
- Urodziny: Data urodzin nie została podana
-
Płeć
Mężczyzna
Kontakt
Narzędzia użytkownika
Znajomi
Aureliusz nie posiada znajomych
Ostatnio byli
Moje tematy
szukam puginu
16.10.2016 15:09
problem z pluginem csdm2.1.3
26.06.2016 13:06
Witam po wgraniu pluginu csdm2.1.3 wyskakują error logi :
L 06/26/2016 - 02:18:23: Start of error session. L 06/26/2016 - 02:18:23: Info (map "cs_office") (file "addons/amxmodx/logs/error_20160626.log") L 06/26/2016 - 02:18:23: [AMXX] Plugin file open error (plugin "csdm_stipper.amxx") L 06/26/2016 - 02:18:23: [AMXX] Plugin file open error (plugin "csdm_stop_respawn.amxx") L 06/26/2016 - 02:18:23: Invalid menu id -1(7) L 06/26/2016 - 02:18:23: [AMXX] Displaying debug trace (plugin "csdm_equip.amxx") L 06/26/2016 - 02:18:23: [AMXX] Run time error 10: native error (native "menu_items") L 06/26/2016 - 02:18:23: [AMXX] [0] csdm_equip.sma::plugin_init (line 186) L 06/26/2016 - 02:18:23: Invalid menu id -1(7) L 06/26/2016 - 02:18:23: [AMXX] Displaying debug trace (plugin "csdm_ffa.amxx") L 06/26/2016 - 02:18:23: [AMXX] Run time error 10: native error (native "menu_items") L 06/26/2016 - 02:18:23: [AMXX] [0] csdm_ffa.sma::plugin_init (line 94) L 06/26/2016 - 02:18:23: Invalid menu id -1(7) L 06/26/2016 - 02:18:23: [AMXX] Displaying debug trace (plugin "csdm_itemmode.amxx") L 06/26/2016 - 02:18:23: [AMXX] Run time error 10: native error (native "menu_items") L 06/26/2016 - 02:18:23: [AMXX] [0] csdm_itemmode.sma::plugin_init (line 323)
Przeróbka pluginu licznik fragów
02.06.2016 17:43
Witam proszę o przerobienie tego pluginu tak aby statystyki resetowały się dopiero po zmianie mapy ,a teraz resetują się po zginięciu ![]()
#include <amxmodx>
#include <fun>
new KILL[33],HS[33];
new SyncHudObj;
public plugin_init()
{
register_plugin("Licznik Fragow", "1.0", "[H]ARDBO[T]");
register_event("DeathMsg", "eDeath", "a");
SyncHudObj = CreateHudSyncObj();
}
public eDeath()
{
new headshot,attacker=read_data(1);
new victim=read_data(2);
headshot=read_data(3);
KILL[attacker]++;
if(headshot) HS[attacker]++;
KILL[victim]=0;
HS[victim]=0;
return PLUGIN_CONTINUE;
}
public client_authorized(id) set_task(1.0,"ShowHud",id,_,_,"b");
public ShowHud(id)
{
set_hudmessage(52, 114, 53, 0.01, 0.89, 0, 1.0, 2.0, 0.1, 0.2, 1);
ShowSyncHudMsg(id, SyncHudObj,"Fragi:[%i]^nHS:[%i]^nRekord:[%i|%i]",KILL[id],HS[id],KILL[id],HS[id]);
}
plugin kdf
31.05.2016 14:50
Witam czy można usunąć z tego pluginu to aby po zabiciu z noża nie wyświetlała się wiadomość że gracz xxx zabił innego gracza i coś tam jeszcze pisze ale nie pamiętam co ,jest to mocno irytujące ponieważ wiadomość wyświetla się każdemu tuż obok celownika.
#include <amxmodx>
#include <fun>
#include <cstrike>
new pHajs, pIleFragow;
public plugin_init()
{
register_plugin("Wiecej kasy + frag za knife", "1.0", "RiviT");
register_event("DeathMsg", "DeathMsg", "a");
pHajs = register_cvar("amx_kasa_knife", "300")
pIleFragow = register_cvar("amx_frag_knife", "1")
}
public DeathMsg()
{
new kid = read_data(1);
if(!is_user_connected(kid)) return;
if(get_user_team(kid) == get_user_team(read_data(2))) return;
new weapon[24];
read_data(4, weapon, 23);
if(weapon[0] == 'k')
{
set_user_frags(kid, get_user_frags(kid)+get_pcvar_num(pIleFragow))
cs_set_user_money(kid, min(16000, cs_get_user_money(kid)+get_pcvar_num(pHajs)), 1)
CSDM 2.1.2
22.05.2016 16:51
Witam dzisiaj wgrałem plugin Dm pobrany ze strony bailopana wersja 2.1.2 również próbowałem wersję starszą i problem jest ten sam .
. L 05/22/2016 - 17:21:42: -------- Mapchange to de_dust -------- L 05/22/2016 - 17:21:42: [AMXX] Plugin "csdm_equip.amxx" failed to load: Plugin uses an unknown function (name "csdm_active") - check your modules.ini. L 05/22/2016 - 17:21:42: [AMXX] Plugin "csdm_itemmode.amxx" failed to load: Plugin uses an unknown function (name "csdm_give_item") - check your modules.ini. L 05/22/2016 - 17:21:42: [AMXX] Plugin "csdm_main.amxx" failed to load: Plugin uses an unknown function (name "csdm_respawn") - check your modules.ini. L 05/22/2016 - 17:21:42: [AMXX] Plugin "csdm_misc.amxx" failed to load: Plugin uses an unknown function (name "csdm_active") - check your modules.ini. L 05/22/2016 - 17:21:42: [AMXX] Plugin "csdm_protection.amxx" failed to load: Plugin uses an unknown function (name "csdm_active") - check your modules.ini. L 05/22/2016 - 17:21:42: [AMXX] Plugin "csdm_spawn_preset.amxx" failed to load: Plugin uses an unknown function (name "csdm_trace_hull") - check your modules.ini. L 05/22/2016 - 17:21:42: [AMXX] Plugin "csdm_tickets.amxx" failed to load: Plugin uses an unknown function (name "csdm_active") - check your modules.ini.
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 csdm ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; 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
plugins.ini:
; 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) amxbans_core.amxx debug amxbans_main.amxx debug ; 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 screenshot.amxx bulletdamage.amxx ;DM galileo.amxx csdm_equip.amxx csdm_ffa.amxx csdm_itemmode.amxx csdm_main.amxx csdm_misc.amxx csdm_protection.amxx csdm_spawn_preset.amxx csdm_tickets.amxx spawn_editor.amxx
- AMXX.pl: Support AMX Mod X i SourceMod
- → Przeglądanie profilu: Tematy: Aureliusz
- Regulamin


Dodatki SourceMod



Moja zawartość