Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include a_samp
- //Função ClearScreen Multi Utilitária, (ÚNICA).
- //@Development Willian Luigi & Lucas Vinícius ®
- stock /*EVITA WARNS*/ ClearScreen (playerid = -1, lines = -1)
- {
- if (playerid >= 0)
- {
- if (lines > 0) for (new i = 0; i < lines; SendClientMessage(playerid, -1, " "), ++i) {}
- else for (new i = 0; i < 100; SendClientMessage(playerid, -1, " "), ++i) {}
- }
- else
- {
- if (lines > 0) for (new i = 0; i < lines; SendClientMessageToAll(-1, " "), ++i) {}
- else for (new i = 0; i < 100; SendClientMessageToAll(-1, " "), ++i) {}
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment