Advertisement
Guest User

Üzenet by SniperMen11

a guest
Feb 21st, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. //------------------------------------------------------------------------------
  2. // Üzenet by SniperMen11
  3. //------------------------------------------------------------------------------
  4.  
  5. #include <a_samp>
  6.  
  7. #define COLOR_GREEN 0x33AA33AA
  8. #define COLOR_DARKRED 0x660000AA
  9.  
  10. public OnFilterScriptInit()
  11. {
  12. print("\n-----------------------------------");
  13. print(" Üzenet by SniperMen11 BETÖLTVE! ");
  14. print("-----------------------------------\n");
  15. return 1;
  16. }
  17.  
  18. public OnFilterScriptExit()
  19. {
  20. return 1;
  21. }
  22.  
  23. public OnPlayerCommandText(playerid, cmdtext[])
  24. {
  25. if (strcmp("/szabalyok", cmdtext, true, 10) == 0)
  26. {
  27. SendClientMessage(playerid, COLOR_GREEN,"Szerver Szabályzat:"); // az " Üzenet " hellyére ird az üzenetedet!
  28. SendClientMessage(playerid, COLOR_DARKRED,"Üzenet"); // ezt az üzenetet pirossal fogja kiirni!! az " Üzenet " hellyére egy fontos szabályt irjatok!!!
  29. return 1;
  30. }
  31. return 0;
  32. }
  33.  
  34. //------------------------------------------------------------------------------
  35. // Üzenet by SniperMen11
  36. //------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement