How can I remove Money Bar ? - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: How can I remove Money Bar ? (
/showthread.php?tid=185361)
How can I remove Money Bar ? -
Maeglin - 24.10.2010
I mean, Original Money Bar in right side, under the health bar. How can I remove it ?
Re: How can I remove Money Bar ? -
andruz99 - 24.10.2010
You cant
Re: How can I remove Money Bar ? -
Matej_ - 24.10.2010
Quote:
Originally Posted by Maeglin
I mean, Original Money Bar in right side, under the health bar. How can I remove it ?
|
Not possible.
Re: How can I remove Money Bar ? -
Zimon95 - 24.10.2010
For all players? You can't, but you can disable it only for you in your options.
Re: How can I remove Money Bar ? -
Maeglin - 24.10.2010
I'm going to do Currency System and I wanna show to players their currencies like that money bar.
I've a idea. I wont use money bar. It'll already 0$ and I'll show currencies to player in textdraws. I hope will so good.
Re: How can I remove Money Bar ? -
DarrenReeder - 24.10.2010
What is the purpose of this? if your using a antihack and making it so that money saves into a variables (new playerMoney[MAX_PLAYERS]

then just have an anti-hack timer that sets your money to the variable.. like
pawn Код:
public moneyAntiHack(){
for(new i=0; i<MAX_PALYERS; i++){
if(GetPlayerMoney != playerMoney[playerid]){
SetPlayerMoney(playerid, playerMoney[playerid]);
}
}
return 1;
}