![]() |
|
#6
|
|||
|
|||
|
Code:
GamePlay.gpHUDLogCenter(null, "Only two seconds visible", new object[]{}, 2);
ups missunderstood the question: you must place the messages if used in OnTickGame in a if clause example: Code:
public override void OnTickGame()
{
base.OnTickGame();
if (Time.tickCounter() % 300 == 0) // every 10 sec.
{
// your code here
}
}
Last edited by FG28_Kodiak; 06-12-2012 at 10:25 AM. |
|
|