I'm working on a Military Ranks leveling system, but I've hit a snag already.
When you kill someone I want it to say + 5 in the centre of the screen CoD4 style, but the + 5 doesn't show up. Any idea why it doesn't show up?
Here's the code:
Procedure OnPlayerKill(Killer, Victim: byte;Weapon: string);
Begin
DrawText(Killer,'+ 5',100,RGB(255,255,255),0.1,320,240);
End;