Hi. well here is my problem, i've made a loading screen and i added a picture and some text
but I cant get it to ramdomize between several texts so it will allways show only 1 text
here is the scripting..
The .hps file
void OnStart()
{
SetEntityPlayerInteractCallback("WindowForest", "Level_WindowForest", false);
SetEntityPlayerLookAtCallback("WindowForest", "ForestText", false);
}
void Level_WindowForest(string &in asEntity)
{
ChangeMap("Forest", "PlayerStartArea_3", "", "");
SetupLoadScreen("LoadingText", "Forest_", 2, "Dark_Forest2.jpg");
}
The .lang file
The Forest is dark and cold
Underneath the shadows in the withered forest secrets are buried
In the loading screen the only text that appears is the Forest_01
Please help