I want the players to be able to wait X hours (skiptime) whenever they want.
With Radio Bravo you add 1 hour to a variable called "waitadd", this you can do any number of times wanted.
With Radio Charlie you then activate the waiting function and skip the X number of hours, chosen with Radio Bravo.
Radio BravoCondition: this
OnAct; if (isServer) then {waitadd = waitadd + 1; publicVariable "waitadd"; waitinfo = hint format ["%1 Waiting hour(s) chosen", waitadd]; publicVariable "waitinfo"}
Radio CharlieCon: this
OnAct: titletext [format ["Waiting %1 hour(s)...", waitadd], "BLACK IN", 5]; skiptime waitadd
Problem:On a dedi the format doesn't work, you dont see the hint but when you do Radio Charlie it says "Waiting X hours" and the correct number of hours hours are skipped.
Question:I could just skip the if isServer thing, but how do I then avoid that the "waitadd" gets multipled by the number of players every time?