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
 

camperPL - zdjęcie

camperPL

Rejestracja: 09.04.2014
Aktualnie: Nieaktywny
Poza forum Ostatnio: 06.08.2017 21:37
-----

#727336 Paczka [4FUN] by Strzelnik

Napisane przez janes123 w 17.06.2016 11:08

Jak dla mnie, paczka jest okej, nic w niej nie brakuje i prezentuje się bardzo dobrze.


  • +
  • -
  • 1


#741144 Problem z pluginami.

Napisane przez DeathStroke2k17 w 15.07.2017 16:48

Skompiluj w kompilatorze lokalnym nie tym na przegladarce
  • +
  • -
  • 2


#741128 Problem z pluginami.

Napisane przez Wenti w 15.07.2017 11:48

Zapodaj .sma tych pluginów, skompiluje Ci :)


  • +
  • -
  • 2


#741125 Problem z pluginami.

Napisane przez Wenti w 15.07.2017 10:59

Jaka wersja amxx?

 

Podejrzewam ze kompilujesz to kompilatorem pod 1.8.1 a korzystasz z 1.8.2 / 1.8.3 lub kompilujesz to na amxxie co jest błędem ale moge sie mylic..

 

 


  • +
  • -
  • 2


#741211 Cod mod klasy

Napisane przez Wenti w 17.07.2017 12:57

Trzymaj ostatnią.

Załączone pliki


  • +
  • -
  • 1


#741191 Cod mod klasy

Napisane przez Wenti w 16.07.2017 18:30

Brakuje tylko Szpiega , reszta jest , niech Ci już ktoś inny dorobi albo czekaj do jutra bo ja juz nie mam czasu :v

 

Pozdro.

Załączone pliki


  • +
  • -
  • 1


#741105 Cod mod klasy

Napisane przez Wenti w 14.07.2017 20:03

Proszę Chuligana tak na szybko :) jeżeli znajde chwilkę czasu to postaram sie jeszcze coś zrobić

#include <amxmodx>
#include <amxmisc>
#include <codmod>
#include <fakemeta>
#include <hamsandwich>
#define DMG_BULLET (1<<1)
        
new const nazwa[]   = "Chuligan";
new const opis[]    = "1/5 z famasa, 2 skoki";
new const bronie    = (1<<CSW_FAMAS);
new const zdrowie   = 10;
new const kondycja  = 30;
new const inteligencja = 10;
new const wytrzymalosc = 0;
    
new skoki[33];

new ma_klase[33];

public plugin_init()
{
	register_plugin(nazwa, "1.0", "amxx.pl");

	cod_register_class(nazwa, opis, bronie, zdrowie, kondycja, inteligencja, wytrzymalosc);
   
	register_forward(FM_CmdStart, "fwCmdStart_MultiJump");
        RegisterHam(Ham_TakeDamage, "player", "TakeDamage");

}

public cod_class_enabled(id)
{
	ma_klase[id] = true;

}

public cod_class_disabled(id)
{
	ma_klase[id] = false;

}

public fwCmdStart_MultiJump(id, uc_handle)
{
	if(!is_user_alive(id) || !ma_klase[id])
		return FMRES_IGNORED;

	new flags = pev(id, pev_flags);

	if((get_uc(uc_handle, UC_Buttons) & IN_JUMP) && !(flags & FL_ONGROUND) && !(pev(id, pev_oldbuttons) & IN_JUMP) && skoki[id])
	{
		skoki[id]--;
		new Float:velocity[3];
		pev(id, pev_velocity,velocity);
		velocity[2] = random_float(265.0,285.0);
		set_pev(id, pev_velocity,velocity);
	}
	else if(flags & FL_ONGROUND)
		skoki[id] = 1;

	return FMRES_IGNORED;
}
public TakeDamage(this, idinflictor, idattacker, Float:damage, damagebits)
{
    if(!is_user_connected(idattacker))
        return HAM_IGNORED;
        
    if(!ma_klase[idattacker])
        return HAM_IGNORED;      
        
    if(get_user_team(this) != get_user_team(idattacker) && get_user_weapon(idattacker) == CSW_FAMAS && damagebits & DMG_BULLET && random_num(1, 5) == 1)
        cod_inflict_damage(idattacker, this, float(get_user_health(this))-damage+1.0, 0.0, idinflictor, damagebits);
            
    return HAM_IGNORED;
}

Załączone pliki


  • +
  • -
  • 1


#741106 Cod mod klasy

Napisane przez Wenti w 14.07.2017 20:23

Nie mogę edytować pierwszego postu :/

 

W pierwszym poście masz dodatkowo na dole Legende.

 

trzymaj dodatkowo Aimera (premium) + Terminator (premium) - obydwie są na flage t (admin_level_h) bo nie podales jakie mają być.

Załączone pliki


  • +
  • -
  • 1


#741024 VIP na serwer cod mod!

Napisane przez heniu1111 w 12.07.2017 17:30

https://amxx.pl/topi...ilacja-lokalna/


  • +
  • -
  • 1


#741007 VIP na serwer cod mod!

Napisane przez adi330 w 12.07.2017 13:04

Wszystko jest to co chciałeś, + dodałem prefix VIP, ale też daje bez ;]

Zawartość modele.rar wgraj do cstrike.

 

Powinno działać ;)

 

Załączone pliki


  • +
  • -
  • 1


#740898 [KOSZ] Próśba

Napisane przez Maciuś20 w 10.07.2017 17:52

system monet i sklep: https://amxx.pl/topi...3-system-monet/, https://amxx.pl/topic/57970-sklep-monety-i-dolary/

frakcje: https://amxx.pl/topi...kcji-2-sposoby/polecam by cypis

Vip: https://amxx.pl/vipgenerator/


  • +
  • -
  • 1


#530246 [ROZWIĄZANE] Problem z kompilatorem vip

Napisane przez Kawon w 31.03.2013 20:30

Wiadomość wygenerowana automatycznie


Ten temat został zamknięty przez moderatora.

Powód: Pomoc udzielona

Jeśli się z tym nie zgadzasz, Dołączona grafika raportuj ten post, a moderator lub administrator rozpatrzy go ponownie.


Z pozdrowieniami,
Zespół AMXX.PL
  • +
  • -
  • 1


#530062 [ROZWIĄZANE] Problem z kompilatorem vip

Napisane przez Doktorek* w 31.03.2013 14:04

Enabling debug mode

Auto-restarting the server on crash



Console initialized.

Using breakpad crash handler

Setting breakpad minidump AppID = 10

Forcing breakpad minidump interfaces to load

Looking up breakpad interfaces from steamclient

Calling BreakpadMiniDumpSystemInit

Installing breakpad exception handler for appid(10)/version(5787)

scandir failed:/home/userdata/S51716U/cstrike16350_51716/cstrike16350/SAVE

scandir failed:/home/userdata/S51716U/cstrike16350_51716/cstrike16350/./valve/SAVE

scandir failed:/home/userdata/S51716U/cstrike16350_51716/cstrike16350/./platform/SAVE

Protocol version 48

Exe version 1.1.2.6/Stdio (cstrike)

Exe build: 11:30:00 Aug 28 2012 (5787)

STEAM Auth Server

Server IP address 46.29.20.215:2973



   Metamod version 1.19p32 Copyright © 2001-2006 Will Day

	 Patch: Metamod-P (mm-p) v32 Copyright © 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.



Version 0.9.179 Linux

[DPROTO]:  Loading config './dproto.cfg'

[DPROTO]:  LoggingMode = 2

[DPROTO]:  Config sucessfully loaded.

[DPROTO]: Done.



   AMX Mod X version 1.8.1.3746 Copyright © 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.



scandir failed:/home/userdata/S51716U/cstrike16350_51716/cstrike16350/SAVE

scandir failed:/home/userdata/S51716U/cstrike16350_51716/cstrike16350/./valve/SAVE

scandir failed:/home/userdata/S51716U/cstrike16350_51716/cstrike16350/./platform/SAVE

L 03/31/2013 - 15:01:23: -------- Mapchange to de_dust2 --------

stray key in process_key: item_getiteminfo 63

L 03/31/2013 - 15:01:23: [AMXX] Plugin file open error (plugin "parachute.amxx")

L 03/31/2013 - 15:01:23: [AMXX] Plugin file open error (plugin "Galileo.amxx")

FATAL ERROR (shutting down): Mod_NumForName: models/player/VipCT/VipCT.mdl not found

email debug.log to [email protected]

Sun Mar 31 15:01:23 CEST 2013: Server restart in 10 seconds



Console initialized.

Using breakpad crash handler

Setting breakpad minidump AppID = 10

Forcing breakpad minidump interfaces to load

Looking up breakpad interfaces from steamclient

Calling BreakpadMiniDumpSystemInit

Installing breakpad exception handler for appid(10)/version(5787)

scandir failed:/home/userdata/S51716U/cstrike16350_51716/cstrike16350/SAVE

scandir failed:/home/userdata/S51716U/cstrike16350_51716/cstrike16350/./valve/SAVE

scandir failed:/home/userdata/S51716U/cstrike16350_51716/cstrike16350/./platform/SAVE

Protocol version 48

Exe version 1.1.2.6/Stdio (cstrike)

Exe build: 11:30:00 Aug 28 2012 (5787)

STEAM Auth Server

Server IP address 46.29.20.215:2973



   Metamod version 1.19p32 Copyright © 2001-2006 Will Day

	 Patch: Metamod-P (mm-p) v32 Copyright © 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.



Version 0.9.179 Linux

[DPROTO]:  Loading config './dproto.cfg'

[DPROTO]:  LoggingMode = 2

[DPROTO]:  Config sucessfully loaded.

[DPROTO]: Done.



   AMX Mod X version 1.8.1.3746 Copyright © 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.



scandir failed:/home/userdata/S51716U/cstrike16350_51716/cstrike16350/SAVE

scandir failed:/home/userdata/S51716U/cstrike16350_51716/cstrike16350/./valve/SAVE

scandir failed:/home/userdata/S51716U/cstrike16350_51716/cstrike16350/./platform/SAVE

L 03/31/2013 - 15:01:33: -------- Mapchange to de_dust2 --------

stray key in process_key: item_getiteminfo 63

L 03/31/2013 - 15:01:33: [AMXX] Plugin file open error (plugin "parachute.amxx")

L 03/31/2013 - 15:01:33: [AMXX] Plugin file open error (plugin "Galileo.amxx")

FATAL ERROR (shutting down): Mod_NumForName: models/player/VipCT/VipCT.mdl not found

email debug.log to [email protected]

Sun Mar 31 15:01:33 CEST 2013: Server restart in 10 seconds

  • +
  • -
  • 1


#530126 [ROZWIĄZANE] Problem z kompilatorem vip

Napisane przez GwynBleidD w 31.03.2013 17:10

FATAL ERROR (shutting down): Mod_NumForName: models/player/VipCT/VipCT.mdl not found

Nie masz wgranego na serwer modelu VIPa dla CT. Dla Terrorystów pewnie też brakuje ;)

Dodatkowo:
L 03/31/2013 - 15:01:23: [AMXX] Plugin file open error (plugin "parachute.amxx")
L 03/31/2013 - 15:01:23: [AMXX] Plugin file open error (plugin "Galileo.amxx")
Nie masz tych pluginów wgranych. Wgraj je, jeśli są Ci potrzebne bądź usuń z plugins.ini, jeśli ich nie potrzebujesz.
  • +
  • -
  • 2


#601030 Paczka Unikalna CoD MoD :> Mało pluginów

Napisane przez euvotokafy w 04.01.2014 08:44

Paczka spoko brak niepotrzebnych rzeczy 9/10


  • +
  • -
  • 1