Gang Zone Issue.
#1

Well. It's hard to explain. So I am gonna give you pictures of the issue, and post all the code I used to create the gang zone.





Код:
new GroveGangZone;
GroveGangZone = GangZoneCreate(2349.8303, -1631.6602, 2543.2820, -1725.5413);
As you can see MinX, MinY, are infact smaller then MaxX, and MaxY. I looked at a thread made in 2014 regarding this issue, and that is what caused their issue, but as you can clearly see. That is not the case here.
Reply
#2

Код:
minx  = 2349.8303  
miny = -1631.6602  
maxx = 2543.2820  
maxy = -1725.5413
So your miny > maxy, where it should be miny < maxy

Код:
new GroveGangZone;
GroveGangZone = GangZoneCreate(2349.8303, -1725.5413, 2543.2820, -1631.6602);
Reply
#3

Thank you very much, but that honestly makes no sense, but it did in fact work. I'm just so confused on how minY has to be bigger then maxY.
Reply
#4

Quote:
Originally Posted by UnholyBeast
Посмотреть сообщение
Thank you very much, but that honestly makes no sense, but it did in fact work. I'm just so confused on how minY has to be bigger then maxY.
Its opposite, miny should be smaller than maxy. Makes complete sense, and it is what i have stated in my previous reply.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)