[FilterScript] Rock's Coin System
#1

Rock's Coin System
Introduction :
This is a coin system , like second money.
Commands :
This filescript includes this commands
  • /givecoins - players can transfer coins to others
  • /coins - see other player coins
  • /mycoins - see how much coins you have
  • /setcoins - RCON Admin only , set's a player amount of coins .
New commands using coins :
This is an example of new commands using coins
Code:
CMD:hacked(playerid,params[])
{
pInfo[playerid][Coins] -= 100;
SendClientMessage(playerid,0xFFFFFFAA,"HaHaHa !!! You have been hacked ! 100 Coins are taken from you .");
return 1;
}
This function
Code:
pInfo[playerid][Coins] -= 100;
Takes 100 coins from player who typed /hacked
And this is another example
Code:
CMD:hacker(playerid,params[])
{
pInfo[playerid][Coins] += 100;
SendClientMessage(playerid,0xFFFFFFAA,"You Hacked somebody ! You get 100 Coins .");
return 1;
}
This function
Code:
pInfo[playerid][Coins] += 100;
Give's player 100 coins
The differences between this 2 functions are "+" and "-"
see here
Code:
pInfo[playerid][Coins] -= 100;
pInfo[playerid][Coins] += 100;
Download : Ps : I've created this because i've searched for something like this and didn't found .
Reply


Messages In This Thread
Rock's Coin System - by Rock18 - 05.03.2011, 19:31
Re: Rock's Coin System - by Master_Gangster - 05.03.2011, 19:34
Re: Rock's Coin System - by NekErM@N - 05.03.2011, 19:38
Re: Rock's Coin System - by Zh3r0 - 05.03.2011, 19:42
Re: Rock's Coin System - by Rock18 - 05.03.2011, 19:46
Re: Rock's Coin System - by Master_Gangster - 05.03.2011, 19:51
Re: Rock's Coin System - by Rock18 - 05.03.2011, 19:56
Re: Rock's Coin System - by iMonk3y - 05.03.2011, 21:19
Re: Rock's Coin System - by Rock18 - 05.03.2011, 21:31
Re: Rock's Coin System - by YangOn - 05.03.2011, 22:02
Re: Rock's Coin System - by Master_Gangster - 06.03.2011, 01:55
Re: Rock's Coin System - by Edvin - 06.03.2011, 08:22
Re: Rock's Coin System - by xSkullx - 08.07.2012, 08:03

Forum Jump:


Users browsing this thread: 1 Guest(s)