19.03.2008, 23:47
Removing the tutorial is so simple its as simple as deleting a few lines i'm confused on why you created this thread, Also someone said before in your license command you just edited the if's
Code:
if(strcmp(cmd, "/driverlic", true) == 0)
{
if(GetPlayerMoney(playerid) < 4999)
{
SendClientMessage(playerid,COLOR_WHITE,"*** Drivers license costs $5000, You don't have enough money.");
return 1;
}
if(PlayerInfo[playerid][pCarLic] == 1)
{
SendClientMessage(playerid,COLOR_WHITE,"*** You already have a license.");
return 1;
}
PlayerInfo[playerid][pCarLic] = 1;
SendClientMessage(playerid,COLOR_WHITE,"*** You can now drive cars!");
GivePlayerMoney(playerid,-5000);
return 1;
}

