Arrest command and Rape command bugged
#2

Arrest command: Look this:
pawn Код:
if(GetPlayerWantedLevel(CriminalID) >= 3)

Rape:
pawn Код:
pInfo[playerid][Diseases] = rand;
// No, this: ->
pInfo[targetid][Diseases] = rand;

// and not:
switch(rand)
{
    case 0: SendClientMessage(playerid, COLOR_GREY, "You are lucky this time, you didn't get any STDs!");
    case 1: SendClientMessage(playerid, COLOR_GREY, "You received an HIV. Go to the hospital, quickly to get it cured.");
    case 2: SendClientMessage(playerid, COLOR_GREY, "You received Syphilis. Go to the hospital, quickly to get it cured.");
    case 3: SendClientMessage(playerid, COLOR_GREY, "You received the Crazy Chicken Flu. Go to the hospital, quickly to get it cured.");
    case 4: SendClientMessage(playerid, COLOR_GREY, "You received Mad Cow Disease. Go to the hospital, quickly to get it cured.");
}

// but this:
switch(rand)
{
    case 0: SendClientMessage(targetid, COLOR_GREY, "You are lucky this time, you didn't get any STDs!");
    case 1: SendClientMessage(targetid, COLOR_GREY, "You received an HIV. Go to the hospital, quickly to get it cured.");
    case 2: SendClientMessage(targetid, COLOR_GREY, "You received Syphilis. Go to the hospital, quickly to get it cured.");
    case 3: SendClientMessage(targetid, COLOR_GREY, "You received the Crazy Chicken Flu. Go to the hospital, quickly to get it cured.");
    case 4: SendClientMessage(targetid, COLOR_GREY, "You received Mad Cow Disease. Go to the hospital, quickly to get it cured.");
}
Reply


Messages In This Thread
Arrest command and Rape command bugged - by NoahF - 06.07.2014, 18:00
Re : Arrest command and Rape command bugged - by Noliax8 - 06.07.2014, 18:24
Re: Arrest command and Rape command bugged - by NoahF - 06.07.2014, 21:41
Re: Arrest command and Rape command bugged - by NoahF - 07.07.2014, 16:23
Re: Arrest command and Rape command bugged - by Ihateyou - 07.07.2014, 16:24
Re: Arrest command and Rape command bugged - by awsomedude - 07.07.2014, 16:30
Re: Arrest command and Rape command bugged - by NoahF - 07.07.2014, 16:33
Re: Arrest command and Rape command bugged - by awsomedude - 07.07.2014, 16:35
Re : Arrest command and Rape command bugged - by Clad - 07.07.2014, 16:37

Forum Jump:


Users browsing this thread: 1 Guest(s)