Show Posts

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.


Messages - tyler12

Pages: [1]
1
Support / Re: Going to singleplayer
« on: December 02, 2013, 11:02:01 pm »
Make sure VCMP is installed in the vice city folder.

2
Snippet Showroom / Re: Head Value System
« on: October 06, 2013, 04:47:11 pm »
Simple, but you could format a string telling them their total head value.

For example:
Code: (pawn) [Select]
format(string,sizeof(string),"You have killed +1 noob, so no your head worth +$%d",gHeadValue[killerid]);

3
Snippet Showroom / Re: System Admins Chat
« on: May 04, 2013, 02:25:04 am »
You can use something like this, #This is admin chat.

Code: [Select]
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;
}

Pages: [1]