Forum: Grand Theft Auto Series Modding - Our GTA Modding Team is the best around. Tutorials & Topics related to modding your GTA games, trophies, and save files! Discuss GTA game modding with the knowledgeable members of PSX-Scene and the Official GTA IV Mod Team.


The above video goes away if you are a member and logged in, so log in now!




 
Would you like to get all the new info from
PSX-Scene in your email each day?




Want to learn more about the team keeping you up to date with the latest scene news?

Read about them now!

Check out our Developer bios, too!

 


User Tag List

Thread: Never Wanted
  

Results 1 to 8 of 8
  1. #1 Never Wanted 
    nejcjanhar is offline Registered User
    Join Date
    Jul 2012
    Posts
    4
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Hello,
    I would like to know if there is a script that will make you never wanted for GTA IV TBGT PS3. There are clear wanted scripts but didnt see never wanted script. So if there is one pls post link.
    Reply With Quote  

  2. #2  
    xD4I2K SIVIOKEx is offline Registered User
    Join Date
    May 2012
    Posts
    6
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    7
    Likes Received
    1
    Quote Originally Posted by nejcjanhar View Post
    Hello,
    I would like to know if there is a script that will make you never wanted for GTA IV TBGT PS3. There are clear wanted scripts but didnt see never wanted script. So if there is one pls post link.
    I just made this by mistake the other day. Thought it was cool so i kept it. Just add me on skype or something cuz i cant post a link. I need 30 posts -_- skype xD4I2K SIVIOKEx
    Reply With Quote  

  3. #3  
    JDMAlex's Avatar
    JDMAlex is offline & developer
    Join Date
    Nov 2010
    Posts
    723
    Downloads
    5
    Uploads
    1
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    190
    Likes Received
    442
    Code:
    #include <natives.h>
    #include <common.h>
    #include <strings.h>
    #include <types.h>
    #include <consts.h>
    
    void Nopopo(void) 
    {
    	SET_POLICE_IGNORE_PLAYER(GetPlayerIndex(), TRUE);
    	ALLOW_EMERGENCY_SERVICES(FALSE);
    	SET_MAX_WANTED_LEVEL(0);
    	SET_CHAR_WANTED_BY_POLICE(GetPlayerPed(), FALSE);
    }
    void CityTrafic(void)
    {
    	// this will clear a huge radius of any traffic 
    	float AreaX,AreaY,AreaZ;
    	GET_CHAR_COORDINATES(GetPlayerPed() ,&AreaX, &AreaY, &AreaZ);
          //CLEAR_AREA_OF_CARS(AreaX,AreaY,AreaZ, 2000); // you may want this or not.. 
    	CLEAR_AREA_OF_COPS(AreaX,AreaY,AreaZ, 2000);
    }
    
    void main(void)
    {	
    	while(TRUE)
    	{
                    Nopopo();
                   CityTrafic();
    		WAIT(0);
                   
    	}
    }
    download sco here
    Last edited by JDMAlex; 07-26-2012 at 09:01 PM.
    Reply With Quote  

  4. #4  
    nejcjanhar is offline Registered User
    Join Date
    Jul 2012
    Posts
    4
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Thanks! But how can i add it to mod manager? to turn it off and on?

    Nwm, so i have to add each mod individual. Can i change sco back to C++? since i have modmanager from Offline & Online Scripts wich has no code given?
    Last edited by nejcjanhar; 07-27-2012 at 06:05 AM.
    Reply With Quote  

  5. #5  
    Three-Socks's Avatar
    Three-Socks is offline Developer
    Join Date
    Feb 2011
    Posts
    362
    Downloads
    16
    Uploads
    0
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    83
    Likes Received
    308
    Reply With Quote  

  6. #6  
    nejcjanhar is offline Registered User
    Join Date
    Jul 2012
    Posts
    4
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Ehm, is there a decompile tool or did you just give me link to source code, cuz i dont need source code from normal ModManager but from that one from
    "[UPDATE][Release]PS3/XBOX GTAIV/EFLC Offline & Online Scripts" (its modified).
    Reply With Quote  

  7. #7  
    JDMAlex's Avatar
    JDMAlex is offline & developer
    Join Date
    Nov 2010
    Posts
    723
    Downloads
    5
    Uploads
    1
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    190
    Likes Received
    442
    well if you mean you wanna edit mod manager from the xbox gtaiv/eflc you need to rewrite one with all the scripts linked + yours or beg the creator.. there is currently no way to decompile an scocl script but you can do rock* scripts in openiv..

    you can just pick a script you dont like open SCOtoolox find the script name you dont like and its link to the sco and rename it to this.. may be difficult for a beginner..
    Reply With Quote  

  8. #8  
    nejcjanhar is offline Registered User
    Join Date
    Jul 2012
    Posts
    4
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Quote Originally Posted by JDMAlex View Post
    well if you mean you wanna edit mod manager from the xbox gtaiv/eflc you need to rewrite one with all the scripts linked + yours or beg the creator.. there is currently no way to decompile an scocl script but you can do rock* scripts in openiv..

    you can just pick a script you dont like open SCOtoolox find the script name you dont like and its link to the sco and rename it to this.. may be difficult for a beginner..
    Thanks replaced some cam hack (wich i dont know what it does), and removed cop vehicle not spawning and its working . Thanks alot!
    Last edited by nejcjanhar; 07-27-2012 at 03:58 PM.
    Reply With Quote  

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •