Raised This Month: $ Target: $400
 0% 

HELP !!! Make Part Of TEXT colored in sma file


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
ston3dmorrow
Junior Member
Join Date: Apr 2012
Old 10-19-2012 , 10:05   HELP !!! Make Part Of TEXT colored in sma file
Reply With Quote #1

Please help me, i need to text what printed to player when i use this command on player.
Like : An admin has given you invisibility.

PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <fun>

public plugin_init()
{
    
register_plugin("Invisibility","0.1","SweatyBanana")
    
register_clcmd("amx_invisible","invisible",ADMIN_BAN,"Invisibility On")
    
register_clcmd("amx_visible","visible",ADMIN_BAN,"Invisibility Off")
}

public 
invisible(id,level,cid)
{
    if (!(
get_user_flags(id)&ADMIN_BAN))
    {
        return 
PLUGIN_HANDLED
    
}

    new 
TARGET[32]
    
read_argv(1,TARGET,31)

    new 
PLAYER cmd_target(id,TARGET,7)

    
set_user_rendering(PLAYER,kRenderFxNone,0,0,0,kRenderTransAlpha,0)
    
client_print(PLAYER,print_chat,"An admin has given you invisibility.")

    return 
PLUGIN_HANDLED
}

public 
visible(id,level,cid)
{
    if (!(
get_user_flags(id)&ADMIN_BAN))
    {
        return 
PLUGIN_HANDLED
    
}

    new 
TARGET[32]
    
read_argv(1,TARGET,31)

    new 
PLAYER cmd_target(id,TARGET,7)

    
set_user_rendering(PLAYER,kRenderFxNone,0,0,0,kRenderTransAlpha,255)
    
client_print(PLAYER,print_chat,"An admin has taken away your invisibility.")

    return 
PLUGIN_HANDLED
}

public 
client_disconnect(id)
    
set_user_rendering(id,kRenderFxNone,0,0,0,kRenderTransAlpha,255
ston3dmorrow is offline
wickedd
Veteran Member
Join Date: Nov 2009
Old 10-19-2012 , 12:21   Re: HELP !!! Make Part Of TEXT colored in sma file
Reply With Quote #2

Search "ColorChat" or post in the request section.
__________________
Just buy the fucking game!!!!
I hate No-Steamers and lazy ass people.
wickedd is offline
xDrugz
Senior Member
Join Date: Jul 2011
Location: return 4;
Old 10-19-2012 , 15:56   Re: HELP !!! Make Part Of TEXT colored in sma file
Reply With Quote #3

you mean "colorchat" or "chatcolor"
search it with these keywords.
xDrugz is offline
tyin
Member
Join Date: Jun 2011
Location: Macedonia
Old 10-20-2012 , 22:29   Re: HELP !!! Make Part Of TEXT colored in sma file
Reply With Quote #4

ColorChat Guide

PHP Code:
#include <colorchat>
.
.
.
ColorChat(PLAYER,GREEN,"An admin ^1has taken away your invisibility."

Last edited by tyin; 10-20-2012 at 22:30. Reason: Added ColorChat Guide Link
tyin is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 02:01.


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