not DONOR but can choose donor class
#3

works fine at all,just that.it is happening to you?or not?
all the codes
http://pastebin.com/9127jckE

part of it.
pawn Код:
stock IsPlayerLVIP(playerid)
{
    new name[MAX_PLAYER_NAME];
    new file[256], tmp, tmp2;
   
    GetPlayerName(playerid, name, sizeof(name));
   
    format(file,256,"/eAdmin/Accounts/%s.sav",udb_encode(name));
   
    tmp = dini_Int(file,"AccountType");
    tmp2 = dini_Int(file,"loggedin");

    if( (IsPlayerConnected(playerid)) && (tmp > 0) && (tmp2 == 1)) return true;
    else return false;
}

stock IsPlayerVIPLevel(playerid, level)
{
    new name[MAX_PLAYER_NAME];
    new file[256], tmp, tmp2;
   
    GetPlayerName(playerid, name, sizeof(name));
   
    format(file,256,"/eAdmin/Accounts/%s.sav",udb_encode(name));
   
    tmp = dini_Int(file,"AccountType");
    tmp2 = dini_Int(file,"loggedin");
   
    if( (IsPlayerConnected(playerid)) && (tmp >= level) && (tmp2 != 0)) return true;
    else return false;
}
}
Reply


Messages In This Thread
not DONOR but can choose donor class - by PowerF - 26.01.2015, 12:01
Re: not DONOR but can choose donor class - by Excel™ - 26.01.2015, 12:37
Re: not DONOR but can choose donor class - by PowerF - 26.01.2015, 12:53
Re: not DONOR but can choose donor class - by Excel™ - 26.01.2015, 14:08

Forum Jump:


Users browsing this thread: 1 Guest(s)