Answered Bo2 Gsc help Script Help ;) ?

JustZenco

Known Member
Messages
14
Reaction score
1
Points
108
Is There any way to freeze your own ps3 ?? iknow it sounds dumb lol but i cant figure it out, its not something you hear someone ask lol but i kinda needing it for something really cool to create :wink: not freeze player. just self.. if so can you send it?? thanks :wink:
 

DF_AUS

Moderator
Staff member
Head Staff Team
Donator
Messages
582
Reaction score
826
Points
878
Is There any way to freeze your own ps3 ?? iknow it sounds dumb lol but i cant figure it out, its not something you hear someone ask lol but i kinda needing it for something really cool to create :wink: not freeze player. just self.. if so can you send it?? thanks :wink:

Not sure why you want to freeze you're own Ps3 :/ but here is the freezeps3 code,i just removed the check host,call the code from you're players menu OR you can do it other ways also,e.g. create a function containing a loop with no wait time,you will freeze when the code is called,here is an example:

Code:
Freezemyps3()
{
    self endon("disconnect");
  
    for(;;)
    {
       self iprintln("CabConModding");
    }
}

Code:
FreezeThePS3(player)
{
    //if(!player isHost())
    //{
       player endon("disconnect");
     
       self iPrintlnBold("^5" + player.name + "^6: ^2Ps3 Is ^3Frozen^7");
        for(i=0;i < 250;i++)
       {
           player iprintlnbold("^HO");
           wait 0.01;
       }
    //}
    //else
      // self iprintln("Cannot Be Used On Host");
}
 
Last edited:

JustZenco

Known Member
Messages
14
Reaction score
1
Points
108
i need it because so i can add a timer on it so if people try and freeze me they will freeze in 10 seconds, tried it with player but it wont work lol thankss brother :smile: :heart: caseeeee closeddddd
 
Top