Server Logo

N

Nitro

Guest
We are trying to get our server logo to load onto the server. So far, it has not worked. We wanted the logo to show in the bottom left, but when we restarted the server, there was a small black box with an X in it in the upper right... What did we do wrong? The image size is 256 x 256. Here is the config we have in the servers .ini file:

[ServerLogoTVa.MutLogoServer]
Logo=IVserverlogo.Ivserverlogo
LogoColor=(B=255,G=255,R=255,A=255)
LogoX=0.000500
LogoY=0.950000
LogoOffsetX=-256
LogoOffsetY=256
LogoScale=1.000000
FadeInDuration=3.000000
DisplayDuration=5.000000
FadeOutDuration=1.500000
InitialDelay=1.000000
FadeInAlphaTransition=FT_ReverseSquareSmooth
FadeOutAlphaTransition=FT_SquareSmooth

I didnt know about the LogoOffset or the LogoColor, so we left them as default.

We also added the ServerActors=ServerLogoTVa.mutLogoServer and ServerPackages=IVserverlogo into [Engine.GameEngine]

Any help is appreciated, thanks!
 
The origin is top left, so bottom left would be:

LogoX = 0
LogoY = 1

With the logo size of 256x256, the offsets should be

LogoOffsetX = 0
LogoOffsetY = -256

This should put the left edge of the logo on the left edge, and bring the top of the logo up 256 pixels from the bottom.

(I haven't used this yet. I'm just going by the documentation. I've still gotta get some artwork together to take advantage of this.)
 
Back
Top