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
 

HaX GaminG - zdjęcie

HaX GaminG

Rejestracja: 27.10.2013
Aktualnie: Nieaktywny
Poza forum Ostatnio: 19.02.2016 22:43
*****

#621268 amxbans 1.6 daje bana graczowi a on może nadal wejść na serwer

Napisane przez HaX GaminG w 28.02.2014 20:28

W załączniku masz ten plugin :) Korzystam z niego na swoim serwerze i wszystko działa prawidłowo :)

Załączone pliki


  • +
  • -
  • 1


#607561 Nie działa /klasa

Napisane przez HaX GaminG w 20.01.2014 19:43

w plugins.ini zamień

QTM_CodMod.amxx

na

QTM_CodMod.amxx debug

i wtedy podaj logi :)


  • +
  • -
  • 1


#606588 Amxbans nie reaguje na adminów

Napisane przez HaX GaminG w 17.01.2014 23:16

A masz może na serwerze plugin kill_assist ?
Jak masz to proponuje go usunąć :-D
  • +
  • -
  • 1


#606501 Problem z odznakami

Napisane przez HaX GaminG w 17.01.2014 19:26

// Rank mode
// 0 - by nick
// 1 - by authid
// 2 - by ip
//
// Default value: 1
csstats_rank 1

zmień na

// Rank mode
// 0 - by nick
// 1 - by authid
// 2 - by ip
//
// Default value: 1
csstats_rank 0

staty i odznaki będą zapisywały się na nick :)


  • +
  • -
  • 1


#602539 [ROZWIĄZANE] Problem z działaniem admina

Napisane przez HaX GaminG w 06.01.2014 19:46

Zapewne masz serwer na pukawce :-D Też miałem ten problem ,ale po wymianie dproto już tego nie ma.
Podmieniłem na wersję 0.9.356 :-)
  • +
  • -
  • 1


#601183 problem z zapisem amxx

Napisane przez HaX GaminG w 04.01.2014 15:18

Też normalnie mi się kompiluje . Pewnie nie masz bibliotek w amxx studio i dlatego Ci wywala błąd ,też tak kiedyś miałem ,ale MisieQ podesłał mi Amxx Studio z wszystkimi bibliotekami :)


  • +
  • -
  • 1


#600826 [ROZWIĄZANE] ns nie moga wejsc na serwer

Napisane przez HaX GaminG w 03.01.2014 17:39

wuwunio12a nie ma nic innego . Musisz zainstalować AmxModX + dproto i wszystko będzie dobrze...

 

Jak nadal nie ogarniasz to pisz na gg(masz nr w profilu) tam Ci pomogę może ,bo tutaj to już spam się robi.


  • +
  • -
  • 1


#600677 Proszę zmodyfikować Plugin na flagę

Napisane przez HaX GaminG w 03.01.2014 13:38

To moje nie działa ?? dodaj sobie flagę "a" do pozostałych i powinno śmigać ...

A jeśli nadal niedziała to opisz jak to robisz :P Bo nwm czy Ty samego .sma nie wgrywasz :D


  • +
  • -
  • 2


#600654 Proszę zmodyfikować Plugin na flagę

Napisane przez HaX GaminG w 03.01.2014 12:42

1.

/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <hamsandwich>
 
#define PLUGIN "RespawnPlayer"
#define VERSION "1.0"
#define AUTHOR "FirebladeR"
 
new g_msgidSayText
 
public plugin_init() 
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_concmd("amx_respawn", "RespawnPlayer", ADMIN_IMMUNITY, "<name>")
}
 
public plugin_cfg()
{
g_msgidSayText = get_user_msgid ("SayText")
}
 
 
public RespawnPlayer(id, level, cid){
if (!cmd_access(id, level, cid, 2))
return PLUGIN_HANDLED
 
new arg[32]
read_argv(1, arg, 31)
new player = cmd_target(id, arg, CMDTARGET_OBEY_IMMUNITY | CMDTARGET_ALLOW_SELF)
 
if (!player)
return PLUGIN_HANDLED
 
new authid[32], authid2[32], name2[32], name[32]
 
get_user_authid(id, authid, 31)
get_user_authid(player, authid2, 31)
get_user_name(player, name2, 31)
get_user_name(id, name, 31)
 
if (!is_user_alive(player))
{
new kasa = cs_get_user_money(player);
 
ExecuteHamB(Ham_CS_RoundRespawn,player)
 
cs_set_user_money(player, kasa+1000)
console_print(id, " ")
console_print(id, "******[Respawn] Zrespiles %s****** ", name2)
console_print(id, " ")
 
console_print(player, " ")
console_print(player, "******[Respawn] Zostales zrespiony przez %s****** ", name)
console_print(player, " ")
col_mess(player, id, "!g[Respawn]!t Zostales zrespiony przez %s !", name)
}
 
else if(is_user_alive(player))
{
col_mess(id, id, "!g[Respawn]!t Nie mozna zrespic zywego gracza !", name)
}
 
return PLUGIN_HANDLED
}
 
col_mess(id, sender, string[], any:...)
{
static message[128]
message[0] = 0x01
vformat(message[1], 127, string, 4)
 
replace_all(message, 127, "!n", "^x01")
replace_all(message, 127, "!t", "^x03")
replace_all(message, 127, "!g", "^x04")
 
message_begin(MSG_ONE_UNRELIABLE, g_msgidSayText, _, id)
write_byte(sender)
write_string(message)
message_end()
}

}

2.

/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <fun>
 
 
#define PLUGIN "Custom Frags And Deaths"
#define VERSION "1.1"
#define AUTHOR "FirebladeR"
 
 
#define ACCESS_LEVEL ADMIN_IMMUNITY
 
 
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_concmd("amx_setfrags", "set_frags", ACCESS_LEVEL, "<nick or #userid> <Fragi>")
register_concmd("amx_setdeaths", "set_deaths", ACCESS_LEVEL, "<nick or #userid> <Dedy>")
register_concmd("amx_setscore", "set_score", ACCESS_LEVEL, "<nick or #userid> <Fragi> <Zgony>") 
}
 
 
public set_frags(id, level, cid)
{
if (!cmd_access(id, level, cid, 3))
return PLUGIN_HANDLED
 
new arg1[33], arg2[33], newFrags
read_argv(1, arg1, 32)
read_argv(2, arg2, 32)
newFrags = str_to_num(arg2)
 
if(arg1[0] == '*')
{
new players[32], playersCount, i
get_players(players, playersCount)
 
for (i = 0; i < playersCount; i++)
{
if(!is_user_connected(players[i]))
return PLUGIN_CONTINUE
 
set_user_frags(players[i], newFrags)
}
}
 
else if (arg1[0] == '@')
{
new team[32], teamCount, i
 
if(equali(arg1[1], "T"))
get_players(team, teamCount, "e", "TERRORIST")
 
else if (equali(arg1[1], "CT"))
get_players(team, teamCount, "e", "CT")
 
for (i = 0; i < teamCount; i++)
{
 
if(!is_user_connected(team[i]))
return PLUGIN_CONTINUE
 
set_user_frags(team[i], newFrags)
}
}
 
else if (arg1[0] == '!')
{
new tag[32], tagCount, i
replace(arg1, 32, "!", "")
get_players(tag, tagCount, "f", arg1)
 
for (i = 0; i < tagCount; i++)
{
 
if(!is_user_connected(tag[i]))
return PLUGIN_CONTINUE
 
set_user_frags(tag[i], newFrags)
}
}
 
else
{
new target = cmd_target(id, arg1, 3)
 
if(!is_user_connected(target))
return PLUGIN_HANDLED
 
set_user_frags(target, newFrags)
}
 
return PLUGIN_HANDLED
 
}
 
public set_deaths(id, level, cid)
{
if (!cmd_access(id, level, cid, 3))
return PLUGIN_HANDLED
 
new arg1[33], arg2[33], newDeaths
read_argv(1, arg1, 32)
read_argv(2, arg2, 32)
newDeaths = str_to_num(arg2)
 
if(arg1[0] == '*')
{
new players[32], playersCount, i
get_players(players, playersCount)
 
for (i = 0; i < playersCount; i++)
{
if(!is_user_connected(players[i]))
return PLUGIN_CONTINUE
 
cs_set_user_deaths(players[i], newDeaths)
}
}
 
else if (arg1[0] == '@')
{
new team[32], teamCount, i
 
if(equali(arg1[1], "T"))
get_players(team, teamCount, "e", "TERRORIST")
 
else if (equali(arg1[1], "CT"))
get_players(team, teamCount, "e", "CT")
 
for (i = 0; i < teamCount; i++)
{
 
if(!is_user_connected(team[i]))
return PLUGIN_CONTINUE
 
cs_set_user_deaths(team[i], newDeaths)
}
}
 
else if (arg1[0] == '!')
{
new tag[32], tagCount, i
replace(arg1, 32, "!", "")
get_players(tag, tagCount, "f", arg1)
 
for (i = 0; i < tagCount; i++)
{
 
if(!is_user_connected(tag[i]))
return PLUGIN_CONTINUE
 
cs_set_user_deaths(tag[i], newDeaths)
}
}
 
else
{
new target = cmd_target(id, arg1, 3)
 
if(!is_user_connected(target))
return PLUGIN_HANDLED
 
cs_set_user_deaths(target, newDeaths) 
}
 
return PLUGIN_HANDLED
 
}
 
public set_score(id, level, cid)
{
if (!cmd_access(id, level, cid, 4))
return PLUGIN_HANDLED
 
new arg1[33], arg2[33], arg3[33], newFrags, newDeaths
 
read_argv(1, arg1, 32)
read_argv(2, arg2, 32)
read_argv(3, arg3, 32)
newFrags = str_to_num(arg2)
newDeaths = str_to_num(arg3)
 
if(arg1[0] == '*')
{
new players[32], playersCount, i
get_players(players, playersCount)
 
for (i = 0; i < playersCount; i++)
{
if(!is_user_connected(players[i]))
return PLUGIN_CONTINUE
 
set_user_frags(players[i], newFrags)
cs_set_user_deaths(players[i], newDeaths)
}
}
 
else if (arg1[0] == '@')
{
new team[32], teamCount, i
 
if(equali(arg1[1], "T"))
get_players(team, teamCount, "e", "TERRORIST")
 
else if (equali(arg1[1], "CT"))
get_players(team, teamCount, "e", "CT")
 
for (i = 0; i < teamCount; i++)
{
 
if(!is_user_connected(team[i]))
return PLUGIN_CONTINUE
 
set_user_frags(team[i], newFrags)
cs_set_user_deaths(team[i], newDeaths)
}
}
 
else if (arg1[0] == '!')
{
new tag[32], tagCount, i
replace(arg1, 32, "!", "")
get_players(tag, tagCount, "f", arg1)
 
for (i = 0; i < tagCount; i++)
{
 
if(!is_user_connected(tag[i]))
return PLUGIN_CONTINUE
 
set_user_frags(tag[i], newFrags)
cs_set_user_deaths(tag[i], newDeaths) 
}
}
 
else
{
new target = cmd_target(id, arg1, 3)
 
if(!is_user_connected(target))
return PLUGIN_HANDLED
 
set_user_frags(target, newFrags)
cs_set_user_deaths(target, newDeaths) 
}
 
return PLUGIN_HANDLED
}

Sprawdź czy dobrze ,bo jestem w tym początkujący :)

 

To jest na flagę "a"  jbc :D

 


  • +
  • -
  • 1


#598639 [Problem] bf2 Wyswietlanie odznak

Napisane przez HaX GaminG w 29.12.2013 20:26

Wgraj na www do public_html plik "bf2webdocs" z paczki bf2

Potem ustaw w amxx.cfg cvar-  bf2_help_url "twojastrona.pl/bf2webdocs"

 

 


  • +
  • -
  • 1


#598611 [ROZWIĄZANE] Info w motd

Napisane przez HaX GaminG w 29.12.2013 19:36

dzięki Zerko :) 

 

//Można zamknąć :D


  • +
  • -
  • 1


#598466 NonSteam nie może wejść na serwer

Napisane przez HaX GaminG w 29.12.2013 17:24

Pokaż amxx.cfg ,a na razie spróbuj coś takiego :)

 

Dopisz do amxx.cfg

// Default value: "_pw"
amx_password_field "_pw"
 
No chyba ,że już to masz ,a jeśli nie masz to możliwe ,że to właśnie przez to :)

  • +
  • -
  • 1


#582376 Problem z dodaniem admina na nick.

Napisane przez HaX GaminG w 02.11.2013 23:42

A pokaż plugins.ini :-D może masz wyłączony admin.amxx ?
  • +
  • -
  • 1