Thread: Owner Show
View Single Post
bakugan
Member
Join Date: Dec 2023
Location: Bulgaria
Old 04-21-2024 , 07:59   Re: Owner Show
Reply With Quote #3

Quote:
Originally Posted by tedaimlocks View Post
HTML Code:
#include <amxmodx>
#include <colorchat>

#define PLUGIN "Show Owner"
#define VERSION "1.0"
#define AUTHOR "tedaimlocks"

public plugin_init() {
	register_plugin(PLUGIN, VERSION, AUTHOR)
        register_logevent("logevent_RoundStart", 2, "1=Round_Start");
	register_clcmd("say /owner", "ShowOwner")
	register_clcmd("say_team /owner", "ShowOwner")
}

public logevent_RoundStart()
	set_task(1.0, "ShowOwner");

public ShowOwner(id) {
    ColorChat(0, GREEN, "^x04Server Owners are: ^x03nFL // BaKuGan. [c], fOrest")
}
Why on earth does everything have to be calculated since I have a custom made plugin? Just to fix the error from the side, I don't need a new plugin
__________________
WebSite
bakugan is offline