Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Thanks to the people from the: United States (31%) and Brazil (19%), as this are the countries
- with more visits to this include!
- Graças ao povo da: Estados Unidos (31%) e Brasil (19%), pois são os países
- com mais visitas a este incluir!
- NOTE: The messages in portuguese are translated!
- */
- #include <a_samp> // This is needed to start the functions | Isso é necessário para iniciar as funções
- new szRandMessages[ ][ ] =
- {
- "Haitharrdumdum",
- "mudmudrrahtiaH"
- };
- public OnGameModeInit( )
- {
- SetTimer( "random_msg", 13000, true );
- return 1;
- }
- forward random_msg( ); public random_msg( )
- {
- SendClientMessageToAll( 0xFFFFFFAA, random( szRandMessages[ sizeof szRandMessages ) ] );
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment