cordinates help
#1

this is code of the script
pawn Код:
foreach(Player, i) {
        if(IsPlayerInArea(i, -385.3699, 1506.446, -256.9133, 1646.58)) {
            if(EnteredArea[i] == 0) {             // if he hasn'td beenterefo re
                if(gTeam[i] == TEAM_USA && CapturedBy == 1 || gTeam[i] == TEAM_GERMANY && CapturedBy == 2 || gTeam[i] == TEAM_INDIA && CapturedBy == 3 || gTeam[i] == TEAM_England && CapturedBy == 4 || gTeam[i] == TEAM_RUSSIA && CapturedBy == 5) {
                    SendClientMessage(i, COLOR_RED, "This area has already been captured by your team!");
                    EnteredArea[i] = 1;
                }
                else {
                    SendClientMessageToAll(COLOR_CON_GREEN, "The bigear is being taken over!");
                    EnteredArea[i] = 1;           // He has entered
                    SendClientMessage(i,COLOR_CON_GREEN, "Stay In here for 30 seconds to take over the area!");
                    IfCapture[i] = 1;
                    T1[i] = SetTimer("TakeOver",30000,0);
                }
            }
        }
        else {
            EnteredArea[i] = 0;                   // When he leaves, he's no longer in the area
            KillTimer(T1[i]);
        }
    }
what is this angle ??
pawn Код:
if(IsPlayerInArea(i, -385.3699, 1506.446, -256.9133, 1646.58))
Reply
#2

SetPlayerPos(playerid,-385.3699, 1506.446, -256.9133); Go there and check lazy.. We can't say exactly where that is by looking at the coordinate.
Reply
#3

then what is this ? 4 angle ?

pawn Код:
if(IsPlayerInArea(i, -385.3699, 1506.446, -256.9133, 1646.58))
Reply
#4

IsPlayerInArea.. I'd guess minx,miny,maxx,maxy
Reply
#5

minx maxx miny maxy ?
Reply
#6

what is minx maxx miny maxy ?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)