Armed-Assault.de Twitter
Antwort
 
Themen-Optionen Ansicht
Alt 05.07.2008, 18:05   #1 (permalink)
500 Beiträge
 
Benutzerbild von Clawhammer
 
Registriert seit: 07.01.2008
Alter: 37
Beiträge: 635
Clawhammer eine Nachricht über ICQ schicken
Standard Bild statt Intro

Tach zusammen,
ich wüste gerne wie ich ein Bild in das Hauptmenu von ArmA bekomme.
Zusätzlich hätte ich auch gerne eine andere Titelmelodie.

Wie macht man das?

Danke schonmal im vorraus
Clawhammer ist offline   Mit Zitat antworten
Alt 07.07.2008, 15:58   #2 (permalink)
50 Beiträge100 Beiträge
 
Benutzerbild von SmartGun
 
Registriert seit: 04.06.2008
Beiträge: 197
Standard

Hi,

wie man das intro durch ein bild ersetzt weiss ich leider nicht.

du kannst allerdings die loadscreens durch eigene ersetzen, wie das z.B. der true-mod macht.

du brauchst:

texview2 -> um .paa in .tga umzuwandeln und andersrum

pbo tool -> um .pbo dateien zu entpacken


es gibt 2 möglichkeiten:

1. die bilddateien im originalspiel ersetzten
die findet man im addons ordner von arma ich glaub in der UI.pbo oder so...

2. ein eigenes addon basteln (ist besser weil man am original nix rumpfuschen muss)

um rauszufinden wie so ein addon gestrickt ist, einfach mal mit nem pbo-tool ein addon zerlegen und sich das angucken.

hier ist noch ne passende config.cpp für so ein addon, dass die loadscreens ersetzt:

Code:
class CfgPatches {
 class meinneuesaddon {
  units[] = {};
  weapons[] = {};
  requiredVersion = 0.1;
  requiredAddons[] = {CAUI};
 };
};
class RscMap; // External class reference
class CA_Black_Back; // External class reference
class CA_Back; // External class reference
class controls; // External class reference
class RscStandardDisplay; // External class reference
class UpBackground; // External class reference
class RscTextMainMenu; // External class reference
class RscPicture; // External class reference
class RscButtonTextOnly; // External class reference
class RscText; // External class reference
class RscActiveText; // External class reference
class RscDisplayMPPlayers; // External class reference
class Ca_Logo_Small; // External class reference
class CA_Mainback_2; // External class reference
class CA_Title; // External class reference
class CA_Mainback; // External class reference
 
class RscDisplayLoadMission : RscStandardDisplay {
 class controlsBackground {
  class LoadingPic : RscPicture {
   text = "\tob_ui\data\meinneuesbild.paa";
   colortext[] = {1, 1, 1, 1};
  };
 };
};
class RscDisplayStart : RscStandardDisplay {
 class controlsBackground {
  class CA_Black_Back3 : CA_Black_Back {};
 };
 
 class controls {
  class LoadingPic : RscPicture {
   text = "\tob_ui\data\meinneuesbild.paa";
   colorText[] = {1, 1, 1, 1};
  };
 };
};
class RscDisplayClientWait : RscDisplayMPPlayers {
 class LoadingPic : RscPicture {
  text = "\tob_ui\data\bw_soldier.paa";
  colortext[] = {1, 1, 1, 1};
 };
};
class RscDisplayClient : RscStandardDisplay {
 class controlsBackground {
  class CA_Black_Back3 : CA_Black_Back {};
 
  class LoadingPic : RscPicture {
   text = "\tob_ui\data\meinneuesbild.paa";
   colorText[] = {1, 1, 1, 1};
  };
 };
};
class RscDisplayLoading {
 class Variants {
  class LoadingOne {
   class controls {
    class LoadingPic : RscPicture {
     text = "\tob_ui\data\meinneuesbild.paa";
     colortext[] = {1, 1, 1, 1};
    };
   };
  };
 
  class Loading_West2 : LoadingOne {
   class controls : controls {
    class LoadingPic : LoadingPic {
     text = "\tob_ui\data\meinneuesbild.paa";
    };
   };
  };
 
  class Loading_East1 : LoadingOne {
   class controls : controls {
    class LoadingPic : LoadingPic {
     text = "\tob_ui\data\meinneuesbild.paa";
    };
   };
  };
 };
};
MFG

SamrtGun
SmartGun ist offline   Mit Zitat antworten
Antwort


Aktive Benutzer in diesem Thema: 1 (Registrierte Benutzer: 0, Gäste: 1)
 
Themen-Optionen
Ansicht

Forumregeln
Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Ähnliche Themen
Thema Autor Forum Antworten Letzter Beitrag
Intro Problem Plex Hilfe 4 13.03.2005 14:35
TS statt ICQ Tiger-xian Offtopic 7 06.06.2004 21:27
Kleines Intro Rambow Editing 2 31.10.2003 12:30


Kontakt - HX3.de - Archiv - Nach oben

Angetrieben durch vBulletin, Entwicklung von Philipp Dörner & Tobias



SEO by vBSEO 3.2.0 ©2008, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119