Captainjack

ADD Watermark LOGO to Screen

69 posts in this topic

Sorry it's late guys I had this on FTP Drive and had to find the file address again sad part is I cant find the BE filters we had from old forum.

I wanted to share this because like the makers of the mod I believe in open source and support it, I don't ask or support credit request on code that should be free for all also I forgot who the main maker was as it's been used all way back from A2 and remade so much over time.

This is a small mod that runs server side it's downloaded by clients when they load your exilemod server.
Few things you will need to know is how to make images and then save them by using textview2 in .paa format the size of the image needs to be under 128x128 Arma BIS software supports png images Don't use normal images gif and png seem to work best for clear background text.

You can get the tools needed here: http://www.armaholic.com/page.php?id=14435


I highly recommend using Notepad ++ to edit below files

1. If reading this you downloaded the mod follow steps below..
2. Decompile Exile.Altis.pbo in MPMissions or other mission .pbo you may have
3. Add logo.hpp and logo.sqf in Exile.Altis folder with your serverlogo.paa file
4. Add code as seen below in bottom of description.ext
Should like this:

#include "config.cpp"
#include "logo.hpp"

5. Add code as seen below just under #include "initServer.sqf"
Should like this: (The include part works just fine no need to call it any other way unless you have ocd and need execVM call)

#include "initServer.sqf"
#include "logo.sqf"

6. Make your image 128x128 place it in same folder as logo.hpp and logo.sqf by default code loads image name serverlogo.paa I use png myself but you can use all formats supported with textview.
        
To move logo position edit below in logo.sqf by default it's on bottom left of screen.

    safeZoneX+0.00,
    safeZoneY+safeZoneH-0.12,

 

MAIN DOWNLOAD FILES: http://relentlessservers.com/community/download/serverlogoMOD.zip
I miss placed the .paa link for test logo sorry you will have to make own logo image to test it code is looking for serverlogo.paa as logo image

More info on safeZone screen position at: https://community.bistudio.com/wiki/SafeZone

Battleye Filters are missing due to forum change you will have to filter it as it loads sorry I know of few for scripts.txt !="bis_fnc_dynamicText;" !="logo.sqf" 

serverlogotease.thumb.jpg.d313392e9c5053

  • Like 10

Share this post


Link to post
Share on other sites
Advertisement

I Become this Failer  Exile.Esseker\Logo.hpp Line 34:.Rsc Titles:Member alreday defined

 

And the Line 34 is this :     };

 

EDIT:!  ALL WORKS FINE !   my Failer ! i dont see the other RSC titel in the description :D 

All Works fine NICE SCRIPT !"

Edited by Its me ZovkT

Share this post


Link to post
Share on other sites

Extum  in your Descripton have you a RSCTitel put the  Code from the logo to the rsctitel  like this ::::::       

 

 

class RscTitles
{
    #include "addons\statusBar\statusBar.hpp"
    #include "logo.hpp"
};

Edited by Its me ZovkT
  • Like 1

Share this post


Link to post
Share on other sites

Extum  in your Descripton have you a RSCTitel put the  Code from the logo to the rsctitel  like this ::::::       

 

 

class RscTitles
{
    #include "addons\statusBar\statusBar.hpp"
    #include "logo.hpp"
};

you must have other RscTitles setup you need to copy the class in mods RscTitles into the custom RscTitles or other way round that will stop the conflict

Share this post


Link to post
Share on other sites

i used this way for a watermark 
its cleaner i think bex only inputt in one files

initPlayerLocal.sqf
 

//Wasserzeichen
_pic = "wm.paa";
[
    '<img align=''left'' size=''1.0'' shadow=''1'' image='+(str(_pic))+' />',
    safeZoneX+0.027,
    safeZoneY+safeZoneH-0.1,
    99999,
    0,
    0,
    3090
] spawn bis_fnc_dynamicText;

 

  • Like 3

Share this post


Link to post
Share on other sites

i used this way for a watermark 
its cleaner i think bex only inputt in one files

initPlayerLocal.sqf
 

//Wasserzeichen
_pic = "wm.paa";
[
    '<img align=''left'' size=''1.0'' shadow=''1'' image='+(str(_pic))+' />',
    safeZoneX+0.027,
    safeZoneY+safeZoneH-0.1,
    99999,
    0,
    0,
    3090
] spawn bis_fnc_dynamicText;

 

That works too pretty much what #include does :)

  • Like 1

Share this post


Link to post
Share on other sites
Advertisement

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

  • Recently Browsing   0 members

    No registered users viewing this page.