SA-MP Forums Archive
Help Needed, Another Problem. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help Needed, Another Problem. (/showthread.php?tid=469256)



Help Needed, Another Problem. - spiderr - 12.10.2013

Hey,
I have United Gaming RolePlay Mod. I have to remove driving license system, how can I do that?


Re: Help Needed, Another Problem. - spiderr - 12.10.2013

If you need anything, Ask me.


Re: Help Needed, Another Problem. - DanishHaq - 12.10.2013

The variable on that GM is "pCarLic", so do CTRL + F and search for pCarLic and then delete all the functions / code that you find for that.

PS: DON'T just delete the word pCarLic, delete all of it, here's an example of what you might find:

pawn Код:
if(PlayerInfo[playerid][pCarLic] == 0)
{
    SendClientMessage(...);
}
if(PlayerData[playerid][IsANoob] == 1)
{
    Kick(playerid);
}
Don't delete everything that you see around the pCarLic, just delete the bit where it opens up the bracket "{" up to the bit where it closes the bracket "}". So, you need to make sure you don't delete anything that's neccessary.


Re: Help Needed, Another Problem. - spiderr - 12.10.2013

THank You ..
Close it Please