0 Members and 1 Guest are viewing this topic.
Procedure AppOnIdle(Ticks: integer);var i: Integer; begin if Knife_Drop_Info.Started = True then begin Knife_Drop_Info.Timer:= Knife_Drop_Info.Timer + 1; end; if (Knife_Drop_Info.Countdown = True) and (Knife_Drop_Info.CTimer <> -1) then begin for i:= 1 to 32 do begin if Player_Info[i].In_KD:= True then begin DrawText(i,'Knife Drop will begin in ' +inttostr(Knife_Drop_Info.CTimer) ' Seconds', 60,$FF9AAABC, 0.3,10,230); end; end; Knife_Drop_Info.CTimer:= Knife_Drop_Info.CTimer - 1; end; if Knife_Drop_Info.CTimer = -1 then begin Knife_Drop_Info.Countdown:= False Knife_Drop_Info.Started:= True; end; if Knife_Drop_Info.Started = True then begin Knife_Drop_Drop(); end; end;
DrawText(i,'Knife Drop will begin in ' +inttostr(Knife_Drop_Info.CTimer) ' Seconds', 60,$FF9AAABC, 0.3,10,230);
DrawText(i,'Knife Drop will begin in ' +inttostr(Knife_Drop_Info.CTimer) + ' Seconds', 60,$FF9AAABC, 0.3,10,230);
...I assumed that you only had to put he plus signs when doing inttostr or somthing along those lines,Silly, silly me.