|
发表于 2010-12-24 12:44:08
|
显示全部楼层
来自 中国–四川–成都
- /* Plugin generated by AMXX-Studio */
- #include <amxmodx>
- #include <amxmisc>
- #define PLUGIN "New Plug-In"
- #define VERSION "0.01"
- #define AUTHOR "baby"
- public plugin_init() {
- register_plugin(PLUGIN, VERSION, AUTHOR)
-
- set_task(70.0, "task_lala", _, _, _, "b")//70.0为广告显示的间隔时间
- }
- public client_color(receiver, sender, sMessage[])
- {
- if(!sender)
- {
- return 0
- }
- message_begin(receiver ? MSG_ONE : MSG_ALL, get_user_msgid("SayText"), {0, 0, 0}, receiver)
- write_byte(sender)
- write_string(sMessage)
- message_end()
- return 1
- }
- public task_lala()
- {
- if (is_user_connected(1))
- {
- client_color(0, 1, "你的广告")//一条不够可多写一条复制client_color(0, 1, "你的广告")即可
- }
- }
- /* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
- *{\\ rtf1\\ ansi\\ ansicpg936\\ deff0{\\ fonttbl{\\ f0\\ fnil\\ fcharset134 Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang2052\\ f0\\ fs16 \n\\ par }
- */
复制代码 |
|