Author Topic: Change loading background server-sided  (Read 908 times)

Is there a way to change the loading background to just black from the server?
« Last Edit: January 13, 2013, 10:50:20 PM by Electrk »

Unfortunately I don't think so, although to do so Client-Sided you go-to: Blockland>Base>Client>UI>loadingBG.png and re-place that file with another file with the same name. (and format maybe)

Client Sided:

Code: [Select]
function changeLoadingImg(%pathToImage)
{
if(!isFile(%pathToImage))
return false;

if($originalImage $= "")
$originalImage = load_mapPicture.bitmap;

load_mapPicture.setBitmap(%pathToImage);
}

function resetLoadingImg()
{
if($originalImage !$= "")
{
load_mapPicture.setBitmap($originalImage);
}
}

How did Pload do the Prison Escape background? It was like animated and stuff.

How did Pload do the Prison Escape background? It was like animated and stuff.
Pretty sure he just set a massive image in the client's center print.

Pretty sure he just set a massive image in the client's center print.

There's a pretty strong limit on centerprint content size.
I'm mostly certain that images get cut off if they are more than 400 pixels high.

There's a pretty strong limit on centerprint content size.
I'm mostly certain that images get cut off if they are more than 400 pixels high.
Well, I'm wrong there and therefore have no idea how Pload managed to do that.

Ooh, I actually know this one. He spawned objects in front of their faces so that they covered the FoV with the proper decals on them. I remember someone explaining this to me.