3D Label to player
#4

Quote:
Originally Posted by RenSoprano
Посмотреть сообщение
pawn Код:
if (strcmp("/soldier", cmdtext, true, 10) == 0)
    {
    SendClientMessage(playerid, soldiercolor, "You are now a soldier.");
    pTeam[playerid] = team_soldier;
    SetPlayerSkin(playerid, 287);
    GivePlayerWeapon(playerid, 17, 10);
    GivePlayerWeapon(playerid, 27, 50);
    GivePlayerWeapon(playerid, 31, 200);
    new Text3D:playertextid;
    new Float:X, Float:Y, Float:Z;
    GetPlayerPos( playerid, X, Y, Z );
    new string[128];
    format(string, sizeof(string), " %s : Soldier", GetPlayerName(playerid));
    playertextid = CreatePlayer3DTextLabel(playerid,string,X,Y,Z,40.0);
    return 1;
}
How are you expecting this to work? You can't use 'GetPlayerName' directly like that, unless you create a function to do so. You save the player name into a variable using 'GetPlayerName'.
Reply


Messages In This Thread
3D Label to player - by Pawnstar - 26.11.2012, 21:14
Re: 3D Label to player - by Bicentric - 26.11.2012, 21:22
Re: 3D Label to player - by RenSoprano - 26.11.2012, 21:24
Re: 3D Label to player - by Bicentric - 26.11.2012, 21:26
Re: 3D Label to player - by Scenario - 26.11.2012, 21:27
Re: 3D Label to player - by RenSoprano - 26.11.2012, 21:28
Re: 3D Label to player - by Bicentric - 26.11.2012, 21:32
Re: 3D Label to player - by Pawnstar - 27.11.2012, 14:25

Forum Jump:


Users browsing this thread: 1 Guest(s)