SA-MP Forums Archive
[Help]User file Reseting every time and How to connect the coins to Something? - 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]User file Reseting every time and How to connect the coins to Something? (/showthread.php?tid=568002)



[Help]User file Reseting every time and How to connect the coins to Something? - fuckingcruse - 18.03.2015

Hello all , When ever i restart my server I,e When I close the samp-server application and open it again , the money , coins get reset , anyone can give me a solution to make it stop and load the stuffs like money when ever i restart?

And I made something call coins , i want to connect it to my /specialguns.. Like we write
/giveplayermoney(playerid , -xMoney);
I want something like when he tap his button to buy special guns he must lose COINS can anyone say me what statement i must use?


Re: [Help]User file Reseting every time and How to connect the coins to Something? - CalvinC - 18.03.2015

To decrease a variable by a specific amount, use:
pawn Код:
Coins -= 15;
Which will decrease a "Coins"-variable by 15.

Anyways, do you have any saving system?
You need to use etc. an INI or SQL saving system to save/load your coins.


Re: [Help]User file Reseting every time and How to connect the coins to Something? - fuckingcruse - 18.03.2015

Not dude , When i restart my Server , everything get's empty , No admins saved , No money , no guns , no car nothing

And i want something to be asked , i don't wanna add more posts , i have a /minigundm cmd , /kart cmd , /dm cmd, I want to make a /leave cmd using zcmd , I.e when we are in anyone of them , the player cmds must be disabled and he can't go to anyother TELE's can anyone help me?


Re: [Help]User file Reseting every time and How to connect the coins to Something? - fuckingcruse - 19.03.2015

Dude , something like when we type
GivePlayerMoney(playerid,-500);
GivePlayerWeapon(playerid, x , Ammo);

I want to minus coins from /mycoins !!
And if he don't have coins , take example 10 coins then he must get a msg " Not enough coins "
I just want that 1 line code


Re: [Help]User file Reseting every time and How to connect the coins to Something? - X337 - 19.03.2015

Код:
//coin[playerid] is an example variable
if(coin[playerid] >= 10)
{
      GivePlayerMoney(playerid,-500);
}
else
{
      SendClientMessage(playerid, 0xFFFFFFFF, "Not enough coins");
}
coin[playerid] is an example variable


Re: [Help]User file Reseting every time and How to connect the coins to Something? - SickAttack - 19.03.2015

Are you using the "coin system" that I gave you?

Anyway:
pawn Код:
if(pCoins[playerid] >= 10)
{
      GivePlayerMoney(playerid, -500);
      pCoins[playerid] -= 10;
}
else SendClientMessage(playerid, 0xFFFFFFFF, "10 coins are required to perform this command.");



Re: [Help]User file Reseting every time and How to connect the coins to Something? - fuckingcruse - 19.03.2015

Thanks