05.04.2020, 08:38
Quote:
It's going to be a little complicated to get this to work properly.
The problem occurs because 'IsPlayerInRangeOfPoint' detects if the player is in the range of the set coordinate. So you put an object in a coordinate, but that object is bigger, but the function 'IsPlayerInRangeOfPoint' only corresponds to the coordinate of the object, but not to the object as such. Simply put, you have to get close to the exact coordinate, but not the object. Suggestion: Try creating the objects normally, and set the coordinates apart so that when a player gets close it will damage it. Example: You put a fence normally, and set 3 coordinates inside that fence (left, center, right), and if the player gets close to one of those areas, it damages it. |
also you can use
Code:
stock IsPlayerInTheArea(playerid,Float:minx,Float:miny,Float:maxx,Float:maxy) { new Float:posx, Float:posy, Float:posz; GetPlayerPos(playerid, posx,posy,posz); if(posx >= minx && posx <= maxx && posy >= miny && posy <= maxy) { return true; } else return false; }
Code:
if(IsPlayerInTheArea(playerid,X,Y,X,Y)) { //He is in your area. do it here }