Linozerus

New Skins

9 posts in this topic

Hi guys,

after searching through in here i found some nice hints, that it would be possible to put in more skins. 
For me it would be intressting zu get some for the Huron and the Offroad aswell.

Eichi replied in "Ask a developer" that it would be clear after a look in the config on the Huron. But i can see only the "normal" code with the name of the skin and the price. 

Can someone give me a source or a little push in the right direction ?

thanks 
 

Share this post


Link to post
Share on other sites
Advertisement

Try this guys way found this in the german forum: (DaddelGoggi)

Step 1:
create a file named eg: customskins.sqf and adds there a following ....this file comes in your Exile.yourMap.pbo in a folder of your choice .... I habs in the Pictures folder .... there are also my skins in it. (vehicles templates for editing in the pbo somewhere?)

Step 1:
create a file named eg: customskins.sqf and adds there a following ....

if (isServer) exitwith {};
waitUntil {sleep 1; count vehicles > 1};
sleep 1;
{
If (typeOf _x in ["classname des Fahrzeugs"]) then //use any Vehicle class to overwrite
{
nul = _x setObjectTexture [0,"bilder\musterbild.jpg"] //can also be jpg
};
If (typeOf _x in ["Exile_Car_Hunter"]) then //use any Vehicle class to overwrite
{
nul = _x setObjectTexture [0,"bilder\musterbild1.jpg"],
nul = _x setObjectTexture [1,"bilder\musterbild2.jpg"] //can also be jpg
};
} forEach (vehicles);

Writes in your init.sqf following:

_nul = [] execVM "bilder\customskins.sqf";

there is  major difference in size bewteen jpg and .paa you of course want to use the smaller one

                                                                                or

 

Paste Into customskins.sqf.

if (isServer) exitwith {};
waitUntil {sleep 1; count vehicles > 1};
sleep 1;
{
If (typeOf _x in ["Exile_Car_SUV_Grey"]) then //use any Vehicle class to overwrite
{
nul = _x setObjectTexture [0,"Skins\cop_suv.paa"] //can also be jpg
};

} forEach (vehicles);

 

init.sqf

_nul = [] execVM "bilder\customskins.sqf";

 

 

 

Edited by Redcloud78

Share this post


Link to post
Share on other sites

Try this guys way found this in the german forum: (DaddelGoggi)

Step 1:
create a file named eg: customskins.sqf and adds there a following ....this file comes in your Exile.yourMap.pbo in a folder of your choice .... I habs in the Pictures folder .... there are also my skins in it. (vehicles templates for editing in the pbo somewhere?)

Step 1:
create a file named eg: customskins.sqf and adds there a following ....

Hidden Content

Writes in your init.sqf following:

_nul = [] execVM "bilder\customskins.sqf";

there is  major difference in size bewteen jpg and .paa you of course want to use the smaller one

                                                                                or

 

Paste Into customskins.sqf.

Hidden Content

 

init.sqf

_nul = [] execVM "bilder\customskins.sqf";

 

 

 

this While loop Will tale server resurses 

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.