How to Change the Loading Screen Background: Difference between revisions

From EDukeWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 4: Line 4:
<pre>
<pre>
onevent EVENT_GETLOADTILE
onevent EVENT_GETLOADTILE
  setvar RETURN "tile number here"
  setvar RETURN "temp"
endevent
endevent
</pre>
</pre>
Replace "temp" with any tile number you like to display it as your custom background loading screen.
Adding 16384 to your number will stop the LOADING text from showing also.


[[Category: Tutorials]]
[[Category: Tutorials]]

Revision as of 05:35, 29 March 2008

To change the background tile of the loading screen when starting/changing map insert the following code in to your GAME.CON

onevent EVENT_GETLOADTILE
 setvar RETURN "temp"
endevent

Replace "temp" with any tile number you like to display it as your custom background loading screen. Adding 16384 to your number will stop the LOADING text from showing also.