View Single Post
  #51  
Old 12-07-2011, 01:47 PM
FG28_Kodiak FG28_Kodiak is offline
Approved Member
 
Join Date: Dec 2009
Location: Swabia->Bavaria->Germany
Posts: 884
Default

It's not possible.
GamePlay.gpHUDLogCenter(..) doesn't support it, i've tried it too .

You can use the timeout command to show one message after another.

Code:
SendScreenMessageTo(1, "Note");

Timeout(5, () =>    // Time in Seconds
{
     SendScreenMessageTo(1, "Press TAB and 4 at ANY time");
});
Timeout(10, () =>    
{
SendScreenMessageTo(1, "Load any submission available in the list");
});
etc.
Reply With Quote