Teraz jest So 14 cze, 2025 03:22


ArmA - spis komend

Archiwum działów sekcji Armed Assault
  • Autor
  • Wiadomość
Offline

Oscypek

Major

Major

  • Posty: 858
  • Dołączył(a): Pn 01 lis, 2004 12:12
  • Lokalizacja: Maków Podhalański

ArmA - spis komend

PostPt 21 lip, 2006 16:00

BiS udostępnił już nam spis komend do Armed Assault.
Zamierzam dokończyć tłumaczenie wspomnianych, jednak angielskie ja niewiele znam, w miejscach gdzie pozostaną pytajniki lub napisane jest dalej po angielsku - tam nie dałem rady. Jeżeli przetłumaczyłeś nowy kawałek, albo rozszyfrowałeś coś, z czym sobie nie poradziłem to napisz mi na PW, potem umieszcze to tuaj, aby był porządek, nick autora naturalnie zostawię. Proszę was też o informowanie o moich błędach i zgłaszanie poprawek.:)

__________________________________________________________

__________________________________________________________
Komendy:


__________________________________________________________

__________________________________________________________

#

!a
Zmienne:
a: Boolean

Typ zwracanej wartości:
Boolean

Opis:
Przeczy wartości a
Jeśli a jest true to zwracane jest false

Przykład:
!true
Rezultat to false


a != b
Zmienne:
a: Number, Side, String, Object, Group, Structured Text, Config, Display lub Control
b: Number, Side, String, Object, Group, Structured Text, Config, Display lub Control

Typ zwracanej wartości:
Boolean

Opis:
Sprawdza czy wartość a nie jest równa wartości b.

Przykład:
„Order1” != „Order2”
Rezultat to true, gdyż to nie są takie same ciągi znaków (String)


a%b
Zmienne:
a: Number
b: Number

Typ zwracanej wartości:
Number

Opis:
Reszta z dzielenia a przez b. Działa tak samo jak funkcja mod.

Przykład:
a%b

Komentarz
Tej komendy można użyć do zaokrąglania liczb w dół, np.:

_rand = random(6)
_num = _rand – (_rand % 1)

Jeśli wylosowana liczba to 3.4, do _num zostanie przypisana liczba 3.


a && b
Zmienne:
a: Boolean
b: Boolean

Typ zwracanej wartości:
Boolean

Opis:
Działa tak samo jak and.

Przykład:
? (alive player && alive leader player) : hint „Gracz i jego dowódca żyją.”


a > b
Zmienne:
a: Number
b: Number

Typ zwracanej wartości:
Boolean

Opis:
Wartość a większa od wartości b.

Przykład:
? (fuel truck1 > 0) : hint „Ciężarówka ma jeszcze trochę paliwa.”


a >= b
Zmienne:
a: Number
b: Number

Typ zwracanej wartości:
Boolean

Opis:
Wartość a większa lub równa wartości b.

Przykład:
? (fuel truck1 >= 0.5) : hint „Ciężarówka ma jeszcze przynajmniej połowę paliwa.”


a < b
Zmienne:
a: Number
b: Number

Typ zwracanej wartości:
Boolean

Opis:
Wartość a mniejsza od wartości b.

Przykład:
? (fuel truck1 < 0.5) : hint „Ciężarówka ma mniej niż połowę paliwa.”

a >= b
Zmienne:
a: Number
b: Number

Typ zwracanej wartości:
Boolean

Opis:
Wartość a mniejsza lub równa wartości b.

Przykład:
? (fuel truck1 <= 0) : hint „Ciężarówka nie ma już paliwa.”

a * b
Zmienne:
a: Number
b: Number

Typ zwracanej wartości:
Boolean

Opis:
Mnoży wartość a przez wartość b.

Przykład:
_ percentage = 0.5 * 100


+ valuea
Zmienne:
a: Number lub Array

Typ zwracanej wartości:
Number albo Array

Opis:
W przypadku Array zwraca kopię jego, a w przypadku Number zwraca liczbę.

Przykład:
Number: +4
Zwraca 4
Array: +[0,1,2]
Zwraca [0,1,2]


a + b
Zmienne:
a: Number, String lub Array
b: Number, String lub Array

Typ zwracanej wartości:
Number, String lub Array

Opis:
Do a zostaje dodane b. Jeśli a i b to String to wtedy na końcu a zostaje dodany String b, jeśli a i b to Array to do a zostają dodane wszystkie wartości z Array’u b.

Przykład:
Number: 1 + 2
Zwraca 3
String: „Warzywa” + „ są „ + „fajne”
Zwraca String „Warzywa są fajne”
Array: [0,1,2] + [1,2,3]
Zwraca Array [0,1,2,1,2,3]


- a
Zmienne:
a: Number

Typ zwracanej wartości:
Number

Opis:
Odejmuje od liczby 0 wartość a.

Przykład:
- - 10
Zwraca 10 (minus i minus tworzą razem plus, czyli do 0 dodajemy 10)


a + b
Zmienne:
a: Number lub Array
b: Number lub Array

Typ zwracanej wartości:
Number lub Array

Opis:
Dla Number odejmuje liczbę a od liczby b.
Dla Array usuwa z Array a wszystkie wektory występujące też w Array’u b.

Przykład:
Number: 10 – 7
Zwraca 3
Array: [1,2,2,player,”String”] – [2,player,player,”String”]
Zwraca [1]


a / b
Zmienne:
a: Number
b: Number

Typ zwracanej wartości:
Boolean

Opis:
Dzieli wartość a przez wartość b.

Przykład:
_sum = 15 / 3
Teraz _sum równe jest 5.


a == b
Zmienne:
a: Number, Side, String, Object, Group, Structured Text, Config, Display lub Control
b: Number, Side, String, Object, Group, Structured Text, Config, Display lub Control

Typ zwracanej wartości:
Boolean

Opis:
Sprawdza czy wartość a jest równa wartości b.

Przykład:
? (leader group player == player) : „Jesteś dowódcą swojej grupy.”
Rezultat to true, gdyż to nie są takie same ciągi znaków (String)

Komentarz:
Nie działa jeśli a lub b to Array lub Boolean.
Na przykład:
? myArray == [] : hint „ To test”
Zwróci błąd.
Poprawnie będzie:
? (Mount myArray == 0) : hint „To test”


a ^ b
Zmienne:
a: Number
b: Number

Typ zwracanej wartości:
Number

Opis:
Podnosi wartość a do potęgi b.

Przykład:
5 ^ 2
Zwróci 25.


a || b
Zmienne:
a: Boolean
b: Boolean

Typ zwracanej wartości:
Boolean

Opis:
Działa tak samo jak or.

Przykład:
? (canMove tank1 || canMove tank2) : hint “Oba nasze czołgi są w stanie się poruszać.”

a = b
Zmienne:
a: Number, Group, String lub Object
b: Number, Group, String lub Object

Typ zwracanej wartości:
Nic nie zwraca

Opis:
a ma tą samą wartość co b

Przykład:
_value = 5
_group = group player
_string = “Witaj, świecie!”
_object = tank1


config/Name
Zmienne:
config: Config
name: String

Typ zwracanej wartości:
Config

Wymagana wersja:
2.92

Opis:
Returns subentry of config entry with given name.

Przykład:
configFile / “CfgVehicles”


config >> Name
Zmienne:
config: Config
name: String

Typ zwracanej wartości:
Config

Wymagana wersja:
2.35

Opis:
Returns subentry of config entry with given name.

Przykład:
configFile >> “CfgVehicles”
Online

xersius

Pułkownik

Pułkownik

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

Re: ArmA - spis komend

Online

xersius

Pułkownik

Pułkownik

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

Re: ArmA - spis komend

PostSo 07 wrz, 2024 21:55

сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтtuchkasсайтсайт
Online

xersius

Pułkownik

Pułkownik

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

Re: ArmA - spis komend

Online

xersius

Pułkownik

Pułkownik

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

Re: ArmA - spis komend

PostCz 05 gru, 2024 17:54

audiobookkeeper.rucottagenet.rueyesvision.rueyesvisions.comfactoringfee.rufilmzones.rugadwall.rugaffertape.rugageboard.rugagrule.rugallduct.rugalvanometric.rugangforeman.rugangwayplatform.rugarbagechute.rugardeningleave.rugascautery.rugashbucket.rugasreturn.rugatedsweep.rugaugemodel.rugaussianfilter.rugearpitchdiameter.ru
geartreating.rugeneralizedanalysis.rugeneralprovisions.rugeophysicalprobe.rugeriatricnurse.rugetintoaflap.rugetthebounce.ruhabeascorpus.ruhabituate.ruhackedbolt.ruhackworker.ruhadronicannihilation.ruhaemagglutinin.ruhailsquall.ruhairysphere.ruhalforderfringe.ruhalfsiblings.ruhallofresidence.ruhaltstate.ruhandcoding.ruhandportedhead.ruhandradar.ruhandsfreetelephone.ru
hangonpart.ruhaphazardwinding.ruhardalloyteeth.ruhardasiron.ruhardenedconcrete.ruharmonicinteraction.ruhartlaubgoose.ruhatchholddown.ruhaveafinetime.ruhazardousatmosphere.ruheadregulator.ruheartofgold.ruheatageingresistance.ruheatinggas.ruheavydutymetalcutting.rujacketedwall.rujapanesecedar.rujibtypecrane.rujobabandonment.rujobstress.rujogformation.rujointcapsule.rujointsealingmaterial.ru
journallubricator.rujuicecatcher.rujunctionofchannels.rujusticiablehomicide.rujuxtapositiontwin.rukaposidisease.rukeepagoodoffing.rukeepsmthinhand.rukentishglory.rukerbweight.rukerrrotation.rukeymanassurance.rukeyserum.rukickplate.rukillthefattedcalf.rukilowattsecond.rukingweakfish.rukinozones.rukleinbottle.rukneejoint.ruknifesethouse.ruknockonatom.ruknowledgestate.ru
kondoferromagnet.rulabeledgraph.rulaborracket.rulabourearnings.rulabourleasing.rulaburnumtree.rulacingcourse.rulacrimalpoint.rulactogenicfactor.rulacunarycoefficient.ruladletreatediron.rulaggingload.rulaissezaller.rulambdatransition.rulaminatedmaterial.rulammasshoot.rulamphouse.rulancecorporal.rulancingdie.rulandingdoor.rulandmarksensor.rulandreform.rulanduseratio.ru
languagelaboratory.rulargeheart.rulasercalibration.rulaserlens.rulaserpulse.rulaterevent.rulatrinesergeant.rulayabout.ruleadcoating.ruleadingfirm.rulearningcurve.ruleaveword.rumachinesensible.rumagneticequator.rumagnetotelluricfield.rumailinghouse.rumajorconcern.rumammasdarling.rumanagerialstaff.rumanipulatinghand.rumanualchoke.rumedinfobooks.rump3lists.ru
nameresolution.runaphtheneseries.runarrowmouthed.runationalcensus.runaturalfunctor.runavelseed.runeatplaster.runecroticcaries.runegativefibration.runeighbouringrights.ruobjectmodule.ruobservationballoon.ruobstructivepatent.ruoceanmining.ruoctupolephonon.ruofflinesystem.ruoffsetholder.ruolibanumresinoid.ruonesticket.rupackedspheres.rupagingterminal.rupalatinebones.rupalmberry.ru
papercoating.ruparaconvexgroup.ruparasolmonoplane.ruparkingbrake.rupartfamily.rupartialmajorant.ruquadrupleworm.ruqualitybooster.ruquasimoney.ruquenchedspark.ruquodrecuperet.rurabbetledge.ruradialchaser.ruradiationestimator.rurailwaybridge.rurandomcoloration.rurapidgrowth.rurattlesnakemaster.rureachthroughregion.rureadingmagnifier.rurearchain.rurecessioncone.rurecordedassignment.ru
rectifiersubstation.ruredemptionvalue.rureducingflange.rureferenceantigen.ruregeneratedprotein.rureinvestmentplan.rusafedrilling.rusagprofile.rusalestypelease.rusamplinginterval.rusatellitehydrology.ruscarcecommodity.ruscrapermat.ruscrewingunit.ruseawaterpump.rusecondaryblock.rusecularclergy.ruseismicefficiency.ruselectivediffuser.rusemiasphalticflux.rusemifinishmachining.ruspicetrade.ruspysale.ru
stungun.rutacticaldiameter.rutailstockcenter.rutamecurve.rutapecorrection.rutappingchuck.rutaskreasoning.rutechnicalgrade.rutelangiectaticlipoma.rutelescopicdamper.rutemperateclimate.rutemperedmeasure.rutenementbuilding.rutuchkasultramaficrock.ruultraviolettesting.ru
Online

xersius

Pułkownik

Pułkownik

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

Re: ArmA - spis komend

PostWt 04 mar, 2025 22:27

сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтtuchkasсайтсайт
Online

xersius

Pułkownik

Pułkownik

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

Re: ArmA - spis komend

Online

xersius

Pułkownik

Pułkownik

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

Re: ArmA - spis komend

PostCz 05 cze, 2025 01:32

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

Powrót do Armed Assault

Kto przegląda forum

Użytkownicy przeglądający ten dział: Brak zidentyfikowanych użytkowników i 1 gość

cron