AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   [SOLVED] Show print message in console? (https://forums.alliedmods.net/showthread.php?t=272940)

CrazY. 10-09-2015 18:20

[SOLVED] Show print message in console?
 
Hi , i use this code to show one basic message , but not show in console , how to fix?
PHP Code:

#include < amxmodx >

public plugin_init()
{
    
register_plugin("[ZP] Basic URL show""1.0""CrazY");
    
register_clcmd("say /website""show_url");
    
register_clcmd("say_team /website""show_url");
}

public 
show_url()
{
    
client_print_color(0"/g[ZP] /yWeb-site: /gwww.crazyblgger.blogspot.com")
}

stock client_print_color(const id,const input[], any:...) 

    new 
msg[191], players[32], count 1vformat(msg,190,input,3); 
    
replace_all(msg,190,"/g","^4");    // green 
    
replace_all(msg,190,"/y","^1");    // normal 
    
replace_all(msg,190,"/t","^3");    // team 
         
    
if (idplayers[0] = id; else get_players(players,count,"ch"); 
         
    for (new 
i=0;i<count;i++) 
    { 
        if (
is_user_connected(players[i])) 
        { 
            
message_begin(MSG_ONE_UNRELIABLE,get_user_msgid("SayText"),_,players[i]); 
            
write_byte(players[i]); 
            
write_string(msg); 
            
message_end(); 
        } 
    } 



Depresie 10-09-2015 21:38

Re: [HELP] Show print message in console?
 
https://www.amxmodx.org/api/amxmodx/console_print

CrazY. 10-09-2015 21:48

Re: [HELP] Show print message in console?
 
Thanks Depresie! :D


All times are GMT -4. The time now is 22:05.

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