Recent Posts
None | 7 sec ago
None | 30 sec ago
Diff | 42 sec ago
Java | 56 sec ago
None | 2 min ago
None | 3 min ago
None | 3 min ago
C++ | 3 min ago
PHP | 3 min ago
None | 3 min ago
Sitereport
Find cool info about any domain on the internet?
visit sitereport
Free Subdomains
Want a pastebin.com sub-domain for your community?
learn more...
What is pastebin?
Pastebin is a website that hosts all your text & code on dedicated servers for easy sharing.
learn more...
By Anonymous on the 9th of Feb 2010 10:00:55 PM
Download |
Raw |
Embed |
Report
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "MOTD pravila"
#define VERSION "1.0"
#define AUTHOR "Massive Boredom"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /sajt","sajt")
register_clcmd("say_team /sajt","sajt")
register_cvar("Advertise","90")
set_task(get_cvar_float("Advertise"),"advertise" , _ , _ , _ , "b")
}
public sajt(id,level,cid)
{
new configsdir[200]
new MOTDfile[200]
get_configsdir(configsdir,199)
format(MOTDfile,199,"%s/motd_poruke/sajt.html",configsdir)
show_motd(id,MOTDfile)
return PLUGIN_HANDLED
}
public advertise()
{
client_print(0,print_chat,"Kucajte /sajt da otvorite MOTD prozor.")
return PLUGIN_HANDLED
}
Submit a correction or amendment below.
Make A New Post