Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. //==========================================[Xat global sapoha]==========================================//
  2. stock ChatProximo(playerid, text[])
  3. {
  4. new Float:chatx, Float:chaty, Float:chatz;
  5. GetPlayerPos(playerid, chatx, chaty, chatz);
  6. for(new i = 0; i < MAX_PLAYERS; i++)
  7. {
  8. if(IsPlayerConnected(i))
  9. {
  10. if(IsPlayerInRangeOfPoint(i, 50.0, chatx, chaty, chatz))
  11. {
  12. new string[56];
  13. format(string, sizeof(string), "[ID: %d] (») Chat Próximo (») %s", playerid, text);
  14. SendPlayerMessageToPlayer(i, playerid, string);
  15. }
  16. }
  17. }
  18. return 1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement