I know a few bits and bobs of Torque, but not enough to make my own mod. Just enough to edit CityRPG.Do you know of a way to activate it? Is there just no line of code that executes it or something?
I know exactly how to execute it, and it's rather easy. However, it does crash clients, you must be aware.
In the ScriptObject file, at the very bottom... There's this coding -
if(!isObject(WeatherSO))
{
//new scriptObject(WeatherSO) { };
//WeatherSO.loadForecast();
}
You need to get rid of the //'s so that the script can function properly.
if(!isObject(WeatherSO))
{
new scriptObject(WeatherSO) { };
WeatherSO.loadForecast();
}
That'll make weather fully functional, as far as I'm concerned.