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
 

Grz3sznik - zdjęcie

Grz3sznik

Rejestracja: 21.08.2010
Aktualnie: Nieaktywny
Poza forum Ostatnio: 20.07.2011 22:04
-----

Moje tematy

Admin przez plugin?

01.07.2011 19:55

Witam
Da sie zrobic ze moge dac admina przez plugin (własny) ? ; )
Żeby samo dodawalo do users.ini a jeszcze lepiej jak by nie bylo widac ; P
daje +
pzdr.

menu na len guziki na wspak :/

21.06.2011 21:37

Witam
mam probelm z menu (len) ze 8 to dalej a 9 to wstecz i nie wiem jak to zrobic kod sma:
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>

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

#define opis_1 "Respawn"
#define opis_2 "+50 HP."
#define opis_3 "+75 Kevlar."
#define opis_4 "Szybciej biegasz."
#define opis_5 "Niewidzialnosc 20 sec."
#define opis_6 "Zestaw Broni."
#define opis_7 "Lajcik."
#define opis_8 "NoClip 10 sec."
#define opis_9 "AjM."
#define opis_10 "Wh."
#define opis_11 "Ruletka."
#define opis_12 "Czapki."
#define opis_13 "Mniejsza Gravitacja."
#define opis_14 "Niespodzianka."
#define opis_15 "Kurczaki Ziemniaki."
#define opis_16 "+200 fragow w TAB."

new gCvar_CenaRespawn, gCvar_CenaZycie, gCvar_CenaKamizelka, gCvar_CenaSzybkosc, gCvar_CenaNiewidzialnosc, gCvar_CenaZestawBroni, gCvar_CenaMarihuana, gCvar_CenaNoClip, gCvar_CenaGravitacja, gCvar_CenaAim, gCvar_CenaWh,gCvar_CenaRuletka, gCvar_CenaCzapki, gCvar_CenaSuprise, gCvar_CenaKurczak, gCvar_CenaHajt;

public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /sklep", "SklepIndex");
register_clcmd("strona", "SklepIndex");
register_clcmd("strona2", "SklepIndex2");

register_menucmd(register_menuid("SklepIndex"), 1023, "SklepIndexClase");
register_menucmd(register_menuid("SklepIndex2"), 1023, "SklepIndexClase2");

gCvar_CenaRespawn = register_cvar("4fun_sklep_respawn", "7500"); //1
gCvar_CenaZycie = register_cvar("4fun_sklep_zycie", "7500"); //2
gCvar_CenaKamizelka = register_cvar("4fun_sklep_kamizelka", "7500"); //3
gCvar_CenaSzybkosc = register_cvar("4fun_sklep_szybkosc", "7500"); //4
gCvar_CenaNiewidzialnosc = register_cvar("4fun_sklep_niewidzialnosc", "7500"); //5
gCvar_CenaZestawBroni = register_cvar("4fun_sklep_zestawbroni", "7500"); //6
gCvar_CenaMarihuana = register_cvar("4fun_sklep_marysia", "7500"); //7
gCvar_CenaNoClip = register_cvar("4fun_sklep_noclip", "7500"); //8
gCvar_CenaGravitacja = register_cvar("4fun_sklep_gravitacja", "7500"); //9
gCvar_CenaAim = register_cvar("4fun_sklep_aim", "7500"); //10
gCvar_CenaWh = register_cvar("4fun_sklep_wh", "7500"); //11
gCvar_CenaRuletka = register_cvar("4fun_sklep_ruletka", "7500"); //12
gCvar_CenaCzapki = register_cvar("4fun_sklep_czapki", "7500"); //13
gCvar_CenaSuprise = register_cvar("4fun_sklep_prezent", "7500"); //14
gCvar_CenaKurczak = register_cvar("4fun_sklep_kurczak", "7500"); //15
gCvar_CenaHajt = register_cvar("4fun_sklep_hajt", "7500"); //16
// Add your code here...
}

public SklepIndex(id)
{

client_print(id,print_center,"4FuN Sklep by KomorniQ ~.~ - Strona 1/2");

new gMenuBody[512], len, keys;

len = format(gMenuBody, (sizeof gMenuBody - 1), "\w[\y4FuN Sklep by \rKomorniQ ~.~\w] \yStrona \w1\r/\w2^n");
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y1.\w Respawn \d[\r-%d $\d] \d(%s\d)" , get_pcvar_num( gCvar_CenaRespawn ), opis_1 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y2.\w Zycie \d[\r-%d $\d] \d(%s\d)" , get_pcvar_num( gCvar_CenaZycie ), opis_2 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y3.\w Kamizelka \d[\r-%d $\d] \d(%s\d)" , get_pcvar_num( gCvar_CenaKamizelka ), opis_3 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y4.\w Szybkosc \d[\r-%d $\d] \d(%s\d)" , get_pcvar_num( gCvar_CenaSzybkosc ), opis_4 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y5.\w Niewidzialnosc \d[\r-%d $\d] \d(%s\d)" , get_pcvar_num( gCvar_CenaNiewidzialnosc ), opis_5 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y6.\w Zestaw Broni \d[\r-%d $\d] \d(%s\d)" , get_pcvar_num( gCvar_CenaZestawBroni ), opis_6 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y7.\w Marihuana \d[\r-%d $\d] \d(%s\d)" , get_pcvar_num( gCvar_CenaMarihuana ), opis_7 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y8.\w NoClip \d[\r-%d $\d] \d(%s\d)^n" , get_pcvar_num( gCvar_CenaNoClip ), opis_8 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y9.\w Dalej");
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y0.\w Wyjscie");

keys = (1<<0)|(1<<1)|(1<<2)|(1<<3)|(1<<4)|(1<<5)|(1<<6)|(1<<7)|(1<<8)|(1<<9)|(1<<10);

show_menu(id, keys, gMenuBody, -1, "SklepIndexClase");

return 1;
}

public SklepIndex2(id)
{

client_print(id,print_center,"4FuN Sklep by KomorniQ ~.~ - Strona 2/2");

new gMenuBody[512], len, keys;

len = format(gMenuBody, (sizeof gMenuBody - 1), "\w[\y4FuN Sklep by \rKomorniQ ~.~\w] \yStrona \w2\r/\w2^n");
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y1.\w Aim \d[\r-%d $\d] \d(%s\d)" , get_pcvar_num( gCvar_CenaAim ), opis_9 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y2.\w Wh \d[\r-%d $\d] \d(%s\d)" , get_pcvar_num( gCvar_CenaWh ), opis_10 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y3.\w Ruletka \d[\r-%d $\d] \d(%s\d)" , get_pcvar_num( gCvar_CenaRuletka ), opis_11 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y4.\w Czapki \d[\r-%d $\d] \d(%s\d)" , get_pcvar_num( gCvar_CenaCzapki ), opis_12 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y5.\w Gravitacja \d[\r-%d $\d] \d(%s\d)" , get_pcvar_num( gCvar_CenaGravitacja ), opis_13 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y6.\w Suprise \d[\r-%d $\d] \d(%s\d)" , get_pcvar_num( gCvar_CenaSuprise ), opis_14 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y7.\w Kurczaki Ziemniaki \d[\r-%d $\d] \d(%s\d)" , get_pcvar_num( gCvar_CenaKurczak ), opis_15 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y8.\w Zostan Hajtem \d[\r-%d $\d] \d(%s\d)^n" , get_pcvar_num( gCvar_CenaHajt ), opis_16 );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y9.\w Wroc");
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y0.\w Wyjscie");

keys = (1<<0)|(1<<1)|(1<<2)|(1<<3)|(1<<4)|(1<<5)|(1<<6)|(1<<7)|(1<<8)|(1<<9)|(1<<10);

show_menu(id, keys, gMenuBody, -1, "SklepIndexClase2");

return 1;
}

public SklepIndexClase2(id, key)
{
switch(key + 1)
{
case 1:
{
SklepIndex2(id);
}
case 2:
{
SklepIndex2(id);
}
case 3:
{
SklepIndex2(id);
}
case 4:
{
SklepIndex2(id);
}
case 5:
{
SklepIndex2(id);
}
case 6:
{
SklepIndex2(id);
}
case 7:
{
SklepIndex2(id);
}
case 8:
{
SklepIndex2(id);
}
case 9:
{
SklepIndex(id);
}
}

return 1;
}

public SklepIndexClase(id, key)
{
switch(key + 1)
{
case 1:
{
SklepIndex(id);
}
case 2:
{
SklepIndex(id);
}
case 3:
{
SklepIndex(id);
}
case 4:
{
SklepIndex(id);
}
case 5:
{
SklepIndex(id);
}
case 6:
{
SklepIndex(id);
}
case 7:
{
SklepIndex(id);
}
case 8:
{
SklepIndex(id);
}
case 9:
{
SklepIndex2(id);
}
}

return 1;
}


daje +

plugin vote

11.06.2011 20:44

Poszukuję pluginu gdzie pokaze się vote który rodzaj klocków gramy 1 czy 2
zeby czytalo plik *.bm
wersja bm v4.01

Problem z efektami i taskiem

11.06.2011 15:25

Witom
mam takie problemy pomoze ktos?
1. Nie task nie dziala po 15 sec :/
2. żeby dzialalo to przez 15 sec
message_begin(MSG_ONE, get_user_msgid("ScreenFade"), {0,0,0}, id)
write_short(~0)
write_short(~0)
write_short(0x0004) // stay faded
write_byte(0)
write_byte(153)
write_byte(0)
write_byte(100)
message_end()

new gmsgShake = get_user_msgid("ScreenShake")
message_begin(MSG_ONE, gmsgShake, {0,0,0}, id)
write_short(255<< 14 ) //ammount
write_short(10 << 14) //lasts this long
write_short(255<< 14) //frequency
message_end()


3. Jak zrobic spam komendami: adjust_crosshair - przez 15 sec

Cale Sma:
Załączony plik  jb.sma   7,67 KB  30 Ilość pobrań
  jb.amxx

Text ustawiany cvarem nie dziala :// pokazuje 0

11.06.2011 10:05

Witom mam taki problem chcę zrobic ze txt ustawia sie cvarem
tzn. nick steam i gg na cvar

linijka: 103


sma:
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>
#include <ColorChat>

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



#define prefix "[ Diller FS ]"
#define prefixs "%hostname%"
#define MoDprefix "[ JailBreak MoD ]"

#define reg_1 "Regulamin pozycja 1"
#define reg_2 "Regulamin pozycja 2"
#define reg_3 "Regulamin pozycja 3"
#define reg_4 "Regulamin pozycja 4"
#define reg_5 "Regulamin pozycja 5"

new gMsgScreenFade

new gCvar_Heroina, gCvar_Kokaina, gCvar_Amfetamina, gCvar_Marihuana, gCvar_LSD, gCvar_Steam, gCvar_Gadu;

public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /diller", "DillerIndex");
register_clcmd("say_team /diller", "DillerIndex");

register_clcmd("say /index", "SerwerIndex");
register_clcmd("SerwerIndex", "SerwerIndex");

register_menucmd(register_menuid("SerwerIndex"), 1023, "SerwerIndexClase");
register_menucmd(register_menuid("DillerIndex"), 1023, "DillerIndexClase");

gCvar_Heroina = register_cvar("koszt_heroina", "7500");
gCvar_Kokaina = register_cvar("koszt_kokaina", "8500");
gCvar_Amfetamina = register_cvar("koszt_amfetamina", "4500");
gCvar_Marihuana = register_cvar("koszt_marihuana", "13000");
gCvar_LSD = register_cvar("koszt_lsd", "10000");
gCvar_Steam = register_cvar("netek_steam", "Wpisz w amxx.cfg");
gCvar_Gadu = register_cvar("netek_gg", "Wpisz w amxx.cfg");

// Add your code here...
}

public client_connect(id)
{
client_cmd(id, "bind ^"v^" ^"SerwerIndex^"");
}

public SerwerIndex(id)
{
new gMenuBody[512], len, keys;

len = format(gMenuBody, (sizeof gMenuBody - 1), "\w%s \yGlowne menu:^n",MoDprefix);
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y1.\w Polacz z innym serwerem");
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y2.\w Pokaz link forum^n");
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y3.\w Ruletka");
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y4.\w Diller! \y[\rNoWoSc!\y]^n");
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y5.\w Kto jest H@ serwera?");
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y6.\w Kontakt z H@^n");
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y7.\w Lista Adminow\y[\rNoWoSc!\y]");
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y8.\w Kontakt z Adminami!");
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y9.\w \rRegulamin \ySerwera \w!");
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y0.\w Wyjscie");

keys = (1<<0)|(1<<1)|(1<<2)|(1<<3)|(1<<4)|(1<<5)|(1<<6)|(1<<7)|(1<<8)|(1<<5);

show_menu(id, keys, gMenuBody, -1, "SerwerIndexClase");

return 1;
}

public SerwerIndexClase(id, key)
{
switch(key + 1)
{
case 1:
{
ColorChat(id, RED, "%s^x01 Przepraszamy, ale ta funkcja jest^x04 wylaczona^x01.",MoDprefix);
}
case 2:
{
ColorChat(id, RED, "%s^x01 Adres internetowy forum to^x04 www.FullSkill.Xaa.PL^x01",MoDprefix);
}
case 3:
{
client_cmd(id, "say /ruletka" );
}
case 4:
{
DillerIndex(id);
}
case 5:
{
ColorChat(id, RED, "%s^x01 HeadAdmin serwera to^x04 NetekxD^x01.",MoDprefix);
}
case 6:
{
ColorChat(id, RED, "%s^x01 Steam:^x04 %d^x01 Gadu-Gadu:^x04 %d^x01.",MoDprefix ,get_pcvar_num( gCvar_Steam ) ,get_pcvar_num( gCvar_Gadu ) );
}
case 7:
{
ColorChat(id, RED, "%s^x01 Przepraszamy, ale ta funkcja jest^x04 wylaczona^x01.",MoDprefix);
}
case 8:
{
ColorChat(id, RED, "%s^x01 Przepraszamy, ale ta funkcja jest^x04 wylaczona^x01.",MoDprefix);
}
case 9:
{
ZasadyMenu(id);
}
}

return 1;
}

public ZasadyMenu(id)
{
set_hudmessage(255, 0, 0, 0.02, 0.18, 2, 6.0, 7.0, 0.1);
show_hudmessage(id, "Regulamin!^n1. %s^n2. %s^n3. %s^n4. %s^n5. %s^nZapraszamy na Forum", reg_1 ,reg_2 ,reg_3 ,reg_4 ,reg_5 );
}

public DillerIndex(id)
{
new gMenuBody[512], len, keys;

len = format(gMenuBody, (sizeof gMenuBody - 1), "\w%s \yLista narkotykow:^n",prefix);
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y1.\w Marihuana - \r%d\y$", get_pcvar_num( gCvar_Marihuana ) );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y2.\w LSD - \r%d\y$", get_pcvar_num( gCvar_LSD ) );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y3.\w Kokaina - \r%d\y$", get_pcvar_num( gCvar_Kokaina ) );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y4.\w Heroina - \r%d\y$", get_pcvar_num( gCvar_Heroina ) );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y5.\w Amfetamina - \r%d\y$^n", get_pcvar_num( gCvar_Amfetamina ) );
len += format(gMenuBody[len], (sizeof gMenuBody - 1) - len, "^n\y0.\w Wyjscie");

keys = (1<<0)|(1<<1)|(1<<2)|(1<<3)|(1<<4)|(1<<9);

show_menu(id, keys, gMenuBody, -1, "DillerIndexClase");

return 1;
}

public DillerIndexClase(id, key)
{
switch(key + 1)
{
case 1:
{
Marysia(id);
}
case 2:
{
//ShowPlayerInfoMenu(id);
}
case 3:
{
//Sho/
}
case 4:
{
//
}
case 5:
{
//
}
}

return 1;
}

public Marysia(id)
{
message_begin(MSG_ONE,gMsgScreenFade,{0,0,0},id)
write_short( 6*(1<<12) ) //duration
write_short( 2*(1<<12) ) //hold time
write_short( 0x0000 ) //flags
write_byte( 0 ) // RRR
write_byte( 255 ) // GGG
write_byte( 0 ) // BBB
write_byte( 0 ) // Alpha
message_end()
}


daje ++