ricop522

Dono online

Oct 13th, 2012
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.39 KB | None | 0 0
  1. stock IsPlayerOnline(dono[]) { // [iPs] Ricop522
  2.     new nome[24];
  3.     for(new i = 0; i<MAX_PLAYERS;i++){
  4.         GetPlayerName(i, nome, 24);
  5.         if(!strcmp(dono, nome, true)) {
  6.             return 1;
  7.         }
  8.     }
  9.     return 0;
  10. }
  11. // Usando
  12. if(!IsPlayerOnline( HouseInfo[h][hOwner]) ) return SendClientMessage(playerid, COLOR_RED, "Existem pessoas dentro da casa! ((Dono Offline))");
Advertisement
Add Comment
Please, Sign In to add comment