Will this work? Getting Dildo Unused Slot
#1

this will get the Unused Slot for Dildos, for example
pawn Код:
new DildoSlot = GetDildoFreeSlot(id);

if(DildoSlot == -1) return SCM(playerid, -1, "You can't have more dildos");
Dildo[id][DildoSlot][dID] =1;
pawn Код:
stock GetDildoFreeSlot(id) {
    if(Dildo[id][Size] == 1) {
        for(new i; i < MAX_DILDO_SMALL; ++i) {
            if(Dildo[id][i][dID] == INVALID_DILDO_ID) return i;
        }
    }
    else if(Dildo[id][Size] == 2) {
        for(new i; i < MAX_DILDO_MEDIUM; ++i) {
            if(Dildo[id][i][dID] == INVALID_DILDO_ID) return i;
        }
    }
    else if(Dildo[id][Size] == 3) {
        for(new i; i < MAX_DILDO_LARGE; ++i) {
            if(Dildo[id][i][dID] == INVALID_DILDO_ID) return i;
        }
    }
    return -1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)