Bob_Marley

[PAWNO] Piss, wanking Final update

Oct 8th, 2012
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 2.98 KB | None | 0 0
  1. #include <a_samp>
  2. #include <zcmd>
  3. new bool:piss[MAX_PLAYERS char];
  4. new bool:wanking[MAX_PLAYERS char];
  5. public OnFilterScriptInit();
  6.  
  7. CMD:piss(playerid,params[])
  8. {
  9.         if(!IsPlayerInRangeOfPoint(playerid,6.0,597.1277,-1248.6479,18.2734)) return SendClientMessage(playerid,-1,"Вы не в больнице!");
  10.         if(!piss{playerid})
  11.         {
  12.             SetPlayerSpecialAction(playerid, 68);
  13.             SetTimerEx("pisswank", 10000, 0, "i", playerid);
  14.             SendClientMessage(playerid, -1, "Вы сдаете мочу на анализ. ");
  15.             piss{playerid} = true;
  16.         }
  17.         else SendClientMessage(playerid,-1,"Невозможно использовать сейчас эту команду!");   
  18.         return 1;      
  19. }
  20.  
  21. CMD:wanking(playerid,params[])
  22. {
  23.     if(!IsPlayerInRangeOfPoint(playerid,6.0,597.1277,-1248.6479,18.2734)) return SendClientMessage(playerid,-1,"Вы не в больнице!");
  24.     if(!wanking{playerid})
  25.     {
  26.         ApplyAnimation(playerid,"PAULNMAC","wank_loop",4.1,1,0,0,1,0);
  27.         SetTimerEx("wankings", 10000, 0, "i", playerid);
  28.         SendClientMessage(playerid, -1, "Вы сдаете сперму на анализ. ");
  29.         wanking{playerid} = true;
  30.     }
  31.     else SendClientMessage(playerid,-1,"Невозможно использовать сейчас эту команду!");   
  32.     return 1;      
  33. }
  34.  
  35. forward wankings(playerid);
  36. public wankings(playerid)
  37. {  
  38.     ClearAnimations(playerid);
  39.     GameTextForPlayer(playerid, "~g~ Thansk", 5000, 1);
  40.     new rand=random(2);  
  41.     switch (rand)  
  42.     {  
  43.         case 0:
  44.         {  
  45.             SendClientMessage(playerid, -1, "Доктор: Вы не сдали сперму");
  46.             wanking{playerid} = false;
  47.         }          
  48.         case 1:
  49.         {
  50.             SendClientMessage(playerid, -1, "Доктор: Вы сдали свою сперму. И получаете 300$.");
  51.             GivePlayerMoney(playerid, 300);
  52.         }          
  53.     }
  54.     return 1;
  55. }
  56.  
  57. forward pisswank(playerid);
  58. public pisswank(playerid)
  59. {  
  60.     SetPlayerSpecialAction(playerid,SPECIAL_ACTION_NONE);
  61.     ClearAnimations(playerid);
  62.     GameTextForPlayer(playerid, "~g~ Thansk", 5000, 1);
  63.     new rand=random(4);  
  64.     switch (rand)  
  65.     {  
  66.         case 0: SendClientMessage(playerid, -1, "Гинеколог сказал(а): У вас проблемы. У появился СПИД. Вы должны вылечиться.");  
  67.         case 1: SendClientMessage(playerid, -1, "Гинеколог сказал(а): У вас все хорошо, вы можете заниматься любовью.");  
  68.         case 2: SendClientMessage(playerid, -1, "Гинеколог сказал(а): Вы не можете иметь детей, не носите обтягивающие трусы. Некоторое время. И потом все получиться. ");  
  69.         case 3: SendClientMessage(playerid, -1, "Гинеколог сказал(а): У вас проблемы со здоровьем.");  
  70.     }
  71.     return 1;
  72. }
Advertisement
Add Comment
Please, Sign In to add comment