Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- #include <zcmd>
- new bool:piss[MAX_PLAYERS char];
- new bool:wanking[MAX_PLAYERS char];
- public OnFilterScriptInit();
- CMD:piss(playerid,params[])
- {
- if(!IsPlayerInRangeOfPoint(playerid,6.0,597.1277,-1248.6479,18.2734)) return SendClientMessage(playerid,-1,"Вы не в больнице!");
- if(!piss{playerid})
- {
- SetPlayerSpecialAction(playerid, 68);
- SetTimerEx("pisswank", 10000, 0, "i", playerid);
- SendClientMessage(playerid, -1, "Вы сдаете мочу на анализ. ");
- piss{playerid} = true;
- }
- else SendClientMessage(playerid,-1,"Невозможно использовать сейчас эту команду!");
- return 1;
- }
- CMD:wanking(playerid,params[])
- {
- if(!IsPlayerInRangeOfPoint(playerid,6.0,597.1277,-1248.6479,18.2734)) return SendClientMessage(playerid,-1,"Вы не в больнице!");
- if(!wanking{playerid})
- {
- ApplyAnimation(playerid,"PAULNMAC","wank_loop",4.1,1,0,0,1,0);
- SetTimerEx("wankings", 10000, 0, "i", playerid);
- SendClientMessage(playerid, -1, "Вы сдаете сперму на анализ. ");
- wanking{playerid} = true;
- }
- else SendClientMessage(playerid,-1,"Невозможно использовать сейчас эту команду!");
- return 1;
- }
- forward wankings(playerid);
- public wankings(playerid)
- {
- ClearAnimations(playerid);
- GameTextForPlayer(playerid, "~g~ Thansk", 5000, 1);
- new rand=random(2);
- switch (rand)
- {
- case 0:
- {
- SendClientMessage(playerid, -1, "Доктор: Вы не сдали сперму");
- wanking{playerid} = false;
- }
- case 1:
- {
- SendClientMessage(playerid, -1, "Доктор: Вы сдали свою сперму. И получаете 300$.");
- GivePlayerMoney(playerid, 300);
- }
- }
- return 1;
- }
- forward pisswank(playerid);
- public pisswank(playerid)
- {
- SetPlayerSpecialAction(playerid,SPECIAL_ACTION_NONE);
- ClearAnimations(playerid);
- GameTextForPlayer(playerid, "~g~ Thansk", 5000, 1);
- new rand=random(4);
- switch (rand)
- {
- case 0: SendClientMessage(playerid, -1, "Гинеколог сказал(а): У вас проблемы. У появился СПИД. Вы должны вылечиться.");
- case 1: SendClientMessage(playerid, -1, "Гинеколог сказал(а): У вас все хорошо, вы можете заниматься любовью.");
- case 2: SendClientMessage(playerid, -1, "Гинеколог сказал(а): Вы не можете иметь детей, не носите обтягивающие трусы. Некоторое время. И потом все получиться. ");
- case 3: SendClientMessage(playerid, -1, "Гинеколог сказал(а): У вас проблемы со здоровьем.");
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment