Results 1 to 6 of 6

Thread: ADMİN HEADİCON

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #5
    Assadministrator IzNoGoD's Avatar
    Join Date
    Aug 2012
    Posts
    1,718
    Thanks
    17
    Thanked 1,068 Times in 674 Posts
    Quote Originally Posted by Salem75 View Post
    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


    PLEASE put your precache in the appropriate (initialize) position. Not in a user-callable script.
    "Does not work" is an error report for a bug between keyboard and chair.

    All hail Artie Effem

  2. The Following User Says Thank You to IzNoGoD For This Useful Post:

    kung foo man (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
  •