13.12.2013, 13:25
Use IsPlayerInrangeOfPoint
For Example code:
For Example code:
Код:
CMD:buygun(playerid,params[]) //the command to enter { //opening bracket if the cmd was right if(IsPlayerInRangePoint(playerid, range, X, Y, Y) return SendClientMessage(playerid, -1, "You are not at the place to buy gun!"); //if the player is not in range of the specified position, he will get an error message! ShowPlayerDialog(playerid, 999,DIALOG_STYLE_LIST,"Guns","Buy Guns! \nDeagle $5000 \nM4 $1000","OK","No thx"); //if the player is in range of the point, it shows them the dialog return 1; //return for our dialog! } //closing bracket //this was just an example!