23.01.2015, 17:16
i think its something like this ...
( BTW this script show only the weapon name )
( BTW this script show only the weapon name )
PHP код:
public OnPlayerDeath(playerid, killerid, reason)
{
new gunname[32], string[250];
GetWeaponName(reason,gunname,sizeof(gunname));
format(string, 250, "i Died By %s Weapon", gunname);
new Text3D:label = Create3DTextLabel(string, 0x38FF06FF, 30.0, 40.0, 50.0, 40.0, 0);
Attach3DTextLabelToPlayer(label, playerid, 0.0, 0.0, 0.7);
return 1;
}

