AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   plugin, that shows msg after avery 5 mins` (https://forums.alliedmods.net/showthread.php?t=51529)

ricshs 02-19-2007 13:01

plugin, that shows msg after avery 5 mins`
 
Hi!
It would be grat, that some one would make a plugin, that will show one of 5 given messages randomly after 5 mins!
If you have a hint, please post! ;)

[ --<-@ ] Black Rose 02-19-2007 13:24

Re: plugin, that shows msg after avery 5 mins`
 
Code:
#include <amxmodx> new messages[][] = {     "Enter",     "5",     "messages",     "right",     "here" } public plugin_init() {     register_plugin("", "", "")     set_task(300.0, "task") } public task()     client_print(0, print_chat, "%s", messages[random_num(0,4)])

ricshs 02-19-2007 13:29

Re: plugin, that shows msg after avery 5 mins`
 
thx for that! ;)


All times are GMT -4. The time now is 00:44.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.