Results 1 to 6 of 6
  1. #1
    r3dgr33n's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    canada
    Posts
    16
    Reputation
    10
    Thanks
    1
    My Mood
    Cynical

    Force and stay prone

    i'm asking any modder to help me and make it so when you spawn youre prone and stay prone (ive tried many things looked at mods but cant find it
    /yeaWhen God Gives You Lemons,... You Find A New God/yea

  2. #2
    spiritwo's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Rochester, NY
    Posts
    709
    Reputation
    17
    Thanks
    76
    My Mood
    Happy
    Not tested:
    [php]
    onPlayerSpawned()
    {
    self endon("disconnect");
    for(;
    {
    self waittill("spawned_player");
    self SetStance( "prone" );
    }
    }
    [/php]
    --
    "Life is tough. It's tougher if you're stupid."

    Spiritwo |






  3. #3
    XFL's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    95
    Reputation
    10
    Thanks
    5
    My Mood
    Bored
    Quote Originally Posted by spiritwo View Post
    Not tested:
    [php]
    onPlayerSpawned()
    {
    self endon("disconnect");
    for(;
    {
    self waittill("spawned_player");
    self SetStance( "prone" );
    }
    }
    [/php]
    you can still get up after the code ran i think you might have to loop it(not sher but it sounds good to me)

  4. #4
    spiritwo's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Rochester, NY
    Posts
    709
    Reputation
    17
    Thanks
    76
    My Mood
    Happy
    If this doesnt work:
    [php]
    onPlayerSpawned()
    {
    self endon("disconnect");
    for(;
    {
    self waittill("spawned_player");
    self SetStance( "prone" );
    }
    }
    [/php]

    Then try this:
    [php]
    onPlayerSpawned()
    {
    self endon("disconnect");
    for(;
    {
    self waittill("spawned_player");
    while(1)
    {
    self SetStance( "prone" );
    }
    }
    }
    [/php]
    --
    "Life is tough. It's tougher if you're stupid."

    Spiritwo |






  5. #5
    [WhA]4FunPlayin's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Not here
    Posts
    757
    Reputation
    8
    Thanks
    169
    My Mood
    Lonely
    A loop in a loop.. won't work and lag...

    Code:
    antiStand()
    {
    while(1)
    {
    self SetStance( "prone" );
    wait 0.7
    }
    }

  6. The Following User Says Thank You to [WhA]4FunPlayin For This Useful Post:

    master131backup (11-02-2010)

  7. #6
    justas1234's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    153
    Reputation
    10
    Thanks
    51
    My Mood
    Bored

    Dont become this thing! Post in the right sections /\

Similar Threads

  1. CROSSFIRE G-FORCE AND REZ+SOUND MOD VIDEO
    By Noohb in forum Crossfire Video Sharing
    Replies: 19
    Last Post: 08-12-2011, 03:55 PM
  2. G-Force ... And the .exe file closed by it self
    By osos014 in forum CrossFire Help
    Replies: 9
    Last Post: 08-06-2011, 10:38 PM
  3. [Discussion] If you can't use G Force and have Team Viewer come here!
    By Zorrox in forum CrossFire Discussions
    Replies: 9
    Last Post: 07-10-2011, 06:59 PM
  4. Replies: 5
    Last Post: 02-04-2010, 11:16 PM
  5. Returning and staying.
    By losersiyang in forum Member Introduction & Return
    Replies: 2
    Last Post: 12-29-2009, 09:01 AM

Tags for this Thread