1
Support / Re: Going to singleplayer
« on: December 02, 2013, 11:02:01 pm »
Make sure VCMP is installed in the vice city folder.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
format(string,sizeof(string),"You have killed +1 noob, so no your head worth +$%d",gHeadValue[killerid]);
public OnPlayerText(playerid,text[])
{
new string[124],Name[24];
if(text[0] == '#' && IsPlayerAdmin(playerid))
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) && IsPlayerAdmin(i))
{
GetPlayerName(playerid,Name,sizeof(Name));
format(string,sizeof(string),"Admin Chat %s: %s",Name,text[1]);
SendClientMessage(i,-1,string);
}
}
}
return 1;
}