help with this textdraw
#5

well now i have
Код:
public OnPlayerDeath(playerid, killerid, reason)
{
	new ptname[MAX_PLAYER_NAME];
	GetPlayerName(killerid,ptname,MAX_PLAYER_NAME);
    format(string,sizeof(string),"%s Owned",ptname);
    TextDrawSetString(KillTextDraw[killerid],string);
  	TextDrawShowForPlayer(killerid, KillTextDraw[killerid]);
	KillTextTimer[killerid] = SetTimerEx("HideKillDraw", 3000, false, "d", killerid);
    return 1;
}

public OnPlayerConnect()
{
	KillTextDraw[playerid] = TextDrawCreate(320.0, 360.0," ");
	TextDrawFont(KillTextDraw[playerid], 2);
	TextDrawSetShadow(KillTextDraw[playerid], 0);
	TextDrawSetOutline(KillTextDraw[playerid], 1);
	TextDrawAlignment(KillTextDraw[playerid], 2);
	TextDrawColor(KillTextDraw[playerid], COLOR_SRED);
    return 1;
}
and this is still not working...
Reply


Messages In This Thread
help with this textdraw - by Mishima - 23.07.2009, 21:19
Re: help with this textdraw - by MadeMan - 23.07.2009, 22:00
Re: help with this textdraw - by Mishima - 23.07.2009, 22:06
Re: help with this textdraw - by Joe Staff - 23.07.2009, 22:08
Re: help with this textdraw - by Mishima - 23.07.2009, 22:45
Re: help with this textdraw - by MadeMan - 23.07.2009, 22:47
Re: help with this textdraw - by Mishima - 23.07.2009, 23:35

Forum Jump:


Users browsing this thread: 1 Guest(s)