wooles
Number of posts : 15 Age : 32 Localizare : Zalau Registration date : 09/03/2009
| Subiect: Wooles -- Un mesaj hud pe svr de Amx!!!! Mier Mar 11, 2009 6:40 pm | |
| Uitati aicea un plugin de mesaj hud gata facut : #include #include
#define ADVR_TIME 30.0 // Time's show msg
stock const PLUGIN_NAME[] = "Hud Messages" stock const PLUGIN_AUTHOR[] = "P.Of.Pw" stock const PLUGIN_VERSION[] = "0.2"
// Messages stock const messages[][] = { "InFo | Jocul este free in limita bunului simt", "InFo | Tastati /resetscore pentru a va reseta scorul la 0", "InFo | Nu injurati adminii !", "InFo | MOtO:Respecta si vei fi respectat", "InFo | Contactati: cs_inkal" }
public plugin_init() register_plugin(PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR); public cmdHudMsg() { set_hudmessage(150, 190, 150, 0.02, 0.75, 2, 6.0, 12.0) show_hudmessage(0, "^%s",messages[random(sizeof messages)]); }
public client_putinserver(id) set_task(ADVR_TIME, "cmdHudMsg", random(1337), "", 0, "b", 0); | |
|