Guest User

Zer0x

a guest
Aug 13th, 2009
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. #include <a_samp>
  2. #define COLOR_RED 0xFF0000FF
  3. #define COLOR_BLUE 0x0000FFFF
  4.  
  5. public OnFilterScriptInit()
  6. {
  7. print("\n--------------------------------------");
  8. print(" Chillad Massive Parachuteing");
  9. print("--------------------------------------\n");
  10.  
  11. CreateObject(4585,-2317.687,-1619.527,572.753,0.0,0.0,0.0);
  12. CreateObject(4585,-2317.482,-1620.875,748.201,0.0,0.0,0.0);
  13. CreateObject(4585,-2317.913,-1621.275,921.524,0.0,0.0,0.0);
  14. CreateObject(4585,-2317.925,-1621.343,1100.697,0.0,0.0,0.0);
  15. CreateObject(4585,-2317.968,-1621.275,1281.014,0.0,0.0,0.0);
  16. CreateObject(4585,-2317.998,-1621.284,1460.562,0.0,0.0,0.0);
  17. CreateObject(4585,-2317.905,-1621.466,1640.885,0.0,0.0,0.0);
  18. CreateObject(4585,-2317.782,-1621.324,1821.158,0.0,0.0,0.0);
  19. CreateObject(4585,-2317.708,-1621.251,2001.655,0.0,0.0,0.0);
  20. CreateObject(4585,-2317.601,-1621.222,2176.982,0.0,0.0,0.0);
  21. CreateObject(4585,-2317.564,-1621.203,2356.784,0.0,0.0,0.0);
  22. return 1;
  23. }
  24.  
  25. public OnPlayerCommandText(playerid, cmdtext[])
  26. {
  27. if (strcmp("/chilladpara", cmdtext, true, 10) == 0)
  28. {
  29. SetPlayerPos(playerid,-2326.110,-1615.697,2458.188);
  30. SendClientMessage(playerid,COLOR_RED,"Welcome to Chillad Massive Parachuteing");
  31. GivePlayerWeapon(playerid, 46, 1);
  32. SendClientMessage(playerid,COLOR_BLUE,"You have been givin a parachute, enjoy!");
  33. return 1;
  34. }
  35. return 0;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment