Skocz do zawartości

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.
  • Rozpoczynaj nowe tematy i odpowiedaj na inne
  • Zapisz się do tematów i for, aby otrzymywać automatyczne uaktualnienia
  • Dodawaj wydarzenia do kalendarza społecznościowego
  • Stwórz swój własny profil i zdobywaj nowych znajomych
  • Zdobywaj nowe doświadczenia

Dołączona grafika Dołączona grafika

Guest Message by DevFuse
 

Zawartość użytkownika Pozdrawiam

Odnotowano 100 pozycji dodanych przez Pozdrawiam (Rezultat wyszukiwania ograniczony do daty: 08.06.2023 )



Sortuj według                Sortuj  

#398090 Wyskakuja błędy przy kompilacji nie wiem co z tym zrobić; /

Napisano przez Pozdrawiam w 16.04.2012 19:42 w Prośby o kompilacje pluginów / Problemy z kompilacją

Kur za idiote mnie masz ?
Widać że to :
#include <amxmodx>
#define PLUGIN "Wymuszacz"
#define VERSION "1.0"
#define AUTHOR "Pozdrawiam"
public plugin_init() {
			    register_plugin(PLUGIN, VERSION, AUTHOR)
			    set_task(15.0, "wymus",0, _, _, "b");
				  set_task(17.5, "wymus2",0, _, _, "b");
}
public wymus()
{
	    client_cmd(0, "cl_forwardspeed 400");
}
public wymus2()
{
	    client_cmd(0, "cl_backspeed 400");
}

kopiuj wklej z neta i twierdzisz że coś ogarniasz



#398015 Wyskakuja błędy przy kompilacji nie wiem co z tym zrobić; /

Napisano przez Pozdrawiam w 16.04.2012 18:23 w Prośby o kompilacje pluginów / Problemy z kompilacją

public wymus()
{
        client_cmd(0, "cl_forwardspeed 400");
}
public wymus2()
{
        client_cmd(0, "cl_backspeed 400");
}

kompiuj wklej ?



#397968 Wyskakuja błędy przy kompilacji nie wiem co z tym zrobić; /

Napisano przez Pozdrawiam w 16.04.2012 17:27 w Prośby o kompilacje pluginów / Problemy z kompilacją

Wyskakuja błędy przy kompilacji nie wiem co z tym zrobić a mianowicie :

Welcome to the AMX Mod X 1.8.1-300 Compiler.
Copyright © 1997-2006 ITB CompuPhase, AMX Mod X Team

/tmp/textjYFauq.sma(10) : error 037: invalid string (possibly non-terminated string)
/tmp/textjYFauq.sma(10 -- 12) : error 001: expected token: ",", but found "-identifier-"

2 Errors.
Could not locate output file /home/groups/amxmodx/public_html/websc3/textjYFauq.amx (compile failed).

#include <amxmodx>
#include <hamsandwich>
#define PLUGIN "Wymuszanie szybkosci"
#define VERSION "1.0"
#define AUTHOR "Pozdrawiam”
new cvar_gl_max_size, cvar_cl_yawspeed;
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)

register_cvar("cl_yawspeed", "320");
register_cvar("gl_max_size", "256");

RegisterHam(Ham_Spawn, "player", "Spawn", 1);

cvar_cl_yawspeed = get_cvar_num("cod_cl_yawspeed");
cvar_gl_max_size = get_cvar_num("cod_gl_max_size");
}
public Spawn(id)
if(is_user_alive(id))
  set_task(1.0, "WymusKomendy", id+333);
 
public WymusKomendy(id)
{
id -= 333;
if(is_user_alive(id))
{
  set_task(1.0, "WymusKomendy", id+333);
  client_cmd(id, "cl_yawspeed %i", cvar_cl_yawspeed);
  client_cmd(id, "gl_max_size %i", cvar_gl_max_size);
}
else
  remove_task(id+333);
}



#391223 Problem z dr_stats www

Napisano przez Pozdrawiam w 04.04.2012 16:45 w Problemy z pluginami

Ale jak modele jak ja robie kopjuj wklej z tego http://amxx.pl/topic...a-staty-i-rank/
Wcześniej wszystko było dobrze



#390709 Problem z dr_stats www

Napisano przez Pozdrawiam w 03.04.2012 17:40 w Problemy z pluginami

O to chodzi ?



#389649 Problem z dr_stats www

Napisano przez Pozdrawiam w 01.04.2012 14:57 w Problemy z pluginami

www/drs/models



#389575 Problem z dr_stats www

Napisano przez Pozdrawiam w 01.04.2012 12:58 w Problemy z pluginami

Co mam ci podać?



#389272 Problem z dr_stats www

Napisano przez Pozdrawiam w 31.03.2012 22:15 w Problemy z pluginami

Witam !Od pewnego czasu coś źle działa dr_stats www a mianowicie, a w sumie sami zobaczcie

Deathrun - Statystyki

Co jest nie tak proszę o pomoc ; (



#385359 Problem z dr_stats www

Napisano przez Pozdrawiam w 24.03.2012 00:02 w Problemy z pluginami

Witam!
Od pewnego czasu coś źle działa dr_stats www a mianowicie, a w sumie sami zobaczcie http://cs-hefalumpyb...l/drs/index.php .
O co chodzi ?



#379144 problem z dr_stats www

Napisano przez Pozdrawiam w 11.03.2012 20:00 w Problemy z pluginami

Witam!
Od pewnego czasu coś źle działa dr_stats www a mianowicie, a w sumie sami zobaczcie http://cs-hefalumpyb...l/drs/index.php .
O co chodzi ?



#376732 przeróbka menu.amxx

Napisano przez Pozdrawiam w 07.03.2012 16:45 w Pluginy

A więc jak zrobic coś takiego do pluginu menu.amxx. Chodzi mi o coś takiego że na say wyskakuje "wciśnij przycisk v aby wyświetlić menu HNS" i do tego sie binduje na klawiszu "v" /menu

Plugin na razie wygląda tak:

#include <amxmodx>
#include <amxmisc>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "Pozdrawiam"



new gMyMenu

public plugin_init() {
                register_plugin(PLUGIN, VERSION, AUTHOR)
                register_clcmd("say /menu","mymenu");
                
                gMyMenu=menu_create("Menu HNS by Pozdrawiam","cbMyMenu");
                menu_additem(gMyMenu,"Bank");//item=0
                menu_additem(gMyMenu,"Sklep");//item=1
                menu_additem(gMyMenu,"Ljtop");//item=2
                menu_additem(gMyMenu,"Ljmenu");//item=3
}

public mymenu(id){
                menu_display(id, gMyMenu);
                return PLUGIN_HANDLED;

}

public cbMyMenu(id, menu, item){
                switch(item){
                                case 0:{
                                                client_cmd(id, "say /bank");
                                                
                                }
                                case 1:{
                                                client_cmd(id, "say /sklep");
                                                
                                }
                                case 2:{
                                                client_cmd(id, "say /ljtop");
                                
                                }
                                case 3:{
                                                client_cmd(id, "say /ljsmenu");  
                                }
          
}                         
                menu_destroy ( menu )
                return PLUGIN_HANDLED;
}



#361098 Strefa na respwan

Napisano przez Pozdrawiam w 10.02.2012 22:38 w Pluginy

Ale czy ty nie rozumiesz że każdy w jednym miejscu ma sie respic ? a nie 50 spawnow blisko siebie .
Przy okazji mam około 310 mapek .

Za zrobienie pluginu działającego w 100 % moge zapłacić cena do ustalenia

Jeżeli ktoś jest zainteresowany ta oferta pisać 12603298



#360825 Strefa na respwan

Napisano przez Pozdrawiam w 08.02.2012 21:14 w Pluginy

A czytałeś moje posty nie ma takiego pluginu co ja chce trzeba go stworzyc !
A każdy ma sie w tym samym miejscu respic a jezeli zrobie jedno miejsce spawnu to serwer bedzie sie bugował jak 2 w tym samym momencie dednie .


Więc jak jest taka strefa postawiona to JA jako h@ na kazdej mapie przejade z komenda dr_start i będzie i serwer sie nie zbuguje ; D



#360771 Strefa na respwan

Napisano przez Pozdrawiam w 08.02.2012 20:03 w Pluginy

Ale patrz czy tutaj bedzie pewna strefa i kazdy w tym miejscu bedzie sie respil ?

czy bedzie pare spawnow blisko siebie zrobic ?

Bo ja mam serwer speedrun i nie moge zrobic czegos takiego bo zrobia se taki respwean przed strefa koncowa i czas 0.0000001



#360758 Strefa na respwan

Napisano przez Pozdrawiam w 08.02.2012 19:42 w Pluginy

Witam !
CHciałbym żeby ktoś się podjoł pluginu który bedzie stawiał pod komenda dr_start strefe z ktorej kazdy bedzie sie respic .
ta komenda ma byc po flaga h



#354832 Nie chce sie skomplikowac

Napisano przez Pozdrawiam w 28.01.2012 17:16 w Prośby o kompilacje pluginów / Problemy z kompilacją

A więc wyskakuja jakies bledy nie wiem co robic . Prosił bym o pomoc

#include <amxmisc>
#include <engine>
#include <vault>

#define PLUGIN "Knife Mod"
#define VERSION "v.3"
#define AUTHOR "Pozdrawiam"

new knife_model[33]
new g_Menu

public plugin_init() {

register_plugin(PLUGIN, VERSION, AUTHOR)

register_event("CurWeapon","CurWeapon","be","1=1","2=29")

g_Menu = register_menuid("Knife Mod")
register_menucmd(g_Menu, 1023, "knifemenu")

register_clcmd("say /noze", "display_knife")
register_clcmd("say noze", "display_knife")
register_clcmd("say_team /noze", "display_knife")
register_clcmd("say_team noze", "display_knife")
register_clcmd("/noze", "display_knife")
register_clcmd("noze", "display_knife")
register_clcmd("say /knife", "display_knife")
register_clcmd("say knife", "display_knife")
register_clcmd("say_team /knife", "display_knife")
register_clcmd("say_team knife", "display_knife")
register_clcmd("/knife", "display_knife")
register_clcmd("knife", "display_knife")

set_task(480.0, "kmodmsg", 0, _, _, "b")
}

public plugin_precache() {
precache_model("models/knife-mod/v_knife_pl.mdl")
precache_model("models/knife-mod/v_tasak.mdl")
precache_model("models/knife-mod/v_riddickblade.mdl")
precache_model("models/knife-mod/v_brak.mdl")
precache_model("models/v_knife.mdl")
precache_model("models/p_knife.mdl")
}

public display_knife(id) {
new menuBody[512]
    add(menuBody, 511, "rKnife Modw^n^n")
    add(menuBody, 511, "1. Noz z flaga Polski^n")
    add(menuBody, 511, "2. Pseudo Tasak^n")
    add(menuBody, 511, "3. Riddick Blade^n")
    add(menuBody, 511, "4. Brak noza^n")
    add(menuBody, 511, "5. Domyslny noz^n")
    add(menuBody, 511, "0. Exit^n")

new keys = ( 1<<0 | 1<<1 | 1<<2 | 1<<3 | 1<<4 | 1<<9 )
show_menu(id, keys, menuBody, -1, "Csewerek menu by Pozdrawiam")
}

public knifemenu(id, key) {
switch(key)
{
case 0: SetKnife(id , 4)
case 1: SetKnife(id , 2)
case 2: SetKnife(id , 3)
case 3: SetKnife(id , 1)
case 4: SetKnife(id , 0)
default: return PLUGIN_HANDLED
}
SaveData(id)
return PLUGIN_HANDLED
 
}

public SetKnife(id , Knife) {
knife_model[id] = Knife

new Clip, Ammo, Weapon = get_user_weapon(id, Clip, Ammo)
if ( Weapon != CSW_KNIFE )
return PLUGIN_HANDLED

new vModel[56],pModel[56]

switch(Knife)
{
		    case 4: {
				    format(vModel,55,"models/v_knife.mdl")
				    format(pModel,55,"models/p_knife.mdl")
		    }
		    case 1: {
				    format(vModel,55,"models/knife-mod/v_tasak.mdl")
				    format(pModel,55,"models/p_knife.mdl")
		    }
		    case 2: {
				    format(vModel,55,"models/knife-mod/v_riddickblade.mdl")
				    format(pModel,55,"models/p_knife.mdl")
		    }
		    case 3: {
				    format(vModel,55,"models/knife-mod/v_brak")
				    format(pModel,55,"models/p_knife.mdl")
		    }
		    case 4: {
				    format(vModel,55,"models/knife-mod/v_knife_pl.mdl")
				    format(pModel,55,"models/p_knife.mdl")
}
}

entity_set_string(id, EV_SZ_viewmodel, vModel)
entity_set_string(id, EV_SZ_weaponmodel, pModel)

return PLUGIN_HANDLED;
}

public CurWeapon(id)
{
// Set Knife Model
SetKnife(id, knife_model[id])

return PLUGIN_HANDLED

}
public client_disconnect(id) {
if(task_exists(id)) remove_task(id)
}


public kmodmsg() {

client_print(0,print_chat,"[AMXX]Napisz /knife i wybierz jeden z 5 modeli noza.")
}

public client_authorized(id)
{
LoadData(id)
}

SaveData(id)
{

new authid[32]
get_user_authid(id, authid, 31)

new vaultkey[64]
new vaultdata[64]

format(vaultkey, 63, "KMOD_%s", authid)
format(vaultdata, 63, "%d", knife_model[id])
set_vaultdata(vaultkey, vaultdata)
}

LoadData(id)
{
new authid[32]
get_user_authid(id,authid,31)

new vaultkey[64], vaultdata[64]

format(vaultkey, 63, "KMOD_%s", authid)
get_vaultdata(vaultkey, vaultdata, 63)
knife_model[id] = str_to_num(vaultdata)

}



#353295 /knife nie działa

Napisano przez Pozdrawiam w 26.01.2012 18:24 w Problemy

Auto detecting CPU
Using Pentium II Optimised binary.
Auto-restarting the server on crash
Console initialized.
scandir failed:/home/servers/s20827/SAVE
scandir failed:/home/servers/s20827/./platform/SAVE
Protocol version 48
Exe version 1.1.2.6/Stdio (cstrike)
Exe build: 10:55:14 Jul 9 2010 (5006)
STEAM Auth Server
couldn't exec language.cfg
couldn't exec listip.cfg
Server IP address 79.133.192.45:27055
Metamod version 1.19p32 Copyright (c) 2001-2006 Will Day
Patch: Metamod-P (mm-p) v32 Copyright (c) 2004-2007 Jussi Kivilinna
Metamod comes with ABSOLUTELY NO WARRANTY; for details type `meta gpl'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `meta gpl' for details.

AMX Mod X version 1.8.1.3746 Copyright (c) 2004-2006 AMX Mod X Development Team
AMX Mod X comes with ABSOLUTELY NO WARRANTY; for details type `amxx gpl'.
This is free software and you are welcome to redistribute it under
certain conditions; type 'amxx gpl' for details.
stray key in process_key: item_getiteminfo 63
scandir failed:/home/servers/s20827/SAVE
scandir failed:/home/servers/s20827/./platform/SAVE
L 01/24/2012 - 17:20:57: -------- Mapchange to deathrun_projetocs2 --------
FATAL ERROR (shutting down): Mod_NumForName: models/knife-mod/v_brak,mdl not found

Dobra naprawiłem zamiast kropki byl przecinek w jednym miejscu ale jest teraz drugi problem

A więc przy wejściu na serwer od razu masz kose z flaga polski zamiast domyślna i nie działa komenda /knife

#include <amxmodx>
#include <amxmisc>
#include <engine>
#include <vault>
#include <fun>
#define PLUGIN "Knife Mod"
#define VERSION "1.0"
#define AUTHOR "spunko & Drako"
#define TASK_INTERVAL 4.0
new knife_model[33]
new g_Menu
public plugin_init() {
  
	register_plugin(PLUGIN, VERSION, AUTHOR)
  
  
	register_event("CurWeapon","CurWeapon","be","1=1")
  
	g_Menu = register_menuid("Knife Mod")
	register_menucmd(g_Menu, 1023, "knifemenu")
  
	register_clcmd("say /knife", "display_knife")
}
public plugin_precache() {
	precache_model("models/knife-mod/v_knife_pl.mdl")
	precache_model("models/knife-mod/v_tasak.mdl")
	precache_model("models/knife-mod/v_riddickblade.mdl")
	precache_model("models/knife-mod/v_brak.mdl")
	precache_model("models/v_knife.mdl")
	precache_model("models/p_knife.mdl")
}
public display_knife(id) {
	new menuBody[512]
	add(menuBody, 511, "\rKnife Mod\w^n^n")
	add(menuBody, 511, "1. Noz z flaga Polski^n")
	add(menuBody, 511, "2. Pseudo Tasak^n")
	add(menuBody, 511, "3. Riddick Blade^n")
	add(menuBody, 511, "4. Brak noza^n")
	add(menuBody, 511, "5. Domyslny noz^n")
	add(menuBody, 511, "0. Exit^n")
  
	new keys = ( 1<<0 | 1<<1 | 1<<2 | 1<<3 | 1<<4 | 1<<9 )
	show_menu(id, keys, menuBody, -1, "Knife Mod")
}
public knifemenu(id, key) {
	switch(key)
	{
			case 0: SetKnife(id , 4)
			case 1: SetKnife(id , 2)
			case 2: SetKnife(id , 3)
			case 3: SetKnife(id , 1)
			case 4: SetKnife(id , 0)
			default: return PLUGIN_HANDLED
	}
	return PLUGIN_HANDLED
}
public SetKnife(id , Knife) {
	knife_model[id] = Knife
  
	new Clip, Ammo, Weapon = get_user_weapon(id, Clip, Ammo)
	if ( Weapon != CSW_KNIFE )
			return PLUGIN_HANDLED
  
	new vModel[56],pModel[56]
  
	switch(Knife)
	{
			case 0: {
					format(vModel,55,"models/knife-mod/v_knife_pl.mdl")
					format(pModel,55,"models/p_knife.mdl")
			}
			case 1: {
					format(vModel,55,"models/knife-mod/v_tasak.mdl")
					format(pModel,55,"models/p_knife.mdl")
			}
			case 2: {
					format(vModel,55,"models/knife-mod/v_riddickblade.mdl")
					format(pModel,55,"models/p_knife.mdl")
			}
			case 3: {
					format(vModel,55,"models/knife-mod/v_brak")
					format(pModel,55,"models/p_knife.mdl")
			}
			case 4: {
					format(vModel,55,"models/knife-mod/v_knife")
					format(pModel,55,"models/p_knife.mdl")
			}
	}
  
	entity_set_string(id, EV_SZ_viewmodel, vModel)
	entity_set_string(id, EV_SZ_weaponmodel, pModel)
  
	return PLUGIN_HANDLED;
}
public CurWeapon(id)
	SetKnife(id, knife_model[id])

tak wygląda teraz plugin na serwie

o co chodzi powinno działać !!

Może jakis plugin blokuje ?



#353264 /knife nie działa

Napisano przez Pozdrawiam w 24.01.2012 16:38 w Problemy

Nadal to samo .
ale zauważałem że ten plik jest w tym models ale się nie pobiera ludzą



#353242 /knife nie działa

Napisano przez Pozdrawiam w 24.01.2012 16:10 w Problemy


Auto detecting CPU

Using Pentium II Optimised binary.

Auto-restarting the server on crash

Console initialized.

scandir failed:/home/servers/s20827/SAVE

scandir failed:/home/servers/s20827/./platform/SAVE

Protocol version 48

Exe version 1.1.2.6/Stdio (cstrike)

Exe build: 10:55:14 Jul 9 2010 (5006)

STEAM Auth Server

couldn't exec language.cfg

couldn't exec listip.cfg

Server IP address 79.133.192.45:27055

Metamod version 1.19p32 Copyright (c) 2001-2006 Will Day

Patch: Metamod-P (mm-p) v32 Copyright (c) 2004-2007 Jussi Kivilinna

Metamod comes with ABSOLUTELY NO WARRANTY; for details type `meta gpl'.

This is free software, and you are welcome to redistribute it

under certain conditions; type `meta gpl' for details.



AMX Mod X version 1.8.1.3746 Copyright (c) 2004-2006 AMX Mod X Development Team

AMX Mod X comes with ABSOLUTELY NO WARRANTY; for details type `amxx gpl'.

This is free software and you are welcome to redistribute it under

certain conditions; type 'amxx gpl' for details.

stray key in process_key: item_getiteminfo 63

scandir failed:/home/servers/s20827/SAVE

scandir failed:/home/servers/s20827/./platform/SAVE

L 01/24/2012 - 16:08:17: -------- Mapchange to deathrun_projetocs2 --------

FATAL ERROR (shutting down): Mod_NumForName: models/knife-mod/v_brak not found




#353008 /knife nie działa

Napisano przez Pozdrawiam w 24.01.2012 14:53 w Problemy

Nadal to samo czyli:
1. wklejam plugin do folderu plugins wpisuje do plugins.ini
2.Zmieniam mapę
3. Serwer tag jakby się crashuje przy zmianie mapy i go wyłącza tak że się nie da go włączyć .
4.żeby serwer włączyć muszę wyłączyć plugin knife.amxx

Czy ten problem może wynikać ze złej wersji amxx ?
A jeżeli nie to z czego ?

Bardzo proszę o odpowiedz .



#352844 /knife nie działa

Napisano przez Pozdrawiam w 22.01.2012 21:03 w Problemy

L 01/22/2012 - 17:27:18: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 17:27:18: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 17:27:18: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 17:27:18: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 17:27:18: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 17:27:18: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 17:27:18: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 17:27:18: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 17:27:18: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 17:42:20: Start of error session.
L 01/22/2012 - 17:42:20: Info (map "deathrun_bkm") (file "addons/amxmodx/logs/error_20120122.log")
L 01/22/2012 - 17:42:20: Function "event_damage" was not found
L 01/22/2012 - 17:42:20: [AMXX] Run time error 19 (plugin "knife.amxx") - debug not enabled!
L 01/22/2012 - 17:42:20: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 17:42:20: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 17:42:20: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 17:42:20: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 17:42:20: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 17:42:20: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 17:42:20: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 17:42:20: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 17:42:20: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 17:42:20: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 17:57:23: Start of error session.
L 01/22/2012 - 17:57:23: Info (map "deathrace_alley") (file "addons/amxmodx/logs/error_20120122.log")
L 01/22/2012 - 17:57:23: Function "event_damage" was not found
L 01/22/2012 - 17:57:23: [AMXX] Run time error 19 (plugin "knife.amxx") - debug not enabled!
L 01/22/2012 - 17:57:23: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 17:57:23: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 17:57:23: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 17:57:23: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 17:57:23: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 17:57:23: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 17:57:23: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 17:57:23: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 17:57:23: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 17:57:23: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:12:26: Start of error session.
L 01/22/2012 - 18:12:26: Info (map "deathrun_bajocero") (file "addons/amxmodx/logs/error_20120122.log")
L 01/22/2012 - 18:12:26: Function "event_damage" was not found
L 01/22/2012 - 18:12:26: [AMXX] Run time error 19 (plugin "knife.amxx") - debug not enabled!
L 01/22/2012 - 18:12:26: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:12:26: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 18:12:26: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 18:12:26: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:12:26: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 18:12:26: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 18:12:26: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:12:26: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 18:12:26: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 18:12:26: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:23:32: String formatted incorrectly - parameter 7 (total 6)
L 01/22/2012 - 18:23:32: [AMXX] Run time error 25 (plugin "amxbans_main.amxx") - debug not enabled!
L 01/22/2012 - 18:23:32: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:24:28: Start of error session.
L 01/22/2012 - 18:24:28: Info (map "deathrun_dust_cs") (file "addons/amxmodx/logs/error_20120122.log")
L 01/22/2012 - 18:24:28: Function "event_damage" was not found
L 01/22/2012 - 18:24:28: [AMXX] Run time error 19 (plugin "knife.amxx") - debug not enabled!
L 01/22/2012 - 18:24:28: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:24:29: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 18:24:29: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 18:24:29: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:24:29: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 18:24:29: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 18:24:29: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:24:29: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 18:24:29: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 18:24:29: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:24:47: String formatted incorrectly - parameter 7 (total 6)
L 01/22/2012 - 18:24:47: [AMXX] Run time error 25 (plugin "amxbans_main.amxx") - debug not enabled!
L 01/22/2012 - 18:24:47: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:39:31: Start of error session.
L 01/22/2012 - 18:39:31: Info (map "deathrun_evidens") (file "addons/amxmodx/logs/error_20120122.log")
L 01/22/2012 - 18:39:31: Function "event_damage" was not found
L 01/22/2012 - 18:39:31: [AMXX] Run time error 19 (plugin "knife.amxx") - debug not enabled!
L 01/22/2012 - 18:39:31: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:39:31: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 18:39:31: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 18:39:31: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:39:31: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 18:39:31: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 18:39:31: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:39:31: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 18:39:31: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 18:39:31: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:54:34: Start of error session.
L 01/22/2012 - 18:54:34: Info (map "deathrun_cube2") (file "addons/amxmodx/logs/error_20120122.log")
L 01/22/2012 - 18:54:34: Function "event_damage" was not found
L 01/22/2012 - 18:54:34: [AMXX] Run time error 19 (plugin "knife.amxx") - debug not enabled!
L 01/22/2012 - 18:54:34: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:54:34: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 18:54:34: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 18:54:34: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:54:34: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 18:54:34: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 18:54:34: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 18:54:34: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 18:54:34: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 18:54:34: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 19:04:57: Start of error session.
L 01/22/2012 - 19:04:57: Info (map "deathrun_oldtown") (file "addons/amxmodx/logs/error_20120122.log")
L 01/22/2012 - 19:04:57: Function "event_damage" was not found
L 01/22/2012 - 19:04:57: [AMXX] Run time error 19 (plugin "knife.amxx") - debug not enabled!
L 01/22/2012 - 19:04:57: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 19:04:58: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 19:04:58: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 19:04:58: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 19:04:58: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 19:04:58: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 19:04:58: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 19:04:58: [MySQL] Invalid info tuple handle: 0
L 01/22/2012 - 19:04:58: [AMXX] Run time error 10 (plugin "amxbans_main.amxx") (native "SQL_ThreadQuery") - debug not enabled!
L 01/22/2012 - 19:04:58: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 01/22/2012 - 19:05:21: Start of error session.
L 01/22/2012 - 19:05:21: Info (map "deathrun_dust_old") (file "addons/amxmodx/logs/error_20120122.log")
L 01/22/2012 - 19:05:21: Function "event_damage" was not found
L 01/22/2012 - 19:05:21: [AMXX] Run time error 19 (plugin "knife.amxx") - debug not enabled!
L 01/22/2012 - 19:05:21: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).

to jest ten kawałek z tamtych godzin



#352832 /knife nie działa

Napisano przez Pozdrawiam w 22.01.2012 20:43 w Problemy

Jak teraz to poprawiłem i wgrałem na serwer to serwer nie chce się włączyć .



#352671 /knife nie działa

Napisano przez Pozdrawiam w 22.01.2012 17:48 w Problemy

Bardzo proszę o odpowiedz .

A może plugin jest dobrze napisany tylko coś z amxx nie tak ?



#352410 /knife nie działa

Napisano przez Pozdrawiam w 21.01.2012 22:57 w Problemy

A więc trochę poprzerabiałem plugin z knife + moce na brak tych gravitek itp , ale niestety nie działa .
Prosił bym o rozwiązanie mojego problemu


#include <amxmodx>
#include <amxmisc>
#include <engine>
#include <vault>
#include <fun>

#define PLUGIN "Knife Mod"
#define VERSION "1.0"
#define AUTHOR "spunko & Drako"
#define TASK_INTERVAL 4.0 
new knife_model[33]
new g_Menu
public plugin_init() {
   
    register_plugin(PLUGIN, VERSION, AUTHOR)
   
    register_event( "Damage", "event_damage", "be" )
    register_event("CurWeapon","CurWeapon","be","1=1")
   
    g_Menu = register_menuid("Knife Mod")
    register_menucmd(g_Menu, 1023, "knifemenu")
   
    register_clcmd("say /knife", "display_knife")
}
public plugin_precache() {
    precache_model("models/knife-mod/v_knife_pl.mdl")
    precache_model("models/knife-mod/v_tasak.mdl")
    precache_model("models/knife-mod/v_riddickblade.mdl")
    precache_model("models/knife-mod/v_brak")
    precache_model("models/v_knife.mdl")
    precache_model("models/p_knife.mdl")
}
public display_knife(id) {
    new menuBody[512]
    add(menuBody, 511, "\rKnife Mod\w^n^n")
    add(menuBody, 511, "1. Noz z flaga Polski^n")
    add(menuBody, 511, "2. Pseudo Tasak^n")
    add(menuBody, 511, "3. Riddick Blade^n")
    add(menuBody, 511, "4. Brak noza^n")
    add(menuBody, 511, "5. Domyslny noz^n")

    add(menuBody, 511, "0. Exit^n")
   
    new keys = ( 1<<0 | 1<<1 | 1<<2 | 1<<3 | 1<<4 | 1<<9 )
    show_menu(id, keys, menuBody, -1, "Knife Mod")
}
public knifemenu(id, key) {
    switch(key)
    {
            case 0: SetKnife(id , 4)
            case 1: SetKnife(id , 2)
            case 2: SetKnife(id , 3)
            default: return PLUGIN_HANDLED
    }
    return PLUGIN_HANDLED
}
public SetKnife(id , Knife) {
    knife_model[id] = Knife
   
    new Clip, Ammo, Weapon = get_user_weapon(id, Clip, Ammo)
    if ( Weapon != CSW_KNIFE )
            return PLUGIN_HANDLED
   
    new vModel[56],pModel[56]
   
    switch(Knife)
    {
            case 0: {
                    format(vModel,55,"models/knife-mod/v_knife_pl.mdl")
                    format(pModel,55,"models/p_knife.mdl")
            }
            case 1: {
                    format(vModel,55,"models/knife-mod/v_tasak.mdl")
                    format(pModel,55,"models/p_knife.mdl")
            }
            case 2: {
                    format(vModel,55,"models/knife-mod/v_riddickblade.mdl")
                    format(pModel,55,"models/p_knife.mdl")
            }
            case 3: {
                    format(vModel,55,"models/knife-mod/v_brak")
                    format(pModel,55,"models/p_knife.mdl") 
            }
            case 4: {
                    format(vModel,55,"models/knife-mod/v_knife")
                    format(pModel,55,"models/p_knife.mdl")
            }
    }
   
    entity_set_string(id, EV_SZ_viewmodel, vModel)
    entity_set_string(id, EV_SZ_weaponmodel, pModel)
   
    return PLUGIN_HANDLED; 
}
public CurWeapon(id)
    SetKnife(id, knife_model[id])

za pomoc dam ++ :D



#352428 MiniBans - Nie Banuje

Napisano przez Pozdrawiam w 21.01.2012 22:57 w Problemy

Mini bans już taki jest nie banuje też miałem taki problem . Zainstaluj sobie http://amxx.pl/topic...-advanced-bans/
a jeżeli masz stronkę www serwa to AMXBANS