Gute Nacht ( ),
also ich möchte die Funktion IsPlayerInArea verwenden aber es klappt einfach nicht^^
Diese Koordinaten sind die Eckpunkte:
Code
P1 = 2540.0562,-1628.9226,13.4241
P2 = 2540.0320,-1720.3789,13.5431
P3 = 2379.3337,-1692.6475,14.4536
P4 = 2389.3037,-1632.8947,13.4585
Skizze:
Nun meine Abfrage lautet so:
if(!IsPlayerInArea(playerid,2540.0320,2389.3037,-1628.9226,-1692.6475))
IsPlayerInArea ist so aufgebaut:
IsPlayerInArea(playerid, Float:minx, Float:maxx, Float:miny, Float:maxy)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
if (x > minx && x < maxx && y > miny && y < maxy) return 1;
return 0;
}
Die funktioniert aber nicht wirklich...^^
Könnte mir das jmd einfügen?
Ja ich weiß, das ist echt ne sinnlose Frage aber ich steh echt auf dem Schlauch...
MfG
n0skillg3t