Mam Pytanie czy jest taki plugin który automatycznie wysyla wiadomosc !
Ma Wysyłać Wiadomość co 2 minuty !
Screen:
Użytkownik Cheaters edytował ten post 02.10.2011 17:16
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.
|
Napisano 02.10.2011 17:15
Użytkownik Cheaters edytował ten post 02.10.2011 17:16
Napisano 02.10.2011 17:50
amx_scrollmsg "TEKST (napisz %hostname% aby wyświetlało nazwe serva)" 600a także :
amx_imessage "TEKST" "000100255"
Napisano 02.10.2011 18:05
Napisano 17.10.2011 14:58
Napisano 18.10.2011 20:01
To reklamy dolne i górne. Miejsce wyświetlania możesz zmienić w pliku .smaJest taki cvar :
to :amx_scrollmsg "TEKST (napisz %hostname% aby wyświetlało nazwe serva)" 600a także :amx_imessage "TEKST" "000100255"
Napisano 19.10.2011 14:11
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
#define TEKST "Siec : Witaj na serwerze" // tutaj zmieniasz tekst na swoj
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
set_task(120.0, "POKAZ", 0,_,_,"b");
}
public POKAZ(){
set_hudmessage(255, 255, 255, 0.1, 0.63, 0, 6.0, 6.0)
show_hudmessage(0, "%s", TEKST)
}
Piszę pluginy pod: AMX MOD X oraz SOURCE MOD!
Na zlecenie i bez zlecenia zresztą też!
Napisano 20.10.2011 14:16
#include <amxmodx>
#define PLUGIN "PluginName"
#define VERSION "1.0"
#define AUTHOR "MarWit"
new g_szServerName[64];
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("TeamInfo", "eventJoinTeam", "a", "2=TERRORIST", "2=CT");
get_user_name(0, g_szServerName, 63)
}
public eventJoinTeam()
{
new id = read_data(1)
set_hudmessage(255, 255, 255, 0.05, 0.70, 0, 0.0, 5.0)
show_hudmessage(id, "%s: Witamy na serwerze!", g_szServerName)
}
Użytkownik MarWit edytował ten post 20.10.2011 14:16

Napisano 20.10.2011 15:02
#include <amxmodx>
#define PLUGIN "PluginName"
#define VERSION "1.0"
#define AUTHOR "MarWit"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
set_task(120.0,"showAdv",.flags = "b")
}
public showAdv()
{
set_hudmessage(255, 255, 255, 0.05, 0.70, 0, 0.0, 5.0)
show_hudmessage(0, "Siec: Witamy na serwerze!")
}
Napisano 20.10.2011 16:30
Napisano 20.10.2011 19:03
set_hudmessage(255, 255, 255, 0.05, 0.70, 0, 0.0, 5.0)trzy pierwsze opcje odpowiadają za kolor podajesz w rgb np czarny kolor to
set_hudmessage(0, 0, 0, 0.05, 0.70, 0, 0.0, 5.0)zielony to
set_hudmessage(0, 255, 0, 0.05, 0.70, 0, 0.0, 5.0)
0 użytkowników, 0 gości, 0 anonimowych