Author Topic: Request : Message timer !  (Read 544 times)

0 Members and 1 Guest are viewing this topic.

Offline mich1103

  • Flagrunner
  • ****
  • Posts: 557
  • Did you say chocolate ? O.o
    • ZoMbIe-DeStRoYeR pk server
Request : Message timer !
« on: March 04, 2010, 09:55:15 am »
anyone have a simple script like at each 2 min that say a thing ???

Offline Gizd

  • Flagrunner
  • ****
  • Posts: 586
  • (Re)tired
    • Eat-this! community site
Re: Request : Message timer !
« Reply #1 on: March 04, 2010, 11:06:11 am »
Learn to script..............

Code: [Select]
procedure AppOnIdle(ticks: integer);
begin
  if (ticks mod 7200) = 0 then begin
    WriteConsole(0,'OMG TEXT!',RGB(200,200,200));
    WriteConsole(0,'more text!',RGB(100,100,100));
  end;
end;