#include <amxmodx>
#include <amxmisc>
#include <fun>
#define PLUGIN "Uczymy sie"
#define VERSION "0.1"
#define AUTHOR "Henryk Gomolka, Heniut"
new szname[32];
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR);
}
public client_putinserver(id) {
get_user_name(id, szname, 31);
client_print(0, print_chat, "Witaj %s!", szname);
set_task(5.0,"sped");
}
public sped(id)
{
set_user_maxspeed(id, 600);
get_user_name(id, szname, 31);
client_print(id, print_chat, "Masz speeda %s!", szname);
}
Powinno to działać tak, że po wejściu każdemu się pokazuje np. Witaj Heniut!, a 5s po tym ustawia speed'a na 600 i pisze tylko do niego np. Masz speeda Heniut!Lecz nie dzieje się nic! Ani wiadomości, ani speeda. Proszę o pomoc


Dodatki SourceMod













