Teraz jest N 22 cze, 2025 23:07


Problem z ODOL

Archiwum działów sekcji Operation Flashpoint
  • Autor
  • Wiadomość
Offline

Edrave

Szeregowy

Szeregowy

  • Posty: 10
  • Dołączył(a): Śr 04 lut, 2009 16:01
  • Lokalizacja: Z nikąd

Problem z ODOL

PostSo 07 lut, 2009 23:48

Jak w temacie. Mam problem z rozszeżeniem ODOL.
A więc, o co chodzi:
Robiłem obiekty i zapisywane były w MLOD. Potem przez BinarizeIT zmieniłem format z MLOD na ODOL. Zrobiłem również kopie zapasową z obiektami w MLOD. A więc, błąd pojawia się tutaj: config i wszystko było dobrze, jak testuje obiekty z MLOD to wszystko jest ok, ale jak testuje obiekty ODOL to obiekty te są.. niewidzialne. Nie wiem, wszystko było identyczne, tak jak w obiektach w MLOD. A więc nie wiem, przecież wszystkie oryginalne obiekty z OFP są w ODOL. Nie rozumiem, czemu w ODOL są niewidzialne a w MLOD są...
You dont have to see me...
Offline
Avatar użytkownika

reyhard

Pułkownik

Pułkownik

  • Posty: 1455
  • Dołączył(a): So 12 mar, 2005 09:56
  • Lokalizacja: wielkiego brata

PostN 08 lut, 2009 11:11

pokaż magiczny config
Po prostu przyjmij do wiadomości, że nadciąga rewolucja proletariacka, lada dzień Chavez z Castro i Bin Ladenem nadjadą na białym traktorze i uwolnią ciemiężony lud polski spod władzy międzynarodowego kapitału.
Offline

Edrave

Szeregowy

Szeregowy

  • Posty: 10
  • Dołączył(a): Śr 04 lut, 2009 16:01
  • Lokalizacja: Z nikąd

PostPn 09 lut, 2009 13:41

Dobra.
Tutaj podaje config obu tych folderów.
Kod: Zaznacz cały
CONFIG FOLDERU Z OBIEKTEM MLOD:
#define TEast 0
#define TWest 1
#define TGuerrila 2
#define TCivilian 3
#define TSidUnknown 4
#define TEnemy 5
#define TFriendly 6
#define TLogic 7


#define true 1
#define false 0


#define private 0
#define protected 1
#define public 2

class CfgPatches
{
   class TestOBJ
   {
      units[] = {TestOBJ};
      weapons[] = {};
      requiredVersion = 1.96;
   };
};

class CfgModels
{
        class Default{};
        class Vehicle: Default{}
};

class CfgVehicles
{
   class All{};
   class Static:All{};
   class building: Static{};
   class Strategic: building{};
   class Pyramid: strategic
   {
   scope=public;
   vehicleclass="My Test Object";
   displayName="TestObject 1";
   model="\mtsf\tobj.p3d";
   destrType="DestructNo";
   
   };
};

Kod: Zaznacz cały
CONFIG Z OBIEKTU ODOL:
#define TEast 0
#define TWest 1
#define TGuerrila 2
#define TCivilian 3
#define TSidUnknown 4
#define TEnemy 5
#define TFriendly 6
#define TLogic 7


#define true 1
#define false 0


#define private 0
#define protected 1
#define public 2

class CfgPatches
{
   class TestOBJ
   {
      units[] = {TestOBJ};
      weapons[] = {};
      requiredVersion = 1.96;
   };
};

class CfgModels
{
        class Default{};
        class Vehicle: Default{}
};

class CfgVehicles
{
   class All{};
   class Static:All{};
   class building: Static{};
   class Strategic: building{};
   class Pyramid: strategic
   {
   scope=public;
   vehicleclass="My Test Object";
   displayName="TestObject 1";
   model="\mtsf\tobj.p3d";
   destrType="DestructNo";
   
   };
};

Są takie same.. Ale tylko mlod mi działa, a odol już nie :/
You dont have to see me...
Offline
Avatar użytkownika

reyhard

Pułkownik

Pułkownik

  • Posty: 1455
  • Dołączył(a): So 12 mar, 2005 09:56
  • Lokalizacja: wielkiego brata

PostPn 09 lut, 2009 15:02

najpierw się naucz obsługi odol sexplorera, a później dopiero zadawaj pytania. Na dobry początek radzę się zapoznać z czymś takim jak cfgModels. Zdefiniuj sobie tobj i zobacz co się stanie.
Po prostu przyjmij do wiadomości, że nadciąga rewolucja proletariacka, lada dzień Chavez z Castro i Bin Ladenem nadjadą na białym traktorze i uwolnią ciemiężony lud polski spod władzy międzynarodowego kapitału.
Offline

Edrave

Szeregowy

Szeregowy

  • Posty: 10
  • Dołączył(a): Śr 04 lut, 2009 16:01
  • Lokalizacja: Z nikąd

PostPn 09 lut, 2009 23:16

odol sexplorera? A może odol explodera?
hmm. nie znam takiego czegoś.
PS. Jestem początkującym, a więc nie jestem w tym master :clever: .
A więc może odrazu powiesz, co w tym "magicznym" configu jest źle?
=EDIT 1=
Hmm.. Czekaj, pomału kapuje o co chodzi.. HMmm
=EDIT 2=
Nie! Jednak nie :/.

Zrobiłem nowy config.
Ale cały czas to samo, nie ma obiektu..

Kod: Zaznacz cały
#define TEast 0
#define TWest 1
#define TGuerrila 2
#define TCivilian 3
#define TSideUnknown 4
#define TEnemy 5
#define TFriendly 6
#define TLogic 7
#define true 1
#define false 0
#define private 0
#define protected 1
#define public 2

class CfgPatches
{
   class TEST
   {
      units[] = {test};
      weapons[] = {};
      requiredVersion = 1.96;
   };
};

class CfgModels
 {
     class Default {};
      class obj: default{};
      class test: obj
   {

   };

};

class CfgVehicles
{
    class All {};
     class AllVehicles: All {};
     class Land: AllVehicles {};
     class Static : Land {};
     class Building : Static {};
     class NonStrategic : Building {};
     class Fence : NonStrategic {};
     class WireFence: Fence {};
     class House: NonStrategic {};

     class test: Building
    {      
      model="\tst\test.p3d";
      armor=2000;
      scope=2;
      vehicleClass="RM";
      displayName="mytestobject"; 
    };      
};


You dont have to see me...
Offline
Avatar użytkownika

madmax

Szeregowy

Szeregowy

  • Posty: 42
  • Dołączył(a): N 04 paź, 2009 18:37

PostN 06 cze, 2010 11:44

spróbuj może:
.
.
scope = 2;
.
.

zmienic
na scope = 3 (lub 1 - juz nie pamiętam)

ale tu chyba jest problem
hmm....
Online

xersius

Pułkownik

Pułkownik

  • Posty: 99987
  • Dołączył(a): Pn 29 lip, 2024 15:01

Re: Problem z ODOL

PostSo 14 gru, 2024 05:56

http://audiobookkeeper.ruhttp://cottagenet.ruhttp://eyesvision.ruhttp://eyesvisions.comhttp://factoringfee.ruhttp://filmzones.ruhttp://gadwall.ruhttp://gaffertape.ruhttp://gageboard.ruhttp://gagrule.ruhttp://gallduct.ruhttp://galvanometric.ruhttp://gangforeman.ruhttp://gangwayplatform.ruhttp://garbagechute.ruhttp://gardeningleave.ruhttp://gascautery.ruhttp://gashbucket.ruhttp://gasreturn.ruhttp://gatedsweep.ruhttp://gaugemodel.ruhttp://gaussianfilter.ruhttp://gearpitchdiameter.ru
http://geartreating.ruhttp://generalizedanalysis.ruhttp://generalprovisions.ruhttp://geophysicalprobe.ruhttp://geriatricnurse.ruhttp://getintoaflap.ruhttp://getthebounce.ruhttp://habeascorpus.ruhttp://habituate.ruhttp://hackedbolt.ruhttp://hackworker.ruhttp://hadronicannihilation.ruhttp://haemagglutinin.ruhttp://hailsquall.ruhttp://hairysphere.ruhttp://halforderfringe.ruhttp://halfsiblings.ruhttp://hallofresidence.ruhttp://haltstate.ruhttp://handcoding.ruhttp://handportedhead.ruhttp://handradar.ruhttp://handsfreetelephone.ru
http://hangonpart.ruhttp://haphazardwinding.ruhttp://hardalloyteeth.ruhttp://hardasiron.ruhttp://hardenedconcrete.ruhttp://harmonicinteraction.ruhttp://hartlaubgoose.ruhttp://hatchholddown.ruhttp://haveafinetime.ruhttp://hazardousatmosphere.ruhttp://headregulator.ruhttp://heartofgold.ruhttp://heatageingresistance.ruhttp://heatinggas.ruhttp://heavydutymetalcutting.ruhttp://jacketedwall.ruhttp://japanesecedar.ruhttp://jibtypecrane.ruhttp://jobabandonment.ruhttp://jobstress.ruhttp://jogformation.ruhttp://jointcapsule.ruhttp://jointsealingmaterial.ru
http://journallubricator.ruhttp://juicecatcher.ruhttp://junctionofchannels.ruhttp://justiciablehomicide.ruhttp://juxtapositiontwin.ruhttp://kaposidisease.ruhttp://keepagoodoffing.ruhttp://keepsmthinhand.ruhttp://kentishglory.ruhttp://kerbweight.ruhttp://kerrrotation.ruhttp://keymanassurance.ruhttp://keyserum.ruhttp://kickplate.ruhttp://killthefattedcalf.ruhttp://kilowattsecond.ruhttp://kingweakfish.ruhttp://kinozones.ruhttp://kleinbottle.ruhttp://kneejoint.ruhttp://knifesethouse.ruhttp://knockonatom.ruhttp://knowledgestate.ru
http://kondoferromagnet.ruhttp://labeledgraph.ruhttp://laborracket.ruhttp://labourearnings.ruhttp://labourleasing.ruhttp://laburnumtree.ruhttp://lacingcourse.ruhttp://lacrimalpoint.ruhttp://lactogenicfactor.ruhttp://lacunarycoefficient.ruhttp://ladletreatediron.ruhttp://laggingload.ruhttp://laissezaller.ruhttp://lambdatransition.ruhttp://laminatedmaterial.ruhttp://lammasshoot.ruhttp://lamphouse.ruhttp://lancecorporal.ruhttp://lancingdie.ruhttp://landingdoor.ruhttp://landmarksensor.ruhttp://landreform.ruhttp://landuseratio.ru
http://languagelaboratory.ruhttp://largeheart.ruhttp://lasercalibration.ruhttp://laserlens.ruhttp://laserpulse.ruhttp://laterevent.ruhttp://latrinesergeant.ruhttp://layabout.ruhttp://leadcoating.ruhttp://leadingfirm.ruhttp://learningcurve.ruhttp://leaveword.ruhttp://machinesensible.ruhttp://magneticequator.ruhttp://magnetotelluricfield.ruhttp://mailinghouse.ruhttp://majorconcern.ruhttp://mammasdarling.ruhttp://managerialstaff.ruhttp://manipulatinghand.ruhttp://manualchoke.ruhttp://medinfobooks.ruhttp://mp3lists.ru
http://nameresolution.ruhttp://naphtheneseries.ruhttp://narrowmouthed.ruhttp://nationalcensus.ruhttp://naturalfunctor.ruhttp://navelseed.ruhttp://neatplaster.ruhttp://necroticcaries.ruhttp://negativefibration.ruhttp://neighbouringrights.ruhttp://objectmodule.ruhttp://observationballoon.ruhttp://obstructivepatent.ruhttp://oceanmining.ruhttp://octupolephonon.ruhttp://offlinesystem.ruhttp://offsetholder.ruhttp://olibanumresinoid.ruhttp://onesticket.ruhttp://packedspheres.ruhttp://pagingterminal.ruhttp://palatinebones.ruhttp://palmberry.ru
http://papercoating.ruhttp://paraconvexgroup.ruhttp://parasolmonoplane.ruhttp://parkingbrake.ruhttp://partfamily.ruhttp://partialmajorant.ruhttp://quadrupleworm.ruhttp://qualitybooster.ruhttp://quasimoney.ruhttp://quenchedspark.ruhttp://quodrecuperet.ruhttp://rabbetledge.ruhttp://radialchaser.ruhttp://radiationestimator.ruhttp://railwaybridge.ruhttp://randomcoloration.ruhttp://rapidgrowth.ruhttp://rattlesnakemaster.ruhttp://reachthroughregion.ruhttp://readingmagnifier.ruhttp://rearchain.ruhttp://recessioncone.ruhttp://recordedassignment.ru
http://rectifiersubstation.ruhttp://redemptionvalue.ruhttp://reducingflange.ruhttp://referenceantigen.ruhttp://regeneratedprotein.ruhttp://reinvestmentplan.ruhttp://safedrilling.ruhttp://sagprofile.ruhttp://salestypelease.ruhttp://samplinginterval.ruhttp://satellitehydrology.ruhttp://scarcecommodity.ruhttp://scrapermat.ruhttp://screwingunit.ruhttp://seawaterpump.ruhttp://secondaryblock.ruhttp://secularclergy.ruhttp://seismicefficiency.ruhttp://selectivediffuser.ruhttp://semiasphalticflux.ruhttp://semifinishmachining.ruhttp://spicetrade.ruhttp://spysale.ru
http://stungun.ruhttp://tacticaldiameter.ruhttp://tailstockcenter.ruhttp://tamecurve.ruhttp://tapecorrection.ruhttp://tappingchuck.ruhttp://taskreasoning.ruhttp://technicalgrade.ruhttp://telangiectaticlipoma.ruhttp://telescopicdamper.ruhttp://temperateclimate.ruhttp://temperedmeasure.ruhttp://tenementbuilding.rutuchkashttp://ultramaficrock.ruhttp://ultraviolettesting.ru
Online

xersius

Pułkownik

Pułkownik

  • Posty: 99987
  • Dołączył(a): Pn 29 lip, 2024 15:01

Re: Problem z ODOL


Powrót do Operation Flashpoint

Kto przegląda forum

Użytkownicy przeglądający ten dział: xersius i 9 gości

cron