Raised This Month: $ Target: $400
 0% 

Color?


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
kp_uparrow
Penalized Member
Join Date: Jun 2006
Location: 192.168.0.1
Old 12-07-2006 , 11:54   Color?
Reply With Quote #1

how to you make text go in a color "red blue green normal"(cs)?

I want the IP and Country to show up as green

Code:
/* AMXX Mod script.
*
*
*  Join_IP 1.1 created by jsauce
* 
*
*  Okay so this plugin gets a user's info when they are authorized, then
*  it displays it to everyone when they join and leave. If you are an admin you 
*  get to see the user's ip address and steamid. All other user's just get to see 
*  the player's name! 
*  
*
*  
*
*  1.1 Changed access() to get_user_flags() seems to work better for everyone.
*      Also changed how the rank shows, and changed default show level to ADMIN_LEVEL_A
*  1.0 initial release		// rank idea from Kindzhon's enter/leave plugin.
*
*/


#include <amxmodx>
#include <amxmisc>
#include <geoip>

#define CSSTATS // If you want to show the user's rank on join and on leave.
//	You must be using the csstats module and have stats plugins loaded.
//	Comment it out if you don't want to use it.
#if defined CSSTATS
#include <csstats>
#endif
#define ADMIN ADMIN_ALL	// Change to something else if you like.

public plugin_init()
{
  register_plugin("Join IP","1.1","jsauce")
  
}
public client_authorized(id)
{
	set_task(0.2,"client_is_auth",id)
}

public client_is_auth(id)
{
	new authid[35],user[32],ip[32],players[32],inum,Country[33],Ip[16]
	get_user_name(id,user,31)
	get_user_ip(id,ip,31,1)
	get_user_authid(id,authid,34)
	get_players(players,inum)
	geoip_country(ip,Country)
	#if defined CSSTATS
	new izStats[8], izBody[8]
	new iRankPos, iRankMax
  	iRankPos = get_user_stats(id,izStats,izBody)
  	iRankMax = get_statsnum()
	for (new i = 0; i < inum; ++i)
	{
      	client_print(players[i],print_chat,"%s (%s) (%s) is connecting to server (%s).",user,ip,authid,Country)
	}
	#endif
	return PLUGIN_CONTINUE
}

public client_putinserver(id){
	new authid[35],user[32],ip[32],players[32],inum,Country[33],Ip[16]
	get_user_name(id,user,31)
	get_user_ip(id,ip,31,1)
	get_user_authid(id,authid,34)
	get_players(players,inum)
	geoip_country(ip,Country)
	#if defined CSSTATS
	new izStats[8], izBody[8]
	new iRankPos, iRankMax
  	iRankPos = get_user_stats(id,izStats,izBody)
  	iRankMax = get_statsnum()
	for (new i = 0; i < inum; ++i)
	{
      	client_print(players[i],print_chat,"%s (%s) (%s) Joined (%s).",user,ip,authid,Country)
	client_cmd(players[i],"hud_saytext_time 10")
	client_cmd(players[i],"hud_deathnotice_time 10")
	}
	#endif
	return PLUGIN_CONTINUE
}


public client_disconnect(id)
{
	new authid[35],user[32],ip[32],players[32],inum,Country[33],Ip[16]
	get_user_name(id,user,31)
	get_user_ip(id,ip,31,1)
	get_user_authid(id,authid,34)
	get_players(players,inum)
	geoip_country(ip,Country)
	#if defined CSSTATS
	new izStats[8], izBody[8]
	new iRankPos, iRankMax
  	iRankPos = get_user_stats(id,izStats,izBody)
  	iRankMax = get_statsnum()
	for (new i = 0; i < inum; ++i)
	{

      	client_print(players[i],print_chat,"%s (%s) (%s) has disconnected (%s).",user,ip,authid,Country)

  	}
	#endif
	return PLUGIN_CONTINUE
}
The above works but there is not color so its boring,
thank you
__________________
I USED A SECOND ACCOUNT TO DO MORE KARMA UPS AND DOWNS UNTIL GREENTRYST CAUGHT ME
kp_uparrow is offline
 



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 06:53.


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