/buyweplic cmd - 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: /buyweplic cmd (
/showthread.php?tid=633788)
/buyweplic cmd -
SniperZLyfe1 - 07.05.2017
Well.I started my own server 3days ago but there is no place for buying weapon license So,can someone please help me make a sign or point on which players can buy weapon licenses?
I want that sign to me in City Hall.Or can someone please join my server and help me with that?
Re: /buyweplic cmd -
Logic_ - 07.05.2017
This section is not for requesting code, this section is for asking to know errors about your code. If you need someone to do that, go in the 'Looking for...' thread and post there that you need a scripter.
Re: /buyweplic cmd -
SniperZLyfe1 - 07.05.2017
Quote:
Originally Posted by Logic_
This section is not for requesting code, this section is for asking to know errors about your code. If you need someone to do that, go in the 'Looking for...' thread and post there that you need a scripter.
|
Okay.thanks for letting me now!
Re: /buyweplic cmd -
Kane - 07.05.2017
PHP код:
enum PlayerInfo {
pGunLicense,
};
CMD:buygun(playerid, params[])
{
if(!Player[playerid][pGunLicense])
return SendClientMessage(playerid, -1, "You don't have a weapons license.");
// rest of ur code
}
Something like that.