View Single Post
aron9forever
Veteran Member
Join Date: Feb 2013
Location: Rromania
Old 09-13-2017 , 13:59   Re: search Welcome Message plugin
Reply With Quote #6

ok nevermind I thought you found a simple plugin but you posted a gigantic one compared to what you need
here try this

Code:
#include <amxmodx> #pragma semicolon 1 static const WELCOME_MESSAGE[] = "Welcome to my server!"; public plugin_init() {   register_plugin("Simplest Welcome Message", "1.0", "aron9forever aka Carnacior"); } public client_putinserver(id) {   set_task(3.0, "display_message", id); } public display_message(id) {   client_print(id, print_chat, WELCOME_MESSAGE); }

Just edit the text with whatever you want. Let me know if you want colors, that changes stuff a bit
__________________
Meanwhile, in 2050:
Quote:
Originally Posted by aron9forever
useless small optimizations
Quote:
Originally Posted by Black Rose View Post
On a map that is 512x512x128 units you end up with 3,355,443,200,000 different "positions". To store each one of those positions individually in the variable "user_or" you need 12 terabytes of memory.

Last edited by aron9forever; 09-13-2017 at 14:00.
aron9forever is offline