How do read stuff from a specific file? (AddPlayerClass.)
#7

pawn Код:
public OnGameModeInit()
{
    for(new s = 1; s < 300; s++) // run a loop that starts with ID 1, and ends in ID 299
    {
        if(s == 74) continue; // skin ID 74 is invalid, so when the loop hits that ID, skip it
        else AddPlayerClass(s, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0); // the skin ID isn't 74, add the "class"
    }
    return 1;
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 2 Guest(s)