


Hope you like it. Just the Sidewinder and Krait to do

Moderators: winston, another_commander
Oolite Life is now revealed hereSelezen wrote:Apparently I was having a DaddyHoggy moment.
Oolite Life is now revealed hereSelezen wrote:Apparently I was having a DaddyHoggy moment.
Oolite Life is now revealed hereSelezen wrote:Apparently I was having a DaddyHoggy moment.
Oolite Life is now revealed hereSelezen wrote:Apparently I was having a DaddyHoggy moment.
Oolite Life is now revealed hereSelezen wrote:Apparently I was having a DaddyHoggy moment.
Code: Select all
{
"D_H_Racing_Ship" =
{
like_ship = "sidewinder"; // if the original ship isn't a sidewinder ammend this line
ai_type = "dumbAI.plist"; // so they don't fly away!
roles = "racer";
model = "sidewinder_redux.dat"; // if the original ship isn't a sidewinder ammend this line
name = "DH racer";
materials =
{
"sidewinder_redux.png" =
{
diffuse_map = "DH's_new_Texture"; //change this to the name of your new texture
};
};
};
}
Code: Select all
// Configuration -- customize here
this.role = "racer";
this.count = 3;
// Standard attributes
this.name = "Spawn-" + this.role;
this.author = "Jens Ayton";
this.copyright = "This script is hereby placed in the public domain.";
this.version = "1.0.1";
this.description = "Script to make 3 ships of a given role appear outside the station at every player launch"
this.shipWillLaunchFromStation = function()
{
system.legacy_addSystemShips(this.role, this.count, 1.0);
log("testscript.spawn", "Generated " + this.count + " " + this.role + " for testing purposes.");
}
Oolite Life is now revealed hereSelezen wrote:Apparently I was having a DaddyHoggy moment.
You already got an answer on your question, but the fastest and easiest way to see the textures in game is to create a Textures folder in your AddOns folder and drop the file in this. Give it the name of the original texture and Oolite will use this one instead. Works great with me.DaddyHoggy wrote:Hmmm, it's been a while - what's the quickest way I can get either of the above textures onto the corresponding ship so I can get it in the game to see what it looks like.
Oolite Life is now revealed hereSelezen wrote:Apparently I was having a DaddyHoggy moment.
Oolite Life is now revealed hereSelezen wrote:Apparently I was having a DaddyHoggy moment.