I had an idea the other day. I would like to change the Load Screen where it says "Get Psyched" to the name of the level you are entering. I am making 3 games that span 10 boards each. So, 30 in total. That means 30 level names. Does anybody know how to do it?!?
3 posters
How Do I Change Get Psyched To My Level Name?
jayngo26- Spear of Destiny
Number of posts : 643
Age : 144
Location : Random
Job : Partime Evil Semi-Genius Plotting To Take Over Half The World. Partime Undead Charged With Keeping the Darkness Dark
Hobbie : Staying Out Of Sunlight
Message : Wolfenstein:Umbrella Beginnings Episode 2 released! Download now!
Registration date : 2008-08-09
Nexion- Seasoned Wolfer
- Number of posts : 277
Age : 111
Location : Dimension of Anti-Time
Hobbie : bringing chaos & madness into universe
Message : Planet N
Registration date : 2008-02-27
Maybe not the best solution but it works. Remove the 'get psyched' of the pic and move the mapname via PrintX/Y onto the pic. You can change the name of the maps in ChaosEdit.
- Code:
===WL_INTER.C===
boolean PreloadUpdate(unsigned current, unsigned total)
{
unsigned w = WindowW - 10;
PrintY=135; PrintX=80;
fontnumber=1;
SETFONTCOLOR(0xa4,0x0)
if (gamestate.episode==0)
US_Print(mapheaderseg[mapon]->name);
else if (gamestate.episode==1)
US_Print(mapheaderseg[10+mapon]->name);
else if (gamestate.episode==2)
US_Print(mapheaderseg[20+mapon]->name);
VWB_Bar(WindowX + 5,WindowY + WindowH - 3,w,2,BLACK);
Richter Belmont- Bring em' On!
Number of posts : 231
Age : 34
Location : New Jersey, USA
Job : Pushing Carts At Shop-rite
Hobbie : Makeing Games, Playing Castlevania
Message : Playing Lord of Shadows And I love it!!!
Registration date : 2007-07-09
If My TLWP1 Source didn't get deleted by Redoing my computer...I'll give you it to you
jayngo26- Spear of Destiny
Number of posts : 643
Age : 144
Location : Random
Job : Partime Evil Semi-Genius Plotting To Take Over Half The World. Partime Undead Charged With Keeping the Darkness Dark
Hobbie : Staying Out Of Sunlight
Message : Wolfenstein:Umbrella Beginnings Episode 2 released! Download now!
Registration date : 2008-08-09
Thanks Richter, but Nex hooked me up. The post I left got deleated with all the crazyness the forum has experienced the last few days