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
 

Zdjęcie

[ROZWIĄZANE] Problem [argument type mismatch (argument 2)]


  • Zamknięty Temat jest zamknięty
14 odpowiedzi w tym temacie

#1 Dr.PaLaCz

    Początkujący

  • Użytkownik

Reputacja: -1
Nowy

  • Postów:11
  • Lokalizacja:Polska
Offline

Napisano 01.11.2011 20:01

Otóż mam problem.Mianowicie chcę,żeby komendy /sklep oraz /shop na sayu oraz team sayu,były tylko dla vipa.Przerobiłem plugin,ale przy komplikowaniu pojawia się problem
/tmp/text41l09K.sma(17) : error 035: argument type mismatch (argument 2)
/tmp/text41l09K.sma(18) : error 035: argument type mismatch (argument 2)
/tmp/text41l09K.sma(19) : error 035: argument type mismatch (argument 2)
/tmp/text41l09K.sma(20) : error 035: argument type mismatch (argument 2)

Plik sma wygląda tak:
[font="monospace"][color="#000000"]
[/color][/font]/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <engine>
#include <cstrike>
#include <fun>

#define PLUGIN "Pb Shop"
#define VERSION "1.0"
#define AUTHOR "[AvP] ELOS"


public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)

register_clcmd("say /sklep",ADMIN_LEVEL_H,"Sklep");
register_clcmd("say_team /sklep",ADMIN_LEVEL_H,"Sklep");
register_clcmd("say /shop",ADMIN_LEVEL_H,"Sklep");
register_clcmd("say_team /shop",ADMIN_LEVEL_H,"Sklep");
}


public Sklep(id)
{
new tytul[25];
format(tytul, 24, "Sklep Paintball VIP");
new menu = menu_create(tytul, "Sklep_Handler");
menu_additem(menu, "Granat Wybuchowy Koszt: 5000$");//1
menu_additem(menu, "Wyrzutnia Granatow Koszt: 14000$");//2
menu_additem(menu, "Granat Dymny Koszt: 4000$");//3
menu_additem(menu, "Super Marker Koszt: 6000$");//4
menu_display(id, menu);

}
public Sklep_Handler(id, menu, item)
{

if(!is_user_alive(id) || !is_user_connected(id))
return PLUGIN_CONTINUE;

new kasa = cs_get_user_money(id);

if(item == MENU_EXIT)

{
menu_destroy(menu);
return PLUGIN_CONTINUE;

}

switch(item)

{
case 0:

{
if(kasa >= 5000)

{
cs_set_user_money(id, kasa-5000);
give_item(id, "weapon_hegrenade")
client_print(id, print_chat, "[Sklep] Kupiles Granat Wybuchowy!");

}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy!");

}
case 1:

{
if(kasa >= 14000)

{
cs_set_user_money(id, kasa-14000);
give_item(id, "weapon_flashbang")
give_item(id, "weapon_flashbang")
client_print(id, print_chat, "[Sklep] Kupiles Wyrzutnie Granatow posiadasz 2 ladunki!");

}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy!");

}
case 2:

{
if(kasa >= 4000)

{
cs_set_user_money(id, kasa-4000);
give_item(id, "weapon_smokegrenade")
client_print(id, print_chat, "[Sklep] Kupiles Granat Dymny!");

}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy!");

}
case 3:

{
if(kasa >= 6000)

{
cs_set_user_money(id, kasa-6000);
give_item(id, "weapon_p90")
give_item(id, "weapon_primammo");
give_item(id, "weapon_primammo");
client_print(id, print_chat, "[Sklep] Kupiles Super Marker!");

}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy!");

}


}

return PLUGIN_CONTINUE;
}


/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*
{
rtf1 ansi deff0
{
fonttbl
{
f0 fnil Tahoma;
}
}
n viewkind4 uc1 pard lang1045 f0 fs16 n par
}
*/

  • +
  • -
  • 0

#2 MarWit

    The Chosen One

  • Przyjaciel

Reputacja: 843
Czempion

  • Postów:1 485
  • GG:
  • Steam:steam
  • Imię:Marcin
  • Lokalizacja:Bystrzyca
Offline

Napisano 01.11.2011 20:12

To jest na odwrót:

register_clcmd("say /sklep",ADMIN_LEVEL_H,"Sklep");
register_clcmd("say_team /sklep",ADMIN_LEVEL_H,"Sklep");
register_clcmd("say /shop",ADMIN_LEVEL_H,"Sklep");
register_clcmd("say_team /shop",ADMIN_LEVEL_H,"Sklep");

powinno być tak


register_clcmd("say /sklep", "Sklep", ADMIN_LEVEL_H);
register_clcmd("say_team /sklep", "Sklep", ADMIN_LEVEL_H);
register_clcmd("say /shop", "Sklep", ADMIN_LEVEL_H);
register_clcmd("say_team /shop", "Sklep", ADMIN_LEVEL_H);

  • +
  • -
  • 0

marwit-0.png


#3 NiFreZ

    Zaawansowany

  • Użytkownik

Reputacja: 11
Początkujący

  • Postów:116
  • Imię:tom
  • Lokalizacja:ASd
Offline

Napisano 01.11.2011 20:14

Dodatkowo żebyś zrozumiał
/tmp/text41l09K.sma(20) : error 035: argument type mismatch (argument 2)
XXXXXXXXXXXXXXXXXXXXXXXX ARGUMENT JEST ZŁY XX ARGUMENT 2 XX
register_clcmd("say /sklep",ADMIN_LEVEL_H,"Sklep");

xxxxxxxxxxxxxxxxxxxxx1 argumentxxx2 argument,xxxxxx3 argumentxxx

Dokształcajcie sie z elite ! :D
Pozdro Tomi =]
  • +
  • -
  • 0

#4 Dr.PaLaCz

    Początkujący

  • Autor tematu
  • Użytkownik

Reputacja: -1
Nowy

  • Postów:11
  • Lokalizacja:Polska
Offline

Napisano 01.11.2011 20:24

To jest na odwrót:


register_clcmd("say /sklep",ADMIN_LEVEL_H,"Sklep");
register_clcmd("say_team /sklep",ADMIN_LEVEL_H,"Sklep");
register_clcmd("say /shop",ADMIN_LEVEL_H,"Sklep");
register_clcmd("say_team /shop",ADMIN_LEVEL_H,"Sklep");

powinno być tak


register_clcmd("say /sklep", "Sklep", ADMIN_LEVEL_H);
register_clcmd("say_team /sklep", "Sklep", ADMIN_LEVEL_H);
register_clcmd("say /shop", "Sklep", ADMIN_LEVEL_H);
register_clcmd("say_team /shop", "Sklep", ADMIN_LEVEL_H);


Tak napisałem na początku,ale niestety nie działało,więc pomyślałem,że może kolejność jest zła,dlatego zamieniłem.Niestety,nawet gdy jest tak,nadal nie będąc vipem,mogę używać komendy /sklep i /shop na sayu i na team sayu.
  • +
  • -
  • 0

#5 MarWit

    The Chosen One

  • Przyjaciel

Reputacja: 843
Czempion

  • Postów:1 485
  • GG:
  • Steam:steam
  • Imię:Marcin
  • Lokalizacja:Bystrzyca
Offline

Napisano 01.11.2011 20:34

zmień
public Sklep(id)
na
public Sklep(id, level, cid)
oraz na początku publicu daj

if (!cmd_access(id, level, cid, 2))
return PLUGIN_HANDLED

  • +
  • -
  • 0

marwit-0.png


#6 Dr.PaLaCz

    Początkujący

  • Autor tematu
  • Użytkownik

Reputacja: -1
Nowy

  • Postów:11
  • Lokalizacja:Polska
Offline

Napisano 01.11.2011 21:09

zmień

public Sklep(id)
na
public Sklep(id, level, cid)
oraz na początku publicu daj

if (!cmd_access(id, level, cid, 2))
return PLUGIN_HANDLED

Problem z komplikacją
public Sklep(id, level, cid)
{
    if (!cmd_access(id, level, cid, 2))
    return PLUGIN_HANDLED


}
A błędy to
/tmp/text1gYG9p.sma(25) : error 029: invalid expression, assumed zero
/tmp/text1gYG9p.sma(25) : error 017: undefined symbol "Sklep"
/tmp/text1gYG9p.sma(25) : error 017: undefined symbol "level"
/tmp/text1gYG9p.sma(25) : fatal error 107: too many error messages on one line
  • +
  • -
  • 0

#7 MarWit

    The Chosen One

  • Przyjaciel

Reputacja: 843
Czempion

  • Postów:1 485
  • GG:
  • Steam:steam
  • Imię:Marcin
  • Lokalizacja:Bystrzyca
Offline

Napisano 01.11.2011 21:37

Podmień

public Sklep(id, level, cid)
{

if (!cmd_access(id, level, cid, 2))
return PLUGIN_HANDLED

new tytul[25];
format(tytul, 24, "Sklep Paintball VIP");
new menu = menu_create(tytul, "Sklep_Handler");
menu_additem(menu, "Granat Wybuchowy Koszt: 5000$");//1
menu_additem(menu, "Wyrzutnia Granatow Koszt: 14000$");//2
menu_additem(menu, "Granat Dymny Koszt: 4000$");//3
menu_additem(menu, "Super Marker Koszt: 6000$");//4
menu_display(id, menu);

}

  • +
  • -
  • 0

marwit-0.png


#8 Dr.PaLaCz

    Początkujący

  • Autor tematu
  • Użytkownik

Reputacja: -1
Nowy

  • Postów:11
  • Lokalizacja:Polska
Offline

Napisano 01.11.2011 21:48

Cały czas błędy.

/tmp/textcywgc6.sma(25) : error 029: invalid expression, assumed zero
/tmp/textcywgc6.sma(25) : error 017: undefined symbol "Sklep"
/tmp/textcywgc6.sma(25) : error 017: undefined symbol "level"
/tmp/textcywgc6.sma(25) : fatal error 107: too many error messages on one line
Plik sma wygląda tak.

/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <engine>
#include <cstrike>
#include <fun>

#define PLUGIN "Pb Shop"
#define VERSION "1.0"
#define AUTHOR "[AvP] ELOS"


public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)


register_clcmd("say /sklep", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say_team /sklep", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say /shop", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say_team /shop", "Sklep",  ADMIN_LEVEL_H);



public Sklep(id, level, cid)
{

if (!cmd_access(id, level, cid, 2))
return PLUGIN_HANDLED

new tytul[25];
format(tytul, 24, "Sklep Paintball VIP");
new menu = menu_create(tytul, "Sklep_Handler");
menu_additem(menu, "Granat Wybuchowy Koszt: 5000$");//1
menu_additem(menu, "Wyrzutnia Granatow Koszt: 14000$");//2
menu_additem(menu, "Granat Dymny Koszt: 4000$");//3
menu_additem(menu, "Super Marker Koszt: 6000$");//4
menu_display(id, menu);

}
public Sklep_Handler(id, menu, item)

{

if(!is_user_alive(id) || !is_user_connected(id))
return PLUGIN_CONTINUE;

new kasa = cs_get_user_money(id);

if(item == MENU_EXIT)



{
menu_destroy(menu);
return PLUGIN_CONTINUE;



}

switch(item)



{
case 0:



{
if(kasa >= 5000)



{
cs_set_user_money(id, kasa-5000);
give_item(id, "weapon_hegrenade")
client_print(id, print_chat, "[Sklep] Kupiles Granat Wybuchowy!");



}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy!");



}
case 1:



{
if(kasa >= 14000)



{
cs_set_user_money(id, kasa-14000);
give_item(id, "weapon_flashbang")
give_item(id, "weapon_flashbang")
client_print(id, print_chat, "[Sklep] Kupiles Wyrzutnie Granatow posiadasz 2 ladunki!");



}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy!");



}
case 2:



{
if(kasa >= 4000)



{
cs_set_user_money(id, kasa-4000);
give_item(id, "weapon_smokegrenade")
client_print(id, print_chat, "[Sklep] Kupiles Granat Dymny!");



}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy!");



}
case 3:



{
if(kasa >= 6000)



{
cs_set_user_money(id, kasa-6000);
give_item(id, "weapon_p90")
give_item(id, "weapon_primammo");
give_item(id, "weapon_primammo");
client_print(id, print_chat, "[Sklep] Kupiles Super Marker!");



}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy!");



}




}

return PLUGIN_CONTINUE;

}


/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*

{
rtf1 ansi deff0


{
fonttbl


{
f0 fnil Tahoma;


}


}
n viewkind4 uc1 pard lang1045 f0 fs16 n par

}
*/

  • +
  • -
  • 0

#9 NiFreZ

    Zaawansowany

  • Użytkownik

Reputacja: 11
Początkujący

  • Postów:116
  • Imię:tom
  • Lokalizacja:ASd
Offline

Napisano 02.11.2011 10:35

if(kasa >= 6000 && Tutaj wstaw Pobieranie flagi)

Else
Napisz : Nie masz kasy lub nie jestes vipem
  • +
  • -
  • 0

#10 Dr.PaLaCz

    Początkujący

  • Autor tematu
  • Użytkownik

Reputacja: -1
Nowy

  • Postów:11
  • Lokalizacja:Polska
Offline

Napisano 02.11.2011 15:50

if(kasa >= 6000 && Tutaj wstaw Pobieranie flagi)

Else
Napisz : Nie masz kasy lub nie jestes vipem


Cały czas te błędy:

/tmp/textlbeIWj.sma(25) : error 029: invalid expression, assumed zero
/tmp/textlbeIWj.sma(25) : error 017: undefined symbol "Sklep"
/tmp/textlbeIWj.sma(25) : error 017: undefined symbol "level"
/tmp/textlbeIWj.sma(25) : fatal error 107: too many error messages on one line
Całość sma wygląda tak:

/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <engine>
#include <cstrike>
#include <fun>

#define PLUGIN "Pb Shop"
#define VERSION "1.0"
#define AUTHOR "[AvP] ELOS"


public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)


register_clcmd("say /sklep", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say_team /sklep", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say /shop", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say_team /shop", "Sklep",  ADMIN_LEVEL_H);



public Sklep(id, level, cid)
{

if (!cmd_access(id, level, cid, 2))
return PLUGIN_HANDLED

new tytul[25];
format(tytul, 24, "Sklep Paintball VIP");
new menu = menu_create(tytul, "Sklep_Handler");
menu_additem(menu, "Granat Wybuchowy Koszt: 5000$");//1
menu_additem(menu, "Wyrzutnia Granatow Koszt: 14000$");//2
menu_additem(menu, "Granat Dymny Koszt: 4000$");//3
menu_additem(menu, "Super Marker Koszt: 6000$");//4
menu_display(id, menu);

}
public Sklep_Handler(id, menu, item)

{

if(!is_user_alive(id) || !is_user_connected(id))
return PLUGIN_CONTINUE;

new kasa = cs_get_user_money(id);

if(item == MENU_EXIT)



{
menu_destroy(menu);
return PLUGIN_CONTINUE;



}

switch(item)



{
case 0:



{
if(kasa >= 5000 && ADMIN_LEVEL_H)



{
cs_set_user_money(id, kasa-5000);
give_item(id, "weapon_hegrenade")
client_print(id, print_chat, "[Sklep] Kupiles Granat Wybuchowy!");



}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy,lub nie jestes Vipem!");



}
case 1:



{
if(kasa >= 14000 && ADMIN_LEVEL_H)



{
cs_set_user_money(id, kasa-14000);
give_item(id, "weapon_flashbang")
give_item(id, "weapon_flashbang")
client_print(id, print_chat, "[Sklep] Kupiles Wyrzutnie Granatow posiadasz 2 ladunki!");



}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy,lub nie jestes Vipem!");



}
case 2:



{
if(kasa >= 4000 && ADMIN_LEVEL_H)



{
cs_set_user_money(id, kasa-4000);
give_item(id, "weapon_smokegrenade")
client_print(id, print_chat, "[Sklep] Kupiles Granat Dymny!");



}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy,lub nie jestes Vipem!");



}
case 3:



{
if(kasa >= 6000 && ADMIN_LEVEL_H)



{
cs_set_user_money(id, kasa-6000);
give_item(id, "weapon_p90")
give_item(id, "weapon_primammo");
give_item(id, "weapon_primammo");
client_print(id, print_chat, "[Sklep] Kupiles Super Marker!");



}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy,lub nie jestes Vipem!");



}




}

return PLUGIN_CONTINUE;

}


/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*

{
rtf1 ansi deff0


{
fonttbl


{
f0 fnil Tahoma;


}


}
n viewkind4 uc1 pard lang1045 f0 fs16 n par

}
*/

  • +
  • -
  • 0

#11 NiFreZ

    Zaawansowany

  • Użytkownik

Reputacja: 11
Początkujący

  • Postów:116
  • Imię:tom
  • Lokalizacja:ASd
Offline

Napisano 02.11.2011 17:28

public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)


register_clcmd("say /sklep", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say_team /sklep", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say /shop", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say_team /shop", "Sklep",  ADMIN_LEVEL_H);


zamien na

public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)


register_clcmd("say /sklep", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say_team /sklep", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say /shop", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say_team /shop", "Sklep",  ADMIN_LEVEL_H);

}

  • +
  • -
  • 1

#12 Dr.PaLaCz

    Początkujący

  • Autor tematu
  • Użytkownik

Reputacja: -1
Nowy

  • Postów:11
  • Lokalizacja:Polska
Offline

Napisano 02.11.2011 19:38

public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)


register_clcmd("say /sklep", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say_team /sklep", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say /shop", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say_team /shop", "Sklep",  ADMIN_LEVEL_H);


zamien na

public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)


register_clcmd("say /sklep", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say_team /sklep", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say /shop", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say_team /shop", "Sklep",  ADMIN_LEVEL_H);

}

Dalej błędy,ale już lepiej.

/tmp/textFGrDnH.sma(30) : error 017: undefined symbol "cmd_access"
/tmp/textFGrDnH.sma(42) : warning 209: function "Sklep" should return a value

1 Error.
Could not locate output file /home/groups/amxmodx/public_html/websc3/textFGrDnH.amx (compile failed).
Całość sma wygląda tak:

/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <engine>
#include <cstrike>
#include <fun>

#define PLUGIN "Pb Shop"
#define VERSION "1.0"
#define AUTHOR "[AvP] ELOS"


public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)


register_clcmd("say /sklep", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say_team /sklep", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say /shop", "Sklep",  ADMIN_LEVEL_H);
register_clcmd("say_team /shop", "Sklep",  ADMIN_LEVEL_H);

}



public Sklep(id, level, cid)
{

if (!cmd_access(id, level, cid, 2))
return PLUGIN_HANDLED

new tytul[25];
format(tytul, 24, "Sklep Paintball VIP");
new menu = menu_create(tytul, "Sklep_Handler");
menu_additem(menu, "Granat Wybuchowy Koszt: 5000$");//1
menu_additem(menu, "Wyrzutnia Granatow Koszt: 14000$");//2
menu_additem(menu, "Granat Dymny Koszt: 4000$");//3
menu_additem(menu, "Super Marker Koszt: 6000$");//4
menu_display(id, menu);

}
public Sklep_Handler(id, menu, item)

{

if(!is_user_alive(id) || !is_user_connected(id))
return PLUGIN_CONTINUE;

new kasa = cs_get_user_money(id);

if(item == MENU_EXIT)



{
menu_destroy(menu);
return PLUGIN_CONTINUE;



}

switch(item)



{
case 0:



{
if(kasa >= 5000 && ADMIN_LEVEL_H)



{
cs_set_user_money(id, kasa-5000);
give_item(id, "weapon_hegrenade")
client_print(id, print_chat, "[Sklep] Kupiles Granat Wybuchowy!");



}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy,lub nie jestes Vipem!");



}
case 1:



{
if(kasa >= 14000 && ADMIN_LEVEL_H)



{
cs_set_user_money(id, kasa-14000);
give_item(id, "weapon_flashbang")
give_item(id, "weapon_flashbang")
client_print(id, print_chat, "[Sklep] Kupiles Wyrzutnie Granatow posiadasz 2 ladunki!");



}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy,lub nie jestes Vipem!");



}
case 2:



{
if(kasa >= 4000 && ADMIN_LEVEL_H)



{
cs_set_user_money(id, kasa-4000);
give_item(id, "weapon_smokegrenade")
client_print(id, print_chat, "[Sklep] Kupiles Granat Dymny!");



}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy,lub nie jestes Vipem!");



}
case 3:



{
if(kasa >= 6000 && ADMIN_LEVEL_H)



{
cs_set_user_money(id, kasa-6000);
give_item(id, "weapon_p90")
give_item(id, "weapon_primammo");
give_item(id, "weapon_primammo");
client_print(id, print_chat, "[Sklep] Kupiles Super Marker!");



}


else
client_print(id, print_chat, "[Sklep] Masz za malo kasy,lub nie jestes Vipem!");



}




}

return PLUGIN_CONTINUE;

}


/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*

{
rtf1 ansi deff0


{
fonttbl


{
f0 fnil Tahoma;


}


}
n viewkind4 uc1 pard lang1045 f0 fs16 n par

}
*/

  • +
  • -
  • 0

#13 MarWit

    The Chosen One

  • Przyjaciel

Reputacja: 843
Czempion

  • Postów:1 485
  • GG:
  • Steam:steam
  • Imię:Marcin
  • Lokalizacja:Bystrzyca
Offline

Napisano 02.11.2011 20:02

Pod
#include <amxmodx>
daj
#include <amxmisc>

  • +
  • -
  • 1

marwit-0.png


#14 Dr.PaLaCz

    Początkujący

  • Autor tematu
  • Użytkownik

Reputacja: -1
Nowy

  • Postów:11
  • Lokalizacja:Polska
Offline

Napisano 02.11.2011 21:04

Pod

#include <amxmodx>
daj
#include <amxmisc>


Pomogło,problem rozwiązany,można zamknąć ;]
Dzięki za wszystko.
  • +
  • -
  • 0

#15 Goliath

    Godlike

  • Przyjaciel

Reputacja: 1 237
Godlike

  • Postów:2 334
  • GG:
  • Steam:steam
  • Imię:Maciej
  • Lokalizacja:Mońki
Offline

Napisano 03.11.2011 16:37

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
  • +
  • -
  • 0




Użytkownicy przeglądający ten temat: 1

0 użytkowników, 1 gości, 0 anonimowych