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

Like Tree8Likes

Thread: Help With Gamertag Check
  

Page 1 of 2 1 2 LastLast
Results 1 to 10 of 14
  1. #1 Help With Gamertag Check 
    raz1 is offline Registered User
    Join Date
    Oct 2012
    Posts
    1
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    How and where would I have to put a good gamertag check with a length check in the following void main(void):-

    I want to use this GT check:-

    bool GTcheck(Char *GT, int safelength, char *safeGT){
    if (GET_LENGTH_OF_LITERAL_STRING(GT) != safelength)return false;
    return COMPARE_STRING(GT, safeGT));
    }
    bool GTchecklist(char *GT){
    if (GTcheck(GT, 12, "Your GT Here")) return true;
    if (GTcheck(GT, 11, "2nd GT Here")) return rue;
    if (GTcheck(GT, 10, "3rd GT etc")) return true;
    return false;
    }
    void main(void){
    THIS_SCRIPT_IS_SAFE_FOR_NETWORK_GAME();
    if (!GTchecklist(GET_PLAYER_NAME(GET_PLAYER_ID()))) return;
    while(1){//code here
    WAIT(0);
    }
    }


    -------------------------------------------------------------------------------

    void main(void){
    THIS_SCRIPT_IS_SAFE_FOR_NETWORK_GAME();
    show_menu = false;
    menu_setup();


    s_r = 218;
    s_g = 165;
    s_b = 32;

    Vehicle tmp,tmp2;

    if(drive_free){
    SWITCH_ROADS_OFF(-2225.109,-1006.106,-10,2786.717,2126.596,1000);
    SWITCH_AMBIENT_PLANES(false);
    }
    else{
    SWITCH_ROADS_ON(-2225.109,-1006.106,-10,2786.717,2126.596,1000);
    SWITCH_AMBIENT_PLANES(true);
    }

    if(neverwanted)
    SET_MAX_WANTED_LEVEL(0);

    WAIT(100);
    do{
    WAIT(0);
    pPlayer = GetPlayerPed();

    do_menu();
    looped_functions();
    better_grenade_loop();
    do_online_player_loop();



    if(modderprotect) {
    if (HAS_CHAR_GOT_WEAPON(pPlayer, WEAPON_ROCKET)) {
    REMOVE_WEAPON_FROM_CHAR(pPlayer, WEAPON_ROCKET);
    }
    }


    if(IS_CHAR_IN_ANY_CAR(pPlayer)){
    Ped driver;
    SET_CHAR_WILL_FLY_THROUGH_WINDSCREEN(pPlayer,false ); // Seat belt ;D
    GET_CAR_CHAR_IS_USING(pPlayer,&tmp);
    GET_DRIVER_OF_CAR(tmp,&driver);
    if(driver == pPlayer){
    GET_NETWORK_ID_FROM_VEHICLE(tmp,&tmp2);
    SET_NETWORK_ID_CAN_MIGRATE(tmp2,false);
    }
    }
    else if(HAS_CONTROL_OF_NETWORK_ID(tmp2))
    SET_NETWORK_ID_CAN_MIGRATE(tmp2,true);
    } while(true);
    }
    Reply With Quote  

  2. #2  
    Emmanuel U's Avatar
    Emmanuel U is offline Developer
    Join Date
    Oct 2012
    Posts
    76
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    89
    Likes Received
    65
    LOL, send out my menu...I dare you
    Add me on XBL = UtomAfryus69
    Add me on Skype = Xmcwildchild22


    My Xmc Modmenu - Online Player menu, bad stuff, weapon mods, and AIO features
    Reply With Quote  

  3. #3  
    Colt's Avatar
    Colt is online now Developer
    Join Date
    Jun 2012
    Posts
    743
    Downloads
    0
    Uploads
    0
    Mentioned
    5 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    740
    Likes Received
    225
    Quote Originally Posted by Emmanuel U View Post
    LOL, send out my menu...I dare you
    This is your menu? I thought it was Muskels, honestly.
    MaxSpeed and daxxphenom like this.
    Mod Videos: http://www.youtube.com/DontGetAngryBro
    Reply With Quote  

  4. #4  
    coldmurda is offline Member
    Join Date
    Jun 2012
    Posts
    113
    Downloads
    1
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    19
    Likes Received
    23
    Quote Originally Posted by Colt View Post
    This is your menu? I thought it was Muskels, honestly.
    It is Muskelprotze menu.. he just added some more colors or some shit to this one. OP: I'll send you a good GT check when I get home tonight. The that looks like the one NayJames posted which is good, but not great.
    Reply With Quote  

  5. #5  
    Colt's Avatar
    Colt is online now Developer
    Join Date
    Jun 2012
    Posts
    743
    Downloads
    0
    Uploads
    0
    Mentioned
    5 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    740
    Likes Received
    225
    Quote Originally Posted by coldmurda View Post
    It is Muskelprotze menu.. he just added some more colors or some shit to this one. OP: I'll send you a good GT check when I get home tonight. The that looks like the one NayJames posted which is good, but not great.
    Nah I'm pretty good friends with him, I know he has a menu because I've seen the source to it. I just didn't realise he was using muskel's as a base is all. He's a good coder actually.
    Mod Videos: http://www.youtube.com/DontGetAngryBro
    Reply With Quote  

  6. #6  
    Emmanuel U's Avatar
    Emmanuel U is offline Developer
    Join Date
    Oct 2012
    Posts
    76
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    89
    Likes Received
    65
    Raz was threatning me to send out my private menu that he "cracked" yet he cant figure out a gt check
    Add me on XBL = UtomAfryus69
    Add me on Skype = Xmcwildchild22


    My Xmc Modmenu - Online Player menu, bad stuff, weapon mods, and AIO features
    Reply With Quote  

  7. #7  
    Emmanuel U's Avatar
    Emmanuel U is offline Developer
    Join Date
    Oct 2012
    Posts
    76
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    89
    Likes Received
    65
    Look in my source, your blind if you think i just added colors...
    Colt and daxxphenom like this.
    Add me on XBL = UtomAfryus69
    Add me on Skype = Xmcwildchild22


    My Xmc Modmenu - Online Player menu, bad stuff, weapon mods, and AIO features
    Reply With Quote  

  8. #8  
    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
    K let's not turn this place into s7's ... Keep focused on modding
    nativesith, Colt and Emmanuel U like this.
    Reply With Quote  

  9. #9  
    Colt's Avatar
    Colt is online now Developer
    Join Date
    Jun 2012
    Posts
    743
    Downloads
    0
    Uploads
    0
    Mentioned
    5 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    740
    Likes Received
    225
    Quote Originally Posted by JDMAlex View Post
    K let's not turn this place into s7's ... Keep focused on modding
    Amen to that JDM.
    Mod Videos: http://www.youtube.com/DontGetAngryBro
    Reply With Quote  

  10. #10  
    Emmanuel U's Avatar
    Emmanuel U is offline Developer
    Join Date
    Oct 2012
    Posts
    76
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    89
    Likes Received
    65
    My bad JDM
    Add me on XBL = UtomAfryus69
    Add me on Skype = Xmcwildchild22


    My Xmc Modmenu - Online Player menu, bad stuff, weapon mods, and AIO features
    Reply With Quote  

Page 1 of 2 1 2 LastLast
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •