whiplk

#LimparChat

Feb 13th, 2012
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.31 KB | None | 0 0
  1. stock LimparChat(linhas) {
  2.     new cc = 0;
  3.     for(new ii; ii<=GetMaxPlayers(); ++ii) {
  4.         while(cc < linhas) {
  5.             SendClientMessageTo(ii, -1, "  " );
  6.             cc++;
  7.         }
  8.     }
  9.     return linhas;
  10. }
  11. // OU...
  12. stock LimparChat(linhas) {
  13.     for(new nn; nn < linhas; ++nn) {
  14.         SendClientMessageToAll( -1, "  " );
  15.     }
  16.     return linhas
  17. }
Advertisement
Add Comment
Please, Sign In to add comment