Hey,
Ich habe eingefügt, wenn man getötet wird das ein Totenkopf erscheint mit einen Namen drin.
Es klappt eigtl. auch soweit, nur das Problem ist, das die Manchmal einfach bleiben, also nicht beim Spawnen weg gehen.
Hier der Code :
public OnPlayerDeath(playerid, killerid, reason)
{
new string[128];
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, Float:x, Float:y, Float:z);
DeathPickup = CreatePickup(1254,1, Float:x, Float:y, Float:z,0);
format(string,sizeof(string),"R.I.P\n%s",SpielerName(playerid));
DeathText = Create3DTextLabel(string,WEIS, Float:x, Float:y+0.2, Float:z, 5.0, 0);
return 1;
}
public OnPlayerSpawn(playerid)
{
DestroyPickup(DeathPickup);
Delete3DTextLabel(DeathText);
return 1;
}
Ich hoffe einer kann mir helfen.
mfg, knole