GTA 3 Ammunation
#19

Is a good idea, but I have a few suggestions which would make changing the script in future that little bit easier.

1.) You could use DEFINE's at the top of your script which set how much each gun costs. (You could also define which weapons are available but I wont go into that)

Example:
pawn Код:
#define DEAGPRICE 300

GivePlayerMoney(playerid, - DEAGPRICE);
2.) Someone else pointed out that your money goes into the negative, so if you try to buy a gun which you do not have the money for you end up with -$00005

This is fairly easy to stop, it just requires something like:

pawn Код:
if(GetPlayerMoney(playerid) >= DEAGPRICE)
   {
   GivePlayerMoney(playerid, - DEAGPRICE);
   }
else
   {
   GameTextForPlayer(playerid, "You can't afford this!", 5000, 3);
   }
The script is fully functional, but these are just some suggestions to make modifying it simpler!
Reply


Messages In This Thread
GTA 3 Ammunation - by DMSOrg - 17.02.2009, 02:43
Re: GTA 3 Ammunation - by ReV. - 17.02.2009, 02:43
Re: GTA 3 Ammunation - by DMSOrg - 17.02.2009, 02:45
Re: GTA 3 Ammunation - by ReV. - 17.02.2009, 02:48
Re: GTA 3 Ammunation - by DMSOrg - 17.02.2009, 03:19
Re: GTA 3 Ammunation - by 1337pr0 - 17.02.2009, 03:47
Re: GTA 3 Ammunation - by SpiderPork - 17.02.2009, 12:21
Re: GTA 3 Ammunation - by NaS - 17.02.2009, 14:16
Re: GTA 3 Ammunation - by cHaMiLLioNaRe - 17.02.2009, 14:24
Re: GTA 3 Ammunation - by G_ROW_Chez - 17.02.2009, 18:35
Re: GTA 3 Ammunation - by NaS - 17.02.2009, 21:04
Re: GTA 3 Ammunation - by ReV. - 18.02.2009, 01:48
Re: GTA 3 Ammunation - by Mikep - 18.02.2009, 02:10
Re: GTA 3 Ammunation - by 1337pr0 - 18.02.2009, 04:17
Re: GTA 3 Ammunation - by amrour - 21.02.2009, 19:29
Re: GTA 3 Ammunation - by [IB]Scorcher - 21.02.2009, 20:37
Re: GTA 3 Ammunation - by Snickers - 21.02.2009, 21:19
Re: GTA 3 Ammunation - by ICECOLDKILLAK8 - 21.02.2009, 22:36
Re: GTA 3 Ammunation - by Weirdosport - 22.02.2009, 10:31
Re: GTA 3 Ammunation - by DMSOrg - 01.03.2009, 15:48
Re: GTA 3 Ammunation - by Magician - 02.03.2009, 06:21
Re: GTA 3 Ammunation - by DMSOrg - 07.03.2009, 14:51
Re: GTA 3 Ammunation - by HB - 01.04.2009, 20:40
Re: GTA 3 Ammunation - by DMSOrg - 05.04.2009, 00:50
Re: GTA 3 Ammunation - by James_Alex - 05.04.2009, 01:44
Re: GTA 3 Ammunation - by t0nc3k - 05.04.2009, 09:24
Re: GTA 3 Ammunation - by miokie - 05.04.2009, 14:09
Re: GTA 3 Ammunation - by DMSOrg - 06.04.2009, 21:40
Re: GTA 3 Ammunation - by Kinetic - 07.04.2009, 01:24
Re: GTA 3 Ammunation - by DMSOrg - 07.04.2009, 13:44
Re: GTA 3 Ammunation - by Weirdosport - 07.04.2009, 14:10
Re: GTA 3 Ammunation - by DMSOrg - 10.04.2009, 16:11
Re: GTA 3 Ammunation - by Kinetic - 17.04.2009, 19:47
Re: GTA 3 Ammunation - by DMSOrg - 18.04.2009, 12:36
Re: GTA 3 Ammunation - by Abernethy - 11.06.2009, 05:03

Forum Jump:


Users browsing this thread: 1 Guest(s)