AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   Console print message (https://forums.alliedmods.net/showthread.php?t=232421)

Loupu. 12-30-2013 09:19

Console print message
 
Hi , can someone help me ... when a player enter server automat to recevie a console_print message , how to make it ?

Kia 12-30-2013 09:25

Re: Console print message
 
PHP Code:

/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>

#define PLUGIN "Welcome Message"
#define VERSION "1.0.0"
#define AUTHOR "Kia"

public plugin_init() 
{
    
register_plugin(PLUGINVERSIONAUTHOR)
}

// ===============================================================================
//     client_putinserver - Called when someone joins the game
// ===============================================================================

public client_putinserver(id)
{
    
client_print(idprint_console"Hello ^n This is the second line ^n And this the third.")



Loupu. 12-30-2013 09:26

Re: Console print message
 
Yeap , here is it , thk u kia , RESOLVED!

Kia 12-30-2013 10:00

Re: Console print message
 
No problem.


All times are GMT -4. The time now is 10:11.

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