This is exactly what I'm doing with events.
how is that going for ya
-- Diggy, Wentworth, Pitfall, Bushido, --
Diggy, Wentworth,
Like AdinX said, I'm done. I just need a single event that modifies a specified variable of everyone at the same time. Then I'm done. It runs, will run, perfectly.Do you have growing plants? -yus; seasons?; -yeh weather?; -dont want it, really :/ stocks? -what?
an actual way to form the mafia/gangs
Wentworth and Diggy are the same person.
Like AdinX said, I'm done. I just need a single event that modifies a specified variable of everyone at the same time. Then I'm done. It runs, will run, perfectly.
What events do you need?
Only one or two, VCE event mods.Modvariableall and Ifvariableall. Modvarall modifies a specified variable of everyone's at the same time. Ifvariableall checks a specified event of everyone's at the same time. For ifvarall, a Boolean needs to be included for incase the player doesn't have the described variable, so checked would mean everyone needs to have the described amount of the specified variable, and unchecked means not everyone needs the described amount of the specified variable.Example, using Daycycle events, once they get fixed:Code: [Select][0] [DaycycleOnNoon] [Minigame] [VCE_ModvariableAll] [Client] [Money] [Add] [100] That's an extremely simplified version of the planned monetary system.And for ifvarallCode: [Select][0] [DaycycleOnNoon] [Minigame] [VCE_IfvariableAll] [Minigame] [Wood] [<=] [50] [1 1][1] [Onvariabletrue] [Minigame] [VCE_Modvariable] [Wood] [Set] [1000]This one checks how much wood is in the resource database, and if it is too low, it resets the amount. This would be just a safety backup incase no one lumberjacks enough to get the required resources into the game.Also, I wasn't sure what field this would be (Minigame, self, etc), so whatever it requires is good with me.
[0] [DaycycleOnNoon] [Minigame] [VCE_ModvariableAll] [Client] [Money] [Add] [100]
[0] [DaycycleOnNoon] [Minigame] [VCE_IfvariableAll] [Minigame] [Wood] [<=] [50] [1 1][1] [Onvariabletrue] [Minigame] [VCE_Modvariable] [Wood] [Set] [1000]