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 1: Line 1:
To change the background tile of the loading screen when starting/changing map insert the following
To change the background tile of the loading screen when starting or changing a map, insert the following code in your CON files:
code in to your GAME.CON


<pre>
onevent EVENT_GETLOADTILE
setvar RETURN "temp"
endevent
</pre>


Replace "temp" with any tile number you like to display it as your custom background loading screen.  
[[onevent]] [[EVENT_GETLOADTILE]]
Adding 16384 to your number will stop the "LOADING" text from showing also.  
  [[setvar]] [[RETURN]] <[[tilenum]]>
endevent
 
Replace <tilenum> 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.  


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

Revision as of 20:02, 25 March 2013

To change the background tile of the loading screen when starting or changing a map, insert the following code in your CON files:


onevent EVENT_GETLOADTILE
 setvar RETURN <tilenum>
endevent

Replace <tilenum> 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.