Owned text
#1

Hey,I want to make that when player killed other player,he will get messege on right side: Owned.

I was making like this:
Код:
// OnPlayerDeath:
   if (killerid) {
    format(string, sizeof(string), "~r~ Owned");
    GameTextForPlayer(playerid, string, 1000, 1);
    }
and:
Код:
    if (playerid) {
    format(string, sizeof(string), "~r~ Owned");
    GameTextForPlayer(playerid, string, 1000, 1);
    }
But not works,it shows owned who dies.
Reply
#2

remove the if(*) part and It should work.
Reply
#3

pawn Код:
GameTextForPlayer(playerid,"Owned", 1000, 1);
GameTextForPlayer(killerid,"Owned", 1000, 1);
you need only this
Reply
#4

Thanks
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)