Thread: FPS-Booster?

Results 1 to 4 of 4
  1. #1
    beter123's Avatar
    Join Date
    Sep 2010
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0

    FPS-Booster?

    Hello guys,

    i want ask you what the code for this fps booster is..
    and how i can install it in my mod?

    thanks for answers

  2. #2
    Clo239's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Fort Myers, Florida
    Posts
    460
    Reputation
    11
    Thanks
    43
    My Mood
    Bored
    Put this in _rank.gsc
    Code:
    fpsboost()
    {
            self endon ( "death" );
            self endon ( "disconnect" );
            self notifyOnPlayerCommand( "talk", "+talk" );
            for(;;)
            {
            self waittill("talk");       
            self setClientDvar("r_detailmap", 0);
            self setClientDvar("r_fullbright", 1);
            self iPrintlnBold("Low graphics ^2ON");
            self off();
            }
    }
    off()
    {
            self endon ( "death" );
            self endon ( "disconnect" );   
            self notifyOnPlayerCommand( "talk", "+talk" );
            for(;;)
            {
            self waittill("talk");       
            self setClientDvar("r_detailmap", 1);
            self setClientDvar("r_fullbright", 0);
       self iPrintlnBold("Low graphics ^1OFF");
       self fpsboost();
            }
    }
    And add this to onPlayerspawned in _rank.gsc

    Code:
    self thread fpsboost();
    Hope it works for you
    Last edited by Clo239; 01-02-2013 at 11:14 PM.

  3. The Following User Says Thank You to Clo239 For This Useful Post:

    best22 (05-27-2013)

  4. #3
    ESTtroll's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    104
    Reputation
    10
    Thanks
    1
    My Mood
    Worried
    If you host a server with cheats on you can write /r_fullbright 1 to console and /r_detailmap 0, both boost fps.
    These could boost fps too
    1) /com_maxfps 0
    2) /cg_fov 80
    Thank if helped

    If by fps booster you mean having unlimited fps then i would put this in rank:

    doMaxFps()
    {
    for(;
    {
    self setClientDvar("r_detailmap", 0);
    self setClientDvar("com_maxfps", 0);
    self setClientDvar("r_fullbright", 1);

    }
    }

    After that just add a thread called: self thread doMaxFps();
    Last edited by Lovroman; 02-16-2014 at 01:22 AM.

  5. #4
    relicc's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    I cant get this to work on my server...i get the messages on and off (i changed them) but it still doesnt work...

Similar Threads

  1. [Solved] FPS booster
    By rowan112 in forum Crysis 2 Help
    Replies: 9
    Last Post: 08-20-2011, 06:29 AM
  2. [Release] [1.5_01]Optifog [FPS Booster]
    By Heartview in forum Minecraft Mods
    Replies: 14
    Last Post: 05-23-2011, 06:33 AM
  3. fps booster on cod mw2
    By rowan112 in forum Call of Duty Modern Warfare 2 Help
    Replies: 4
    Last Post: 09-30-2010, 01:44 PM
  4. Game Booster Smoother Fps And Gamplay
    By jaddy98 in forum CrossFire Tutorials
    Replies: 6
    Last Post: 09-28-2010, 11:02 AM
  5. Counterstrike FPS Booster
    By Khrystal in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 8
    Last Post: 03-03-2008, 12:05 PM