Guest User

Untitled

a guest
Nov 1st, 2013
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1.  
  2. //ZONENBETRITTNACHRICHT
  3. for(new i = 0; i < MAX_PLAYERS; i++)
  4. {
  5. SetTimerEx("CheckZone", 1000, true, "d", i);
  6. }
  7. }
  8. //http://wiki.sa-mp.com/wiki/SetTimerEx
  9.  
  10. forward CheckZone(playerid);
  11. public CheckZone(playerid)
  12. {
  13. if(IsPlayerInArea(playerid, -577.6986,2935.4021,2971.7083,504.3266))
  14. {
  15. if(GetPlayerTeam(playerid) == fALJIHAD)
  16. SendClientMessageToAll(COLOR_ALJIHAD, "Ein Terrorist ist in Las Venturas eingedrungen!");
  17. }
  18. return 1;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment