Niko_Hs

Pickup-Casa

Aug 18th, 2011
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.37 KB | None | 0 0
  1. //Pickup Casa
  2.  
  3. //Sotto #include <a_samp>
  4. new pickupcasa;
  5.  
  6. //Sotto OnGameModeInit
  7.  
  8. pickupcasa = CreatePickup(1273, 2, -2719.4507, -319.1882, 7.8438, 0);
  9.  
  10. //Sotto OnPlayerPickUpPickup
  11.  
  12. public OnPlayerPickUpPickup(playerid, pickupid)
  13. {
  14. if(1273== pickupcasa)
  15. {
  16. SetPlayerPos(playerid, -227.027999,1401.229980,27.765625);
  17. SetPlayerInterior(playerid, 12);
  18. }
  19. return 1;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment