Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: HustoN on Jul 10, 2015, 05:50 AM

Title: Robbed Cash
Post by: HustoN on Jul 10, 2015, 05:50 AM
Hey How TO Set Cash That Player Rob From Any Shop
Title: Re: Robbed Cash
Post by: MatheuS on Jul 10, 2015, 06:40 AM
Array -> Pickup -> player.Cash
Title: Re: Robbed Cash
Post by: HustoN on Jul 10, 2015, 08:01 AM
Quote from: MatheuS on Jul 10, 2015, 06:40 AMArray -> Pickup -> player.Cash
Not Found. I Want To Increase Cash.When a Player Rob Bank He Got 1000 I Want To Increase.
Title: Re: Robbed Cash
Post by: FarisDon on Jul 10, 2015, 08:04 AM
Quote from: HustoN on Jul 10, 2015, 08:01 AM
Quote from: MatheuS on Jul 10, 2015, 06:40 AMArray -> Pickup -> player.Cash
Not Found. I Want To Increase Cash.When a Player Rob Bank He Got 1000 I Want To Increase.
There would be a function in your Main.nut when player pick up the pickup to set it time and the cash etc go there and find it.It is not usually call Main.nut.
Title: Re: Robbed Cash
Post by: [VSS]Shawn on Jul 10, 2015, 08:11 AM
function onPickupPickedUp( player, pickup )
{
if (pickup.Model == 408)
{
PrivMessage( player, Wow You have rob store." );
player.Cash += 2000;
}

Just an example