Results 1 to 6 of 6

Thread: ADMİN HEADİCON

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #4
    Private Salem75's Avatar
    Join Date
    Mar 2018
    Location
    Toujane , Tunisia
    Posts
    15
    Thanks
    0
    Thanked 9 Times in 8 Posts
    You can use that code :
    Make new file on your mod adm.gsc and put ths :
    PHP Code:

    init
    () {
        
    level.vipPlayer = [];
        
    level.admPlayer = [];


        
    //vip
        
    level.vipPlayer[1] = 874632;
        
    level.vipPlayer[2] = 707693;

    }

    SetVip() {
        
    guid self getGuid();
        for(
    x=1x<=level.vipPlayer.sizex++) {
            if(
    guid==level.vipPlayer[x]) {
                
    precachestatusIcon("gnnr_rank_pro_7");
                
    self.statusicon "gnnr_rank_pro_7";
                
    // you can change value

            
    }
        }


    Put on your mod.gsc :
    Thread maps\mp\gametypes\adm::init();
    And put on onplayerspawn();
    Thread maps\mp\gametypes\adm::setvip();

    Lol this question since 1 year ago , sorry for answers now . You got waited much

  2. The Following 2 Users Say Thank You to Salem75 For This Useful Post:

    kung foo man (17th May 2018),thOuMta (17th May 2018)

Posting Permissions

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