|
Author
|
Message
|
|
Veteran Member
|

02-04-2007
, 21:27
Re: Reading from a file
|
#1
|
Quote:
Originally Posted by Paladinrocker
I forgot another tidbit, this is the actual displaying part. It's when the player joins.
Code:
if(special_steamid(players[i]))
{
set_hudmessage(255, 0, 0, 0.0, 0.13, 0, 2.0, 12.0);
show_hudmessage(players[i], "%s (%s) connected", playerName, authId);
}
else
{
set_hudmessage(0, 255, 0, 0.0, 0.13, 0, 2.0, 12.0);
show_hudmessage(players[i], "%s (%s) connected", playerName, authId);
}
|
I'm not exactly sure, but on the other function (Special_Steamid). I tryed making it return 1 or 0 but always returned zero. So that's why i used the 'valid' integer to make it return 1 or 0.
|
|
|
|