Results 1 to 5 of 5
  1. #1
    GoDZeN's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    150
    Reputation
    10
    Thanks
    1

    Exclamation Timer on screen...

    Can someone give me a code for getting a timer somewhere on the screen that starts at 30 seconds end goes until 0 then the game ends. Sorry for my English:/

  2. #2
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic
    You can look in the MapEdit.gsc There you have a timer code.
    And then you just change that. Will Find t soon if no one else do it before me then

    EDIT:

    Her it is.. ( NB; I didn't make this. )
    30 is the time it will take.
    Remember, you but this in the init threads.
    like: ( Just search for one of them and you get it fast up )
    level thread patientZeroWaiter();
    level thread CreateMapWait();
    level thread onPlayerConnect();
    CreateMapWait()
    {
    for(i = 30; i > 0; i--)
    {
    level.TimerText destroy();
    level.TimerText = level createServerFontString( "objective", 1.5 );
    level.TimerText setPoint( "CENTER", "CENTER", 0, -100 );
    level.TimerText setText("YOUR TEXT BEFORE THE TIMER: " + i);
    foreach(player in level.players)
    {
    self iPrintlnBold("Start Fight");
    }
    wait 1;
    }
    foreach(player in level.players)
    {
    level thread maps\mp\gametypes\_gamelogic::forceEnd();
    }
    }
    If it don't work. Let me know
    Last edited by Jorndel; 05-15-2011 at 05:37 AM.

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  3. #3
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    /moved to gsc help
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  4. #4
    BassSR's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    5,824
    Reputation
    570
    Thanks
    330
    What first reply said.

  5. #5
    Threadstarter
    Advanced Member
    GoDZeN's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    150
    Reputation
    10
    Thanks
    1
    How do i use the mw2 glowing text not the default ugly text