Is it possible to remove this..?
#1

Is it possible to disable singleplayer gambling in casinos:


is it possible?
Reply
#2

I think that DisableInteriorEnterExits does that.
Reply
#3

pawn Код:
public OnFilterScriptInit()
{
DisableInteriorEnterExits();
return 1;
}
Reply
#4

I did that but still I can use them
Reply
#5

Quote:
Originally Posted by WeA
I did that but still I can use them
They can't be removed, I think I also want to remove them :<
Reply
#6

Are you talking about the objects? If so then no, you can't remove them.
Reply
#7

You should do something like this, so it won't matter if they play/win money.

Код:
new playerMoney = GetPlayerMoney(i);
if(playerMoney > GetPVarInt(i, "cash"))
{
	ResetPlayerMoney(i);
  	GivePlayerMoney(i, GetPVarInt(i, "cash"));
}
if(playerMoney < GetPVarInt(i, "cash"))
{
	SetPVarInt(i, "cash", playerMoney);
}
Good Luck!
Reply
#8

They want them removed come on!


Almost every new person to SA-MP is about 11-12 and they can't read come on, they want it gone!
Reply
#9

Hmm, a clever way to do that is to recreate the interior, take all of the objects and copy them someplace, then have that be your new interior.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)