WinWarning_SetMaxTickers( 1000 team1MaxTickers, 1000 team2MaxTickers )
WinWarning_SetTickers( 1000 team1Tickers, 1000 team2Tickers )
The "int team1MaxTickers" part is telling you the type and name of the parameter. You don't actually keep that there. You should have:
WinWarning_SetMaxTickers(1000, 1000)
WinWarning_SetTickers(1000, 1000)
Thanks it works now!
How come the annihilation codes above don't affect this? can I erase them?