From 19187b298a865188b9037456645e54a0c136e018 Mon Sep 17 00:00:00 2001 From: ToastinYou Date: Thu, 19 Nov 2020 17:41:52 -0500 Subject: [PATCH 1/6] update to latest citizenfx --- .gitignore | 1 + Client/Client.csproj | 5 +- Client/Main.cs | 19 +- Client/Properties/AssemblyInfo.cs | 4 +- Client/__resource.lua | 9 - Client/fxmanifest.lua | 14 + Client/packages.config | 2 +- Server/Main.cs | 2 +- Server/Properties/AssemblyInfo.cs | 4 +- Server/Server.csproj | 5 +- Server/packages.config | 2 +- build/CitizenFX.Core.Client.dll | Bin 960512 -> 0 bytes build/CitizenFX.Core.Client.xml | 67891 ---------------------------- build/CitizenFX.Core.Server.dll | Bin 46080 -> 0 bytes build/CitizenFX.Core.Server.xml | 7758 ---- build/Client.net.dll | Bin 7168 -> 7168 bytes build/Server.net.dll | Bin 5120 -> 4608 bytes build/__resource.lua | 9 - 18 files changed, 37 insertions(+), 75688 deletions(-) delete mode 100644 Client/__resource.lua create mode 100644 Client/fxmanifest.lua delete mode 100644 build/CitizenFX.Core.Client.dll delete mode 100644 build/CitizenFX.Core.Client.xml delete mode 100644 build/CitizenFX.Core.Server.dll delete mode 100644 build/CitizenFX.Core.Server.xml delete mode 100644 build/__resource.lua diff --git a/.gitignore b/.gitignore index b8f5d26..8480127 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ bld/ [Bb]in/ [Oo]bj/ [Ll]og/ +build/ # Visual Studio 2015/2017 cache/options directory .vs/ diff --git a/Client/Client.csproj b/Client/Client.csproj index 41d3cae..34a979b 100644 --- a/Client/Client.csproj +++ b/Client/Client.csproj @@ -32,7 +32,8 @@ - ..\packages\CitizenFX.Core.Client.1.0.1290\lib\net45\CitizenFX.Core.Client.dll + ..\packages\CitizenFX.Core.Client.1.0.3212\lib\net45\CitizenFX.Core.Client.dll + False @@ -49,7 +50,7 @@ - + PreserveNewest diff --git a/Client/Main.cs b/Client/Main.cs index 4d70f62..8472f41 100644 --- a/Client/Main.cs +++ b/Client/Main.cs @@ -1,21 +1,20 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using CitizenFX.Core; +using CitizenFX.Core; using CitizenFX.Core.Native; using CitizenFX.Core.UI; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; namespace Client { public class Main : BaseScript { - private bool _reticleAllowed = false; + private bool _reticleAllowed; private List _overrideDisable = new List() { WeaponHash.Unarmed, WeaponHash.StunGun, WeaponHash.SniperRifle, WeaponHash.HeavySniper, - WeaponHash.HeavySniperMk2, WeaponHash.MarksmanRifle, + WeaponHash.HeavySniperMk2, WeaponHash.MarksmanRifle, WeaponHash.MarksmanRifleMk2, }; public Main() @@ -27,7 +26,7 @@ public Main() [EventHandler("NoReticle:Client:SetPlayerReticleAceAllowed")] private void SetPlayerReticleAceAllowed() { - Screen.ShowNotification("Allowing reticle.", true); + Log("Allowing reticle."); _reticleAllowed = true; } @@ -41,7 +40,7 @@ private async Task ProcessTask() { WeaponHash wHash = w.Hash; - if (!_overrideDisable.Contains(wHash) && API.GetHashKey(wHash.ToString()) != -1783943904) // add MarksmanRifle MKII + if (!_overrideDisable.Contains(wHash)) { // if ace perm "Reticle" is not allowed (cannot have reticle) then.. if (!_reticleAllowed) @@ -59,7 +58,7 @@ private async Task ProcessTask() /// Message to display. private void Log(string msg) { - Debug.Write($"[NoReticle] - {msg}"); + Debug.Write($"[NoReticle]: {msg}"); } } } diff --git a/Client/Properties/AssemblyInfo.cs b/Client/Properties/AssemblyInfo.cs index 541c3f8..b067a3f 100644 --- a/Client/Properties/AssemblyInfo.cs +++ b/Client/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.1.0")] -[assembly: AssemblyFileVersion("2.1.0")] +[assembly: AssemblyVersion("2.2.0")] +[assembly: AssemblyFileVersion("2.2.0")] diff --git a/Client/__resource.lua b/Client/__resource.lua deleted file mode 100644 index ad02fea..0000000 --- a/Client/__resource.lua +++ /dev/null @@ -1,9 +0,0 @@ -resource_manifest_version '44febabe-d386-4d18-afbe-5e627f4af937' - -client_scripts { - 'Client.net.dll', -} - -server_script { - 'Server.net.dll', -} \ No newline at end of file diff --git a/Client/fxmanifest.lua b/Client/fxmanifest.lua new file mode 100644 index 0000000..f2a183e --- /dev/null +++ b/Client/fxmanifest.lua @@ -0,0 +1,14 @@ +fx_version 'cerulean' +games { 'gta5' } + +author 'ToastinYou' +description 'No Reticle / Reticle Disabler' +version '2.2.0' + +client_scripts { + 'Client.net.dll', +} + +server_scripts { + 'Server.net.dll', +} \ No newline at end of file diff --git a/Client/packages.config b/Client/packages.config index 136b9f3..e6047f6 100644 --- a/Client/packages.config +++ b/Client/packages.config @@ -1,4 +1,4 @@  - + \ No newline at end of file diff --git a/Server/Main.cs b/Server/Main.cs index 8f3a2c4..73e4b58 100644 --- a/Server/Main.cs +++ b/Server/Main.cs @@ -11,7 +11,7 @@ public Main() { } private void GetPlayerReticleAceAllowed([FromSource] Player p) { // if ace permission 'Reticle' is allowed for the player then show the reticle.. - if (API.IsPlayerAceAllowed(p.Handle, "Reticle") == true) + if (API.IsPlayerAceAllowed(p.Handle, "Reticle")) { p.TriggerEvent("NoReticle:Client:SetPlayerReticleAceAllowed"); } diff --git a/Server/Properties/AssemblyInfo.cs b/Server/Properties/AssemblyInfo.cs index 286fa33..35d8ca9 100644 --- a/Server/Properties/AssemblyInfo.cs +++ b/Server/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.1.0")] -[assembly: AssemblyFileVersion("2.1.0")] +[assembly: AssemblyVersion("2.2.0")] +[assembly: AssemblyFileVersion("2.2.0")] diff --git a/Server/Server.csproj b/Server/Server.csproj index 00243c4..260b8b1 100644 --- a/Server/Server.csproj +++ b/Server/Server.csproj @@ -14,7 +14,7 @@ true - embedded + portable false ..\build\ DEBUG;TRACE @@ -32,7 +32,8 @@ - ..\packages\CitizenFX.Core.Server.1.0.1290\lib\net45\CitizenFX.Core.Server.dll + ..\packages\CitizenFX.Core.Server.1.0.3212\lib\net45\CitizenFX.Core.Server.dll + False diff --git a/Server/packages.config b/Server/packages.config index d1ee943..d856be8 100644 --- a/Server/packages.config +++ b/Server/packages.config @@ -1,4 +1,4 @@  - + \ No newline at end of file diff --git a/build/CitizenFX.Core.Client.dll b/build/CitizenFX.Core.Client.dll deleted file mode 100644 index c6e4305ada487b72fe6d02539b27b49f097ccb85..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 960512 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Üw4bD~Dt6rEeJ+z6WMf}nClC2a0aETU-KP)<0I5n( zt4b3|4U$c3eghd&$@h^?79Nv%jm(qnW)cq7|RU z^XxVnzC*lem51-+?pcI)5W75&=qyE*S=N?sM0iawp1U1Ung-Gro)JV?(*Skn`!Dv~ z&=5LlS42GXNjqB^4c}X_rV*?Hqq)81X(V|$@j_fqxL2e7I9aKknKThA@7)CVPBRd` zn_$u$e)#+CWAxIC_g{#gJpVF8o^7@AnH0bx6J4~@d4+f`>NBEN+H;5} zln9?N7)|pSe$HFUy)~=?OR2L#L!Q$!L_RHSE#-+>k@i!5erm{ot?KT^kYbTYyGTT0 zeq$9im%2AMq-GqIR~zJBE_Xyyj|g9e#;+3HJA9&g{UKI<1v0w5gkI_K{tNNrr^!D^ z)4@xIIw5}J^1Ga<2kD$2nl?m=k-jU)DZ0;%L7HwL|LQwmdSOa?&bh?p#3hX(Nr|K& zLN5twO$H+TpS~d7>6tjke*J{Rl)D>4QTU$S{xv+Y}iNl8APPyrdankrG74fqYx6tfqo&)Sjn-9MhhsgIuZUaw?Ob z86Y`o(ESdPnIL7FxSbkAf-O>y$ZU&nz2EFHVI!bc_8u#x?a{`+CZItFDG%ty;pOet! zEvKFnor0zq5iav7Xuj)uorcE$xvJM`XwvAD|1%(bUpbrdIs+@duUtUntfg5>TH_it3yE-RT!UtOS*5uS%?u)} zxeiV9x=M2cn)XCka|4=De<;nr&`cu2nt!25O?xGuRo;XqClN05O=yC&<`y*bwB{Bx z(`qU|q0r1G!hS-vCfIxbzJYSTZIL}h?t*O1L^~{zFpJzE^3Wnri9EH)S0XP#=F&Y= zoI`X+Z;=#4K3OCOk?$5MM8xsc_f1Z`mOf4eB5sQ`B;o;?p*1lr!kS++333`xOxuG< zLXdd$j@$?$NkH;lRU|1$qBQjO2x*dooOjf_83CFEJ9A>V9Bx&c%qOeVmWJE;H;b$w zO?pk#S?*>cnKTLVp2h7Vl35dT7MI0WMNL6Yz0Gdt5NWc49J;7TcI1^bil1|wG=Ubm zNF*0L%UNz-`01TgokQk@6_Yz;Ws}E5@lOy-PyH2-NO6m#CQ=II ztJajW2x}^WG>+x=mZz#kxIEQB0?PS$d#8p)xOZwgz zB*c66#Ur5!NC`R_VA9MYoO=rpeq$;x)vFZPPkW0LC##MieDcP* zcLr&nLA6*{kTe$*>4ttE5Uk>;?xJy+aNTXfb?*U9N$RhPlzT6W)F#poo?B|qgP~!< zo^8UOhd|SuJU1gh!z|K~$Y_vzS~JNateF9FNSAP~MYx0uK}KlJQj4%=C5W4DBe953A(B#Ch5PW^ED4ANAg|q-+)i>LsV$O+NCuF_w7=IOlHDThh~xn| zPWO!5&V?<)?Oenn+=j(0!fja6C3{>)+PkArP*4^cCcJLggnPN1whDGi(H$a_3b3l6 z$3`WKu%@ymCg!hdkr7m{Y8K&`zn%~e$MYP;)t54RIG*R|t3EUw&$FfhG#t;frU5h@ z&$Ff>G#t;frXe&EV>bek7`qXyB*t!RX*kAiYH2veZVnB{#+-XAXgD_J+*?7zu`z2} zL&LE#Yg$9Yu`z4fK*O;yYuZ2~aql0{NZk8})~I-O3blM&i_9a^9)#n=)kHd3WG|6! zARHgErnf~{(_a%6A6_9c1cc+mdqjqTaD2#Q1PI56FNll+k@#@5CMrJUTG-?hk+GJB z>owjYz9ID9mnJGcj7?;!CMrHmNMstU_$}@fM5b$EBF350&WIR;K_p_F1wR}yW+Fdx zERvhZJb0FfaUuLj#JCVvOiGZIO)3&u1Pw=wzY|$vk(NZ3fpEmwlgQr|89`(<2uF;p zS#J^6Yy#nkk;}8qB3z#BARIArf9?(3jW?=fjZL_HLSZEl;~iKrVJn-k)m>;fw%J4E zzD14_c>uz(%_Sm_EOLv;V-SvQ9us+Lkyk{XfpBcYnim#f%}WrDZ9WruZ4uw26zza; zY{Py&S%m$32I1I->;BauT=#Dv9LdBa&p#}ZkjPJqa9%#{|HeO@m#;;*%x;TtnWKVm zB*QZ|xA#sc9;hDS?Wi}2iuuZf9d5@}*086hT;u}K{AlUQ4sNG6FpV&sq%xpU;e zZD;HpxijH%pU)NLq{VVRSl+ z@F{wFoqG_zj>!O$Bd2=Pz>tC|Ba)|A)l&we+1Mf?2^y>38Zw%|T@lH^VG*sq#gCX* zw@6kgwng;QxmHB0=8YqI?j5NXZ&F6o$eT{4%nP&Io7i4^h@ zH4D@Z8+AWD7uKz6cF#=G&dwiO)Hz#bixek6Ld;u3Suqaf-LS0MO1&FanXC-qx1oL~ zk{uc*O^M{NNLwO-7U@PLr$zb_$z_pYL~>hX9FaU0nNB3HMdlF62f{lDmpMP`)jowf zBPyshK@O9}q!D7~av?VjVduZ!Z3$7|ZLK0J`Z&R>3GtEdwu*xAcUxOYQ^KvD0-I-c zB_(%H-ID5An<4UDNl7U)zAG`Bb0w5jDfp>Qvx%S3mC{xtJq?NQtTdYEw96cz@|1?> zZ$yrIi5gKs9{DD#3_QzQxQ1MRq()R3_z5Gz(X!E;p?6pK%d)c2TqDBICd$IIJjp5t zjXcRJ2Thw)%1?P{Dv^rbzMy9ve)5i4WoTy8%#A|r zQ(5~l{a#u3ms%lt9TQCu`l|{`DC-7@)91CXbBl5}q(B{dB2T22SUF65kI|hJa+m0| zIZ7yVu({T#nkFPGqml940-j|&8*=oeufu*7;$uT0n%YhCvf>Qh6Q@O+g~8F(ln~MMgj~ z;-MlV;b&cPmDea}_7Gt|qo7Hd!{z)=?GpseBKo$1HHI8Hpx(?M4NdbxE~gP$je(!g zvnsE#(0m}mehk^3S&?zjOwxIcho7lEeVrEMc>+j_+v;1G39uSQg!|o)Sf$-gTe6x6 zt0L{(P8TARK(c8+li;Vk_G2^$wy9c7hE<%AsxJ&lP47qX8zCtDHI-G*$t$w%EB3jv0}R8W%CIplcB|n{>ozJm1(7 zQB!DFM3OU7-LvXg)c6^iK#h&5==YyAp1I$R=K2@qc^dk?=@?aJLsE@VtvU^U!suNH z_G2`~+bBQN;peqp{S0ZfE~2L7j)>%lo=wK;%f5)3b&*JK{pFOg^4lKK>Km;;++Rks zIb%dk=}4ZJ>e*zhn$y~A`^l--)#+%TD|!_*RxwMe-E#&siHPv7XGoHJZtwd@GocA; zuG%>mty-da zR8(om9$MMB-)AFt{<3urSF04|n zay!c{&G4ag4?<)ftTL9Mufn}V>h%Z3@EpY%&EYGmm*>OkTm{vGhJ@1FKAXtTeB@sH zqbf6qGbo{IjRm4{I?xE`sB$4l(F8ULapcRXg_66If@aDN%F7UW-*1uDsBfV5lSW98 zvwfw@IZ9+P{2cD%>zpF81Y}A#w{yWFbHgH%D)sc`A%v%hSbONHiLB0BWeps(L1UWin6WF^FW&9pnxUAAb#{pI~tL*)HcL*)HcL*)HcL*)HcDPg$3 zyuWHR^8V@`DYL)4zq&`)E8Jh+Uxmg;-e27-RzC9n>V8ek9oa#5V{c!W6Fi&nXgMft z=*iiU-n66^JEZ;4S==A0PY;8v)$iOMhSlm{)!jOX_g$=7HAC;c`Y2Ij=Ql)Lqa-oe7U8jUi|0WNA8) zi=y#<1-X#OB_W={Z@B9gMcY8^A0;y&t~E<@r(BHbgAI+60q8!4}Tku>$7 ziFk@7xtsZAh|DiTWPTYU^UDyKU!gL7Fu#mO=GSfAV&Rxyw_zpo3mVL?J7R_Tbx#vB zzrw8f#j`04y_58cii974$UEB)bna#rh(?X@HPr7Q`1PuAwUc@yz6jbw1DadM186ap}a2BiQFM<~^B+@H{o7AMI95UO@Bn zgCZ~CXJLBf=M^-kMkqh8pm{!6tv|1!DX~jw4A~V$kvFiC6VA7=T1HV5m&cG=6zMT} z2P?Uwe-9$Rq+y8MWg8;DcVUS9D#d%`F271)G~4uj$_M1tzqD!%Ll&ouNRCZYv)gDg zpHyS)1M(_IgzIHAV>T(PkH|~zI1I_5Pt`ucPZ52pW;AjS@(CKb2l)igdkU-5=Fgg# zXA_^bm3cNHnjlZ+iRyQRzQA*NBK$i-U*P!*{hHqq8kt|Ai5Jb!Iq4;GA|0!jI{*0w zt9I4ZnXn;et41WpwC8W|e3uA&Hdd4WQNJDW9i9j1xc57(W)R_%ZKKKjR;|xJpeaOz zXVVYyA(!```P%Cj5ZMcU z@r!u&{)^NLzmgGG6SZH&qFM-1@nHfY@x;m-futak&?5YXe`1U9$V_69bY%6bMfi=f z6hb_KdDR?D39^-*F7aDchRB;>hOED#);dGv-LRC>%N}_*EI@l!?^$J|@}#y%K_b6_ zWS#5lR3wt#A`OXT0pWMCx)I4~kr71lg7CXotSMv>))bQxI_K!k8J@YNp@NvXV*iOdo_!2?$u!>v2jh* zLf(d|2`eUC3!AW?T3Qq2d^@lDy$;A`I(g$~e?o#Ceq-t?S=l6vNIm5BC++y0S0jsX zUX4Nctt$RoA5AUdroT?o0)*eHVoe*1u%;adzcIz*r;|kzlctMBctmxxNNUpb1mQQP zxXgVl!e#D@R;?eb#zuc=n6Q;i*lK`iyzg0Y2?v4jJ5<>z_aPu0*D)Ce!tY11)d-7l zy+&E20Fluk{C*T$jRoQNqqv0Qg*g0%QYo^UV38_BCV_OPmTy30szvy3;7kX3t2MzE zVa+U%+lAa z>by6F2=Pq*q~gq@Ak*uqlYc`-5#irQGGt5%?RH+0pA*_jt&m@coEAU0w>kqN zYu#B*f}Hf^$A|vzgb)?~L?d!eYt+;B_(U#PBq@=L7D-Ly5(v*q_H!940G}T4?r;^P zw64WfZDmHn4Zr`M?Qk33(3&9c?+Np|`mgx$RHn6;cj|wk$xlH9pPAnjjdOdBIvX@3 z^Y@(HsD|Mu(yP0W4nLuk5atB1Ngs&`6|=SQfi{BHAO5Q%o4 zXrdyS@?<5%-1$D$8j5M(_&U`{BSiJ!??j%7A8!Q9KeZsawUP7m0#A4<66l-pTL8bf-JW{XAYZKYq^un7N})*&yET6F&`o`tkR zUP3O=b5E6f#Cs4wl<+$Jmc?nya~yiUe33|0Xqem};tx`k&JX$2F*=ApJzws)pYCNq z+R~eiJS$^@q^U)J`G81lkcadubL{6Akkud6iWC>5GX4HM*TRq{^i9n@Dvu$LE~%Qv zhgEQSWo1ZFdQ!}O4Do3j(JJdG^=^;R{Gcb-k0`GM@H~sk{F+E&kjjBB=LeDGAV=wm zhKK&jOe#%+oh#Hn35cYFCMP{P;<~4|2>s zL!LHNn$pljqp`t%m&cHo)MBlOl!Jyz2O{My(u+t%kS{b6c=T4b2)9O6kO@>TJ~^ol z5{I6w4I)1^KxX(+bV1~IkfD0i)wRe}($u%eTp~>{-`Q#@k(SUrZmmXmdystk37sL` z;;K`9L&_IdE!F{67pWH9@`hxmdAfl}XK0x0CejTg4?W%H(~O=V&&R9s^aANdp7~DP zkQNld^1jmtnrc<){Y>)Q7vvE=-R6Gp4|0n9a9`Mj`(hw8$8>89wg~5C$h=XighQZ7 z-cz-YA%D;t(L9@mLQ{lRNcJ-fBo+O3F_&<-MYyJhl-JK9M?zDXRse3Xph)}9Xp3-O zqovmGyLGwP>QHsPp1h}nh5N?zWm`z-a&*eGoR zs967bqkgKT;Rwwpx5#RmrQx%b8A3dADl!u!3;j9@m)Q_GCz&a=z&S~OL_bIPg z7I{fzjzvBbnP(Ay`g>3dLHH~s5s@Vp$v|WUNDhCu!+#%ljYVn@*$BeFOVggnc8l~Q zvI}Ie+vQ9ovdIpCTex5zTmoV3VBB4;eJo5(p3KBeKj zE?R{1x~z$ca*q?arinVG;lIj!T@!Oka|1-~O8(U(m_Oa~wxLb94e!9SoVSF7$a#wp zb>4D~tZedt$YbPnl74@c$HsGu@JM(GGB1VOt9fG)*1QAZvlRC8(IVXPpDn^xUoFCY z@dJdt4blxu_PU zG%=?%Wi>JP=0eOVjZOHJrku7ir!?h}*G~Q>i}I>ykt#$gTckdbsupQSqy}1^{q!SJ z+ahC$)P+@n0rWS6h%~UsG9ry&#hNWdnnDxwSXs5O2wSy+6>He)53N!6j7NyHw+Qcg z9W8R2G@UHMyIxlz*!8-B$gXFI?0VgFd4jO(b=OvE*Skb{^|T28vSM$G+#yY0i@YK- z0EBnFA4CRQB=$KvUj^Y^FD;R=7RgU!5(w{lHHgfxNHZdTg8T@fuRAHPxfbCP&IjS0 zu_swAvdCZ}OF(#MWX&>*ux5oOLCz)8Od#?P$Y?q}V6qBUynAwst+vQ?(yX<}A|e|s z@(+(OvP%=Sd+sH&TNAT;?g5eAbFU_9_vF5?3HQYzc$VGs zIEd_?Le%aVLRL1pNaPgq;@y+`>zqZnzb=6A?#Y_V7Gcd*5Z*mmbHgIs@;5EQR-qQ* zzPJk#^vvai5ec)%Ya$Opct7ReqI_ZzpYwEvCbP+r9rigiOxVgMZ1qAk-W`@}@ya4x zi#HbG(ee(2cUZRiU=gV3NOv?Qm2=B0oi2Sff0Fj>{yu-4URvwG6RWysRRSXc`VYv-sf$$E?B(_JzHfo2>NF|H|!aFRJ zxMJlTpdB_3k@yxVMEW#r^D+uqo>?hD7T+>_@Vb6Ii z!mDV0i*RccvPfepa}iCGqT4V%~ z@)ns)q@qO@5~*U5bwsLLWFL`Q=t0i?ERo+Wa+^qfSn)3Wl1L+qa9&Md#hR}~nnT08 zFk7{<2wSy*6>He49W=-F_~~d79zQ)bG4BivvIyV5548yI@53#^ZwQRA2=DKsg@h-?Poy_+@LEW(-{AiOVgO?O-5G?Bd) zxk2QBMZ$<20^xm`^9r#D=XFdIwJ*OWa#9nuFMlF(N)xj$p9YbA`HUuNU*J)-gDV1u0_}?zD3w7Aqele+=hukc+X{$#J`rRyZ5fP8j)W?c+X{$OspKSsY=9$2CpGU&mJItlH{dWv>Ym zpPrWTud*9*yOYZ~K&@)Xo0h7@3`sWC$NMf;P2`@L2-m`BPP|t&tp&|BBCM%}+~rr| zYlCdvN6#iGcSA}KSMPNjk}<97i`wv9iU`-;X!>8$?~g$IvQNAV=x1 zfv~17$}{kt@>36*aYR^C51O3xYtQ@!MSWFIR70 z8`33NM9ra?5y?jC9saAJ4UqdjB6+<;t;Ru~qj!~6LujrL;TCI%@|<0-a&H7p{zGc~ z81iI?8kvn@^(?)zY69{^e@kviqTfVQ%ez7bdD0W%+>K^RSEXqRKfd~l-KHo{LLzKs zG^yx)V{X-E(Bvh;nr86x?JuQi4w5ylYK`WwDno>=jAkDFZ4~z00#;+=E2|c;T1bSg zj3!}HrD+LG4kD~+2|ru3pH|SE(|%e(^NfDKj&pAfa$WyEKx480E-= zpU%*vAacvha%ex<+j$ZvV|fYo08 z1)m|&_bAVXgkDm$=mF1fiSX)YG{?rM{^|)$7!fXWPvmubq|)?)<~0%47{Y%U>K)aq zH>{r0$^Ta(ePH#Oh|eV^(#{R`t2c-HLeq)}m#{B1mGi1v^n<1e5!UpBW_D_&=?~2+ zBCP2T&6SMmmrn*jbC%wnW6c0)8q)0cPzeWue5J4Wc_bL}gGNg%uSTz#PLB-g8OK2J z?98TjD)^bWAwTIiIuy}$cN)_>1M&Zxm(z(zS|WqtryE69*@z4Qc^Rra4+nWj_3}P{ z2l2Z{za&Oh!=)DZc3^}i>W#Z1q!|ILpRtvnks#ZSswev+;b*{EiUH^gP$9uiRcf)) z;o>Dp_O@#Wr<_1VPh>G>wRi2B}S&))1GpbR;W7($Idv zB^(cpC!WjcPMQg*R}9+mxy2?zbC=#>;F&uSniTiddl!bh9v6`$q;^(*WF$oSrlJ&M zRk5^+U?;(I2I^C`nhbKLx3BlxZ9@*wuSxJ5I8&i%e_G`=-M@}^r#A1-O_y4Dl2lV` z)O4}(WFW#L+>lwns+l_jR{RZSKWd+uApUygH>7}$b_}5(BlNbIA%D;;;9q8#DY-lA zb(CuezjwjwMldv`$h76$lQyydUkk?ou z+!{tBZ8%@@qQ5ZZa#oX{`C{e$HkrrIf=Dg4K&(6;m(x2-WM#-LdSi-rkOkt$^M(lD zTNzD9y{9aMpY@Z~H+>6Xb(9Ey(`Pg#wPq1C4Yg(w`~*&LJKL!|i=in^WUrUVUNGi_ zYM&*rN*+BT@r^`yY#bp!#)`=qB7ecp4LXzIJE^6}{V9=RRQILOWGF;`?~kmOK~t2- zEiaK0&T2=`T!<`(Rf39YUtSKY03zI~M$=Hgp}hiDb7`&P@)$B*k0?X>Oj0es0-nbc z;g&a=?L@d$S3+}|2)F7=&J)UgEj0Ovyz&z1i%Rs}=tm;! zplLwl`+tcON+sl(vR*V!PY~IK`%o0;zRVgSo2Ykq#u>7fdM7$*Hb66&{%TKLA{#;4 zJoa^x5ZQ#h{-rN6IQPxae2b^73^|eC<^3(nEwGACv2g(T*&1nfZx=tFE&7+lwu_bL z2oYXMj7HX|9kAjRDFb;nL{^&};sE(}@Sy-FTiu@7OC+Cx9;e z_t!{JLV1_Zc;>mB&0FS(Ry$$E<;g=DL%RQ~)(u0XggYbE)DYR<4T)D?^`Id$YDFZ= z^}f6_Qj3|~*GDQ3*Q?Nf%S=%o#Zg3dNxhs!+34?tdWl3A(MZE>xEr-d4id3_c8ed+ z^J;44hn4385niK=W=cJ!*(07k3yH915ByB*=yGaOdG><5rZ-4=M>Ay9DYsMC(p;RW zzMeK3IaxAfbyK&~*s|hpg<4vq-%&cN^b$F#h*n+go_kT|=Tv5%1^ZCKB_-%olE{9L zaZ%Ojfgy5-Xh=Tt%zLFFCv^K5GJ?MNowI=8uMGhLd@Cw#Ypr0qF8zAm!#d3 zJR8!DMx9OSg}R-?mWJ1a6J8?o{YfL$Vwc3T^N8LmzepNGexbZ>&^WvXO+Wg}m`tvt zUi>}UZL+#y5gtGPf{f5#h}?vqcl7KyoUClZo^M&2=cEaZ)EalRCd6OWFYboer{<$kAygd{rnu(2nlwIPzkdW zc?=ET-4r151Y|B*m9j_&cSJIh2zxeG@pWEL;itaVJOdf2JwMm|73^t3C$9YWyPs=K zuxH?9w^M;Uzkp^ek*Z#z*E-MA%IdEYzl3Hx5&k>8FX3lEUzbyxtX@Ggo=5{P5kGNi zxSZxhUPF_H$RA!JnzSF(UkZK$OFlLnIN%x=p^0?^SxD3KHCePP&Msv`9uGX+V-SrgvqDWUxqG zB3VHeJ*KY-hy+?>2$4J>v*}j~rxM8zQacO%Iwg?;AY18lZYhyM(bP&C?2M;xX8A8N z7X_J`gnrANG=>anMo-^}l!WFP{np}XB4t40)AQ~}L~4L6qdSFi+! zJ9g5k<28DwV8~pz^9zwSAg6b^ox~R5FC0@^WbsnBlg=X5>5Iawkw^g|ZQ(h?O1D#n zNPCM^vPhUqji?ULY8OQh*!5&rw;ok0%Wrmyqp-LNhe;kV$rf<&Qnwg%*c+OtFP0UNH370CFwg>B7H3~lt@32L=>})Cek0I1l`%Ol}*@c05m`8w~tse&?2lE z1X49QMQB6@TVy_w;UM7!T@I7c7FkDR0!BjGUtP{YBGW)7##DcOeg?>{aEb~@V@P{i zNp2FE6YWj_&HDd*g*4A1VWhFi3nB|F%@-nzbqRw!PdB)osMqNXMCTsj)S$l&$1$5t z;#!(YTC*HhOjxr#8kdh^(wN=!laUo5gY}aUL*(xutb`_fygEHFMwh-Z% z-w^(Nwj`AMKhW^s)K2+d;wSZ5B^oc`G8-cGS`CfV3nV80MFW01utqd7`7avqiK`*4 z=?*9zd0q=mXCj=}+Gr8)+Schd45Ig1)OqhZtx@mkabMVkd)X%3%Nr~!?&Zz8mqYxe zFSbj6`Ac7HherBh2Q<*7cfK$7(;XtnZ^h`BOUaKR<GylkNWX*Nmk{o2jTs3x;gMj7jD#>)$w&yZ+HfpcJ+R0$B9AOGpU5+dtRnK-BD;xv zw8&W^KXpy%oeCFy+eO3^UCu7@5P9q+DrO7vgcqfKkj9ulG;fF$qxtS1U1>}&N7EY9 z%h8~bUXBip^m24)q?cnrBfT6$Yl1wxWBEC+sDv?5o+Cs)c!`v`S95j#6APMQM0hoh zg}h|6#715+T4EzF`I|3s;79)EOB`r;R`N>w3&=W(qxfv+7g+5i!nqqwQEe3$R#!lz zFT#lMiXB(`F=H&AMR<(Gi~cBpy2LTR$Pr(Arni*I&v()ovRRWv@FOGhSBtRcU!%uK z#h%qV&)-}p)tVsBf+(~X+@OdWjcn@dD@7zfDWMTR0U#6UuLJl{uBku* z@A-O3YLLIQCJjhAt@#b)&s@q+T0`iKAa2!kAnjtPoiRN~yj4n*0pz*XWCWR|HJLze z(->pVnL(0GC}*v3Q|t{$p#WPrYcW%kh5Bo10-V$l~*800cvN?Jts)%LyF`A z*`jmL4boM6&I3|J=bjhji`L`=sj73&53={3nqLJ#g2@k$`GO!5%P3L^B#ka%VUR_- zghfCa>fDQhq}L@Z1`?(<#X$<`5|#i-s>fl;NaL^+G^69H_by6B0a!xidGmZQI^B8*Q|)ZQC|C-q^NnZftF|v2B0v zx##rT-{k)L{7zL@S65e6SJ(7td1_Hoeb-~vrfhtoQit+7m!_&qar&rwloFjarar}o z_g`{1HJ}Vwq~&QyNs3=&$n|OztPUG9CTj$*Cpzk<3FT=*En!p2Hv9LVW)$b#n^V@{ zTTD`(7L>c&wS+AxQ>_kLQP$7YXOPyE42iXcx1p@=pslwprInSi9VOutjcHFw`xw8E zNB`V`5+)^f>7s-kDeH@?bfQe!uY0IEQ<6vYdg7sex=_+KrCG1Yg zU?uE9$zvt#Nr_`6>_ypcCG1U^Zzb$QS!wm$mr~a1xgTZ63vCJgDGT1H3<%aX1~R6f zwdX;Uu5tD145l>vtbM`|%9F-=-G@^0uhnA>qwK=Uo3zZ~l&N;C5tMOutdW$P;q|L8 zqbN_l>9rV5S+qotK8CWntjbtQj7)kKe^I{SjiFrAag=-6wLctB3HyiUGl4SE+WbUH zI{a2h@|i^0m_bW8nUdOM3gv4pePj4H#bbBwR7#7-+QO$%u58t>22H1&EUzV;LAe^J zGLv%3>Tnk2CDx6l%(E%o?Y!ntLf|ftyJ;@vW@Wvm^C)o->6y-_>~5{87EpR)^pxwq zkdg}{qsSu40lR{WDao&E%o57O6`IddN(dXxmr-_G&dVwBFy_j!R#4t8(|lG^mY37o zSVgJ&T>FI8lzY!KW(}nio{pss*9N*@|zu~=u$X3c7?7bA(Msdc$?Ua-ov^I87_7_vxN%{Us^VvmdX02{F zC9>^R+e29ppf$Fa^74`9vyYO+=34tH-7yMFnGaBIUeio%AEOj3qi1oP(%t4`Cn(X+Y6(wLe5>?&ouYiR9_ch? zb_zX!5o(t{=yK^5frfeC#Iu9vt5~)0*OqroLWd#XX_?h8^0{i$0|| z&lk^v9sN0D{tX*8d97)E45R}+aG*tk_>5aXVMNhP?`Y28>8b}Fg`GllYv|c?FWs2n! znsUJIrZAKp>-9{-QZ`@J5{9FE!8j;27M_yVjvj&1#-5TQQd(PEjYJt>5}ESeQbnPB zvvwGj($mf&8fAu^MRbbO5@Jx2*?19?(yqO>=U9}^%T!`h_Sn4~hms(v)<#@P(-hi6 z#-n_-(KCMdU)P8dFlH_4Sz1Cuiu0_Oh~kW2i78j?=`RUoZ4$i}NhupnX$g~2_B~fg zPU&SaDJZ8ABjrg+>1d;8DoVIATIST0qn-5VX((%Q>ao&N!k$w}M|qk+Q>CXYFv&oP zjarq})Qpsjs8x|nl($K><}*_&7EsATnOjrKoRtz6>tk}J*(gV{Xuq1BvdhYogObzc znK>!W93U6PnFHjew6YOD55;M#c_{@k7RY=oALUS4El+-mGY9yMvKVhGe*93 zLCVY+TF-?jov{B;03`*`CNMQPMopD_EIw278<3npO!`!m7cf8dG(#C+O;w686+zgYwE|!Zj%k zET$Hvk>yjH;`E1gD0wZWF2$LX)T6w$C$jp%%G`i4FRJMEYDn3Ix9w7gjVOB~>2+^R zsr|3^2~8-e&#E+~^jxmjq8TN^B8_QIiTa<8j4db=Oj=SF71i>zq71beV{1y|*qU=2 zN!Nb>v6R*}gZ+yV-CEQ* zN*OE9cuMaO+A=3lu6@v2ok$sJwK|D1$!c{nCAZbs6iR5D1N==%VltI-`A=;d(~33W!^|BWvMn% zYFU{#Q*v0Dw@|9t%zP_ltDVI*N_9(Ec?KF26=uxc%Gobt|6ouK58sb_JLGPInQ`4lD4@;ObpWBHt+#9WPE zQec!hOZlfVz5|D&pQC(RsO33NIbyBu0wq#JuO~C|xk$NgHGhfn0&Bv#5ObN*!rIRj zO6?nZtgDpy5%2|Or2045{eF!x&i#I!;@s~yD9-(Ulj7X(wEyUDEp&p9X_QveZn(}(d0l zpD0eh@tNZE8(%0+zwwpg^c&wOPQUS;;`AFoC{Dlelj8Ino(RtRkJE32pg8?T0LAGy zycDP3@KKz8Baq_s8zCu9zY&V!^c$fmPQMX`;`AF~DNer;j^gwi;VDkP5rN|L8xbi^ zzY&Sz^c#^WPQMX_;`AF)DNer;jpFnh(J4;95rg9N8!;pNx+W8gF1;9aDWTA7$r@||${vsQ*a?G`ClO;Jr_h`eQ=DJBC!y4~ z)u*JC8@BqCjIt!Ljs?jn&huaj%6yxvr=+w=t7n>ua?thwr>3m673nm=&LS;is;|`N zf^?L9c&?NhOHa9ld_*!(!r01NM#@wCE?cfeCd$>~nkq9TPBuN$ER=a6^;lUcxiDXq zV`U3g=Io4FV^6g?DAV6-&N(SLziHdZMM;W%)KbFSlnG@uCJ*IGF)dGC$|;)(=cA;w zr>*>y*EW;+jk0)w=2L)jA34j>3kEx{LX6pE=T(?e0>AN*R7EJ?4{4c;Qtp}*qnx;_ z*R(k0p~>%*)fF|L5|mH223wNy!%~%^46`{&>0oD3hA}U)>r?h06lW!;EXBD~%25{D z`=;^~XPv(SrHzfA6(i_QZ~a%<;+Svz>BM+ipU_|VRdxk)Hu)DAe<_PpRsCWrL8|-7 zW&EbErk}_^I@P9J#H?HPkk|DS=}BCfR!7TIFM{s#bbs?$FIXMcbMgs2bdaw5)u#-% z^|1!QQZ-~uEPMw>T1z8}vtz2UE4F^vBv?L88I#QB>dh$5n~~;}ZWhym5@2hvEh+2m zU4JXeB}>(svcH11!#0#fc2~Bg#IRKDDCKO=KzmB4720ofpv--TdSp-UjyZlZ1H7Fvw5JKJ|J= z_{j}CpZ?`1qbuR-F@AD90sgbqPYPVaS1$b|KU(+_KN)*Cz_ZFv9)9wAHu%Y9j2GMd zq%w99?D3P1NAc@CKY7+Qz;oPBcAoTk&icvN|^wk(m8ydX#Nrgzu)nb zr1|mt9X~mE6JN^m6a0C#C!L?vL64NhPfFs=NG?B#h!XzhCyh{^qJB~rj<|p}ZtTuiU3CHT>C#!L+9)8joZyx*k$!}O2 z9O5S)GKa=lc3Q`~2i2?(QRgk^!rQC;g;4-qoJ>lVNxhan(;=VzzwCPh#N-@xGrN z#rxBzesXyp{*lm6+C2#HeDssyXi?w&&TA~CqOD{9MF}(+M@eKkkEh&1Ta}uhK#79;U1TC9gr%B9$vjf$T9YY9 z9_m?4p+sq-@;9YY#}Gj|PYpKvn#Pz_S+pfgr%b?%TCT+m$}4;CInx!q#Vdn0Hj5J4 zW>&K)$MGExslz$Jjy{($Z)58o*LjrLI8!r<5rGV`aSW9vC46LI# z$68OhhZ%^}*oI)o+Q^t4xC)%XqX75{q<+GJB&R(N!6sHH+PWfJ1+w%@e zJ+HRRos>7F^l5z;#kWb=#$_q(w7LhB^_W9SJ`X8Q zFY$=ttU^4dG;63we?p0Z@k{FGX|S_+#+X~1HPv&?>=;0nH{6v7-y?xqiv<#^ta`uRvnxI@eQiQ@D& zpDD%d4b&IPXIpFfO37p~-zW|3-uX^Rhp|%1^Mf)7&#+RSpOhw9w9KA}&Kmyg&U#Hl zP_}H;`U#*^!Hyuw*-Keuwd$j^wf((;l-%eyBvnXCGFt@=McHiQa%jq8Jh4iuFqD<( z*+jxpe0Xw^^9o0KV`F7_$_ZP8jX+tjO>>S&iDyTTM7jA^cics$Ot3nP67ko$XjH~H zBYrfBGsZ;^mMR8gobf#-#TnmYQJnETHpLm=;{?k&E@Pad$D=s+Y5ZWR5-`RYyAx8J z9v~6L$vH8_8M~7N%QYn~#fRTPOL;N|JFiTPaauxVic@1*f~CsJ z7^fvT#Rv!o}1#dggn7gT0w8mR$C@7Ib1fi|_;_zb-FCan_#;Q(Bhs1;zMFe5^e7B9Yt(;4{B^atT(J5n=cEc9_rCT>4xi@OTN*~MLz;_TwCMtN+yhxUgxDSK@GQ;YKas>al&#Dc5G{Xw`^P|AIY405dQf`PK4LkYKeslrcZBS}0{6M!9BhMut;v*VOYGLHXC_Y$GW@EoKzup~Z}* z9R5r1f-#imN%iPsDdF$w`}e+%LfumIBQflPTdY(u57NE5;pAxu9YhwZBjLnS~QeM~^(IQHlD4Ne= zN@Dxv_!3GrYjsO0KX2*Xy^Jy+?^ERdT25(;S`}GAsb;d0Qrvzwv5Hd9r{!5qIdAp6 zhSH;e*3Vi>V!MLtDBJF8%zDb(Nm{}UlyFb<&fQ3fa8G3uWqvL_i_MhSR>Ccme0KD$ z6d%5}D%W%yWioyik7qBy^;I8CXuLC@<9rKqjko~3NJ zC$e*tYPJS)K3G3?fibgiy`(%BDb?}jNNWBPCGs|1?YT^evP0zxB?JC*TvA=7oW`@B z$iI}Lmh&~ree7M4RpRTE_&KzGZUigyO~y2|Uz*&al(7}^|0tQTmMbmcHpThf=p9O^ z3QT3E~%$^=^<`%2krNB>6YYri%7 zPDzh1X-ElwP&}Bgiu|NFzg_Y~`gIi|L?mY=XUs=U6+o%6NYC9%32SR{K1v~69XVDY z<(s|V2}ucud5gq^qNK53wS=bB!8=5$!!VQ_`?N<28?4OX81vj_MByoa*~}^eC0s4d zIU?n-#YCdyz-qIUFf!$6S#2#*f*n07V_M?9u#`Dku$btKX=QW27{Ov{dkV@Xy9ZNJqS)w=it_S?t~#cs z6#PSvo`#aBz2=;jQelgpX*$XQ?AwuZPfwYGcS%yu87K{HXHiDVt;JgNnJ5iy&wpmh zF}v-g8#;nM$SFkW;zey3w5WA*DDc!#5)hR|;0WF-`;JNplna3cR@+YQF}rxMLA$Gr6~{bXYhYcW+QDJ`a|D;86Y@~EXA zy*ed|rK;hIrK(BU@LE&VqP#AxHCCI_zk^C0S1@amd$2Ag3+_{yv(=+~#5_u*KBdce z9UU4_qS<#H8&cLi)KrZqT|IiN#*~7#KHnr*TW!jiBi17|qm0G;S<2j;lHPuS)q+x? zjGk#r%Bt=vttdak4}_7Z2hn^r76Z`InyqbZZ_t2rJS*+>~550_5{?OGTYYTdQe`N^rVEh`A;v( zJZl@hDX(x%<=p#FcHC9zOF3z^(J$CF?a!DlPqil*KuKo5w;D)!Z*#~&lszA`We%o9 zwU{B4ik98xiu zmeShfFUn4nag+)s<0;Nl+k{|8pU9Y__QX1g(iG1HQs&8&69-hLP@b6lO*vufNK+|o zO{P&oCDXfLI_1+{{gUboinFpblj4kVvnb0F=vXkD^2}zib0{CuYaPy|Otsy`^C%v> z-{(_4SI|@oDF0cig_LEs*1d>QJ*&>*7E?-EYgs}mVKGZ7xh!TGWtxqi%PEuWELKoP zTX|Me?pv8xQBGUTYD!a^`>mmD%c{NcTFMT4|Gtirz{<0pGVY9C!3~s*R)-rY9qgCd zn<$IyEH+abWYBuvLV1XNmC{RWrA)GzZIsX^+bP>uXsR8QJb03le0EZ@Siic9at>pq z#O$WTvNg0ll!;Nb&F`hmwZ3;BWt7Q&N&`Fh1C)z)UI!`r(I3kFb%+uwk@nb!DG@7b z36D^mFNys_iC{bPk5VpJPkW4VJB{Xiobukr!4tvygp-W9aavQIqWork-DyfltFbeb zD621X0TMZ7}M28;r}SZOm0&W+T8dKWpWO!`MZ=&7ITl% z(BwWP;JcRR0VRjUJfz&UImshRO6!pxQy!xZ<-T}A`D#x$Pbpc#YYCrG%Hsc*6 zl+||hPn0sY=J1)~d{OfY#rdMIC zQJh^>;VI6pst6QkS5-tx$ul}*j6`wvSw*He^MoiAXP;G6inGru8YL{&Jf-zUryRuk zhP0>{6lX71Op3D?D;DLtt#8DpIJ>jrP@LUaaVgI3taudXJ#~DFvpXvRrF9>j(qLrKC9fwNg=>{aUFh&VH>l z6lcFyT8gt@D;=e&&27?C=GuF-43tK;LY0vc-{xAGDDQ1`H!~%tt?p)_l(d$RmGa2u ztJx?MlW3oro#N~$%Ry;itv4s-sLfk)QPSC5D>r2?-f2oZ%tQIl_8#P=ID6Id1?vIw zGv*+k+9aRfD9-!b0+gfn``m&QXC7XNlGwhWQkdd=A+`v``9f?_it~loVwCgF`VS=^ z-rdMO_&cRhSzUoCL1}6+B`KpUrWB>J#gwM>u$VHGHns=m56Uk5en*a8mXZ%^7b4{- zzuU-Io-)pUw_btbd=050Ws&_N<4?-yWqPbil*A^LDf_H`s!*J{UscKmyI$2O&Ua<2 zQ$pMIszHf8QqQX<$Re6 zw|%FrDQj(x)P^#_T1#6>Cd;`UrH<`|Xite_sX9=6wwJggWtF|h??l-dUY}DsQ!-c! z??U-uEvhS}w|#M|8)cB4S9i*=n%Y)-P~sF&=}CEFwc3l)+h#JoDa-7<`cQ`0x%Z`H zvY399VMq14_ovjcHN628=hwjlDfiClv(=zrEn#pl8NyWYK5HEgrFgJ^L!KsvQF37a zhRATr2JA+Vesu(8m#uG%q|CB0WfbL$J&BK|JT)0Z`PNv=GnV4C@V|nc#W=<|zd#>P z`58rL<`XFI?D=#e#hEotqD)$)bvT*gvtQLsp=5riE#YrUgok?XOr>1J-UF$hX_V>s zwV=p!%10YLXHcBosxv8PZQsr;%0`T6vbH>%;?&O^inBLtF2&g!HZNEm&S#7>GA^Jv zBjZAfGcqosI3wd?it}b|3B~!6;Zn-qb}g1sqS#2ZoZ`G|TR{nDsa8@}+6u!e%6Yph zS5pRB%o>U_cCV#4WA{3WGj^}1q=}+ec?0G8Rh5mD7`9(@6D6cQ<8P)oW9}A;Gv;ok z9JW;3C>u<+Q}WvEeFw!EVRurT5q1})rS)vPDR(04S?r;#vNh_x6lWCPM{!2s{S;>u zK0t9s;e!-s%soVL#@xdcXUsi9S!Dh5Ka{aH?i{5!cfm1}DV{W!^?zoMN7miWQ#|=F zf6lTWzvQB1xPpH-#=E~0ls4F_FEJ;X&(Ng-p4NytMG2KA(9;oehH`7V&vOTRZq8E* zV26_Y%k2f`d?%yVvmP-Q7;|S+fTsuYxk!n(Il$8&a)qgib`0kE zdxs13oP>mBoCzvzW5gtQkZftb)Y91q%`vhfnE2hA!Qg-JQJ=dqyl3m6bSTO-i7}K zrj)$l^Atf$U8cH+@|1@(qm)?g3;J*FmXs4HVO7MmqSU(W4Z4DzDGyQ4jS$n7k{RV` z59!CF_dtzxgA8QMe?`2W0g&O0xrRBdoYzQ-{6FY=S6=-$&)1Zp|Khse#8>7hRj_I;_uzZVJc!(JA1S+c>OY5mqKuB{ z3;Hk7&y<3@HRcOtCfbgEpGQ>orRCp2K$q0!-NsX2uC5%JahLv`y=XjJJWpLe*Dn4aw2%je> zBoU=?SfA$s<O>^A2xVr1wk7m{2#pK|N$D%IZ4WXS(tn-;k7EG!^p+bsgL^bd#)LuJD1&^`Qr2M(`2ojDN2$5(C#u zq&s8kp;mVxpB|Lrs8#uA-d>dCs8wmteOQN!b_4{~YCp>4YuZ*_xrH}S(pvg6CSrVz z89-S)%I9f?k$NCy?lW)DT`+{QwYH`jMoEWnP)N?hDHHI8VUZD(ameQY&TAy4pOtVl z&+9-8pXVrI#!#wX@p;Zb{-P8@A9Wcrp84#%?(^J)Ok_-G^jh~IlPD*u;j{HY3n<~*dV}&=MEQvF zL`KXK$}YUkkvY;bmN|^gTb5I%4b?k$CFMKC>9yK#*SpD$SyRmGNr=|6im5gtm9)Cm zlr6(l)=;`G@CCKHwJhPwm|DX1ln6z!LkDHvz*J+Z272P)yf#tZVZUfH$PP-`MqW=w z$bO2aIi61;Cn+D1PkG2S%C4e;o`#Sol$Yowq+k6`scc98Ny!e8el;+fGhVEQNFNoN zk`sGZdLZX8l)Sg_4K7F|%EFF5&lpIIXihz!+2;-F4`WkmUkdO{LQHI?$~8m#-guN4 z_%{bBb3CRx_c*{a6R8qVzIp?LBoU?mnh-&~aT3ZA?BtRDIVmMvGhdJ-qb$m%G0A!K zuozRMM@m8Ig`PxOf-BANFUcY)8FQ$n_FAbZ)iFPmnADWsR|A414dt;(TFO6>G*voE z)`@!b^pxCo^bC}bHUr5>Ie?ji96b}|WhX6RW=eJJE0CBhlzVuqD3X=Z1ihcMglv>+ zp#wehZ+Se~DVK}u9hZ}`W1r8n6frqj&u>rqJX;`zDe17vC)czDQ%zroZ$m*!Q68-I zc}_qoP{JeTI;1vbBHjTFxPh+=QnsPBh%}*8Lz(58HsjI5L!@mqW6Xb;F-lBx#>8mu z3mPw63Ay7}88h%#nSzRVST}DJ__D&0#ugYDvj{Po*`b!Z%ITmXc~iK+q`D zj*=eh0MBr&4wN==v^VLP5Z zA%`e?Hh6<#j!`zC50{v8l;JZ}E>jjS@_FhZ<~n5zj@}${o6--fmok%iLOD5K>-iaF z%0)eQS4MXA2K7;{3{0#sFPQ4wJ$=4-!D~_VPhHJ;$(SrLHRcs%WE;)rH6>3tjd7(q z#sX=FZy1yOjHY@=DTZH!$<=XX`U;JC&zOS|wAXT_@HIVmS5CIk`LioiaP%*G@x;n} zVqs-T<~AQFMOy2zK2pMk*0I}_MxlJ3F1Qw77?U=Jp6NGATRay8%`PbOA+o~olQM3z zw!?tv&g>$2c+JO4S!gjnN(roVNed68B*BbGYRr`YyE-8m^Q42;Mkq=oJWWUmT}hZm z%M*q%ckXM>VJWXyYfLyweax)n=;0}44{1yUN=x+o5)+Zq4L!Cqp4pSwvW5uNmv^j|@VX+P%Imcr@C#UM#pevP4;xnI8`1PWsO2AZ$QHQYBQ!h)|PKV>NDmdp8oDb8ZqXLt<$!k%nuRhd5M^olo6FM zc0)Q)?mf{f*p)diX`xrS8)Nn*@_7Ppk&1)a%IrnZlSGqkW!SkeQTA8MTCqDEV*~6hq7+=93X?u%#hO zD90b;Td$DSOqIr3)F#HPLCdU<7+1=r#e4&@i!oEM_SF?~fcccela%yG#~G6svx|X< zIY}9SR1+XqDYtXsOOTLTlxgT~WHtUiWh>^QGZFKMase%TKI92yQC6>KIphT;JbLwY zkk^z6Zvs49A@3-SCSbh<@}9D-ve$DC5;BIq=g%X2=tV zD_MSegCsfgDfX|=^Bv_$Ny&(nC3!oLnsTI#*WRoO{; zELTe7=rViH%$QaG!t+z!pqG$4E{ zQKTNFklk_hDUWQ1=E|GjwVoTWJa=$SrG6SRRky6Zpfze&^8K#0+JrG3vGOMM>`HXJ zN0a%pD@Pk>37auhBYW0sPAQ9--hdkzzbJ>=2Y8aB=37&CmDQHeiPEjOH>kCAp;Rr3 zXHTT+N;!ZXK~kO`l!3FfJiRChuzO$5qBrFk-kM1&SE`lJGwsWmFSj)xS6bdt>Bkt~ zajob6l$utD11L#Q&vGnR+8t9F#F!3+eV$A>uOXCZD9;yMuMw2f`Bg?z>i(lLiV|v( zmS;4j7v4bSLe66-L*wy_+T zkJW}OWvVf_f|AcNN?*L=kYl+r*Y2j}jOjm0Q>|dm2b1WEkSk#!a>uP?%)P`at0+4k z>TGZ|B}Q|-E7wpyAs<--SxZ@GIj^UbgUI^E21*F*v2TDg-AIX?RFA%yGBkxAYYXM& zbS=+TN*}Ll-QQfA<7Js!<0$L zrvq|6LRp5Vwr-GrD5;T3R_9JqMj@s@Vop)|p@i}l<^tuCrMgV1ZAZUCnUAAOJzu5l zhRCu0rJOanM!AWRNMf#2sz1;-J~t=}#_5{XEz0LbdUbA7>e;H%9ZDoTJ4hS5OIha& z^o+up-eX&h?7=tuArB}$BWo}5g3<+Vm!uDWNy&m^$$jyP(j$MMXBP5tC5Oou#=Jl5 z^Q=IOFQzje3tQhClqx*s`d&PhASNbdLOX9zs^pYvShG5cnDmraa{_`SdrW7>SOz`7 zMa1N1Og6lgz7Hu$86U^%c?YRPIg}v~)#dTjqTDuVOzC4~ZbNz20sl#XRNZ*=aH;XH zg^<4}bq0AonIPjS+nxn@3P5I1mJRfJNL>LD#jK$0zz9+eF>5K&5mOhkfwBSf zc{%!K%JB*+TPdyUt8C|4L@yEOX@XQcDar6;C)evJC2m4ocf_2f@dfHz@&b&BkGtSHVhU2`;f|Ai1w|-j^92Tt z1;10y*i5Db<;`uKBbB5yuvDcfjcg`UhBCFJ-e2V?8IS0=ax>kKkCp@uAOasc7G&+NANC|0cO^qn?@TNxks7AcX5sT{_ z(vA6u-cMtkR@V^ksot)&CyH}n8fW>=OK((`iV z8s6DS&K;TRJl@brs!o(^=xL=kTq%xSl=A%5nK8XFhm;* z0L1iS%pk;`cWoITZIgujKnjVw6VdI@-_9o7{;6zW3-Zb z9znUE{8yQYy(0cGk^BD|lMNE$-v8(G7Hb7^y+-rs&oQQiM$8z>!l7Ev6L|EPScjDN z)DtPO7yCR>kZKC02=*VwgG{Gnx~01;=1|UW2?$y{ol9wgl{Z;Uoky9Q*>*=zqT(Ku zdR{;&h@4a6SPLl+k+aBRN*ClTvXrt8Ig2c(48?cVWEFHJrB@F8n+#%BQ5s|n^yG(Z zV*OM?d88d~p`^!79%+YLnJNxMX6CMp9q$WzkG74eddJs%wo~Sy%+h*yPzDs%U3ohx zx0VM4J;Uy%Bu2}WRC{^!ReijkA}I4d#w5ZULy0*|iG!8xGKe`s35$H>ERInM;|Wpj zf@942&T6mcPoz3Q*^d<%xjN^Vs&N5*+B#2pomtQ8BIO14Udmm0iTPy3uEpBO`7&jF zN?l*Q$y5ys`aCTWbBi%QTIov8ZAyqGx-;z#B@1Tea+O`FjJ_^tUoK;!M^?E^NfYOrp(Er z@|6+}twrwKz}U_lU}<^$uNi7SB&GfeJ@-(Q>)50C0&Ufmdnlo-i@H)gF815($GnB9 z5_b*=s-N(bN`Gq|MxYFu7i}SWwrqN)DJc~@>#5Adt?KawEM#Id`ROZ{qWmKumYas-HejSx8SxD2yp`H}$5(w-w+% zlw}pPeq0%{SbHQ_-eCuhv<+AC6~-^Qa4c7LqK~Qx>BpQmTc0qHk|>jwXAtGuZ{DD{ z9)l@q>T6qdWggxI$eR&YqT6`k%9#DXrg~K7SJ{O=T+U)J@9zBvy`F|BvzyNx^pGte zLs_1d@AS?cK{>lj>t`h8^G%E?Naf1uL)zQ?#h4w~yCTru08fF%8{3Ptl5+jJpw$Vkk1^-9m{7vN>LkA z7Ey9l!1Y4RVoJ)gD$6KU%V>F4QWB#7k#k=~iCxqi^iFCurSJ)TDp^apGS}ysgJZ3u ze4nVj-v&y}0s%oi_C`vyIx3qe5!dJy+)NpUo=wWLh4S}DpJxe<0T(h={Q z)*)sOWfAs$iR`0vOsKuY0k*LhHi8^vOdLDdNzsqkCLaH9{o1uDOM(>gm)-CvHM77`1dFc z(87=7=np7sPV0K+6Uqe4K%@tFMk#|5`b!wx-O@JPm?1VxdCpWJG44pJ7ZlI?UnOU- zm^h4aW-^bk2lxWY?B=r_vs}sfEptAKeoSVAu0+IdE2M<348d&Y5>}tyG1ax%zF(v% z<}H$s8`B)~AAi|~`H#Ph3KkO?Ez>_{@}XblK4wHRp1Q{xkQ;jsA@5njURaBhd_GVD z@g+JrcUMkeJe8i`mC!AJm2KE}@gM5YjrkAr)#s3}ybIpqx!@zj6UV9ffYClQ6|4lt zac1VT3hVFMLQz^{r6L?+LQ_)J@dZhE%4_t`vWFouWnK|&3DGD+*XRt^l`B|Du7}xs zbjBRJpm#w`%F2r>u_%*GV)HESV6GkwC5*$Esdy@pdQM0ggt?adJ}wa@jE#dSC@--F zA~o-d@2SpYT-ji)Hx*MwwRwUoWzl0xZMd=nM^B6rre&(T=#eBQBPF^$gJhx9vwJWr zW$}DnC&@^x~$w8^z9>3&*1BqjS4?K54O zaZg9sQjCd*yGiRjm7$ce8OR@$Wf`=smZdzydZyH>D<7(BZ&QvjaV}}w zC{J00wL$q!Xhq6IlRqgxUuaAv$}!9V3ZUjIQ~F@OD($c;ui!U43l~F-E0+pj7Y3xZ zn+h{e89^FSGTIES5%YO9O7HhZj44_{*8!SQu2=VYDkJBXu58mDsSTwm`Y|b?E3@tB zu7tphQDWLMRTwq`b63g53lWjD$rXW>f1g&K2> zF~_XNTzRrZW3Dr1K4PTCTv>#pO9^iwc9Q_7HedS1^d zO=jtJcV)pzjd{tKa+t}yL3v!6YU=>68S@IW(@%(bLum*JeCY9frW7{$PDyAIBCa!M zyJqvlKuTHkEiz+tB{klj$klP>JHEgpEy0!Mcv=?;$$Tca^#--@P?YI-w(5yCABJ)q zYak-wD2MSzOe6v&^EAyl5@lgCmB^H5O|({{P?qCNBcV2;QNCbBQSP|dl;fwhCB&sX z2+;G2N68;gW8zb$U?vk6IVYfWu~|W4N^Oig@*J0hGQXUTu*oPpvG+jAlblj2sm@nZ zQX-=~l20nip3!>lX(%Z>>PlDIxX#QxYI%M0n4U2W@YE((CnKfWSj{IBWsXT^%FJ%M zPLhSv6)ijo&OIAtpRKCprKH8YMMkvzl!sU!li9^@l)BcQ3sBBrZ%-EFT#yoIbEFcK z$aoVfXHklhyOF-zDor`~8sAVtK7UX?W6m$B%2ARO(b_0a$vM;K`5mb$P_iuYdCEa5 zQJ&iMszPawnYrX#jk3G9N_Ad~&v?p~^|2a^35{zZ*S!{{1x8qrI+U;`^(dE*Yt9WQ zSxg#IZe#ur7bSYeQ} zXidrH)Arn!^4DQ4PdiE&{JXl`@9in~qN{YI#Kwx5w4ctDFjz4Y=|VX+N1xidQes>E zbfb*FsYmZl`Gj8qNIpF%4d?4y*PfIuT{NZ_WhU02<+}H#bZekF_n|BsqR%pY*%Dgz z@&H~+@Y-cj!_u$l+qeK|7OT5N~)bc&vwXb%E1}h zv%RJ42%&Sf_ml*fUC3SON}a3v)t3*98SxXpV?|HW+cRcZ&+29w9p0Y|Df>P3+ zYQ2=6<-MLGD4~z?{Jqa}8WM_96YH5Gp(#DisDzMQ zXDDF;O3iWJpk2X9nNM%aCmCaQVogtai4=?}U%==2hz`<4QX`G~b# zi77}~Zm9}WI@i&BiZY+rAGA*>PWg#d2x+UXWLl~%vpDnFf@idNDBUZ z2W47xP31}?%r|5eq8DTC*f`jmQq#u4{*+DFlPoz8ri{TV-wQu!WUKmaOec!d+a$v~ zDH-txvpuiJ{UvX*Ml$DV>Ffh}78MlqXigsg&V(_LQ8bQ8sMSqfe(4wD+DfC>^rtna-r_ zwRg3%SU+p<jxPP-e8z0Wx|Y19TELhSR>H-UfX13?38h~+J^E7S^L(lv zYZ;}h$tub$%wVNIT*rK-G}a14_EXx}n!^E>r@htTLB>pd zr>TxmI^yl5pT`50oS! zQ5%qtl)7jMBA+PJaHb-kDT7aGK3^!+aPHE#e5Itqxl5{Vl&Uy)k?)joSYZ(PK}mN+ z^Z7~H_DO5i6W^KTX2Z&)T%8b<4kNJ_9r*-M7GVuU?xw)_PLI7CZA1E>P>hLfJxMsm z%*XR!C*%{JF?AOBJiQ?iDRJ#8N29F4+ifXNbV>xgd6XG!49X#U5|2sw*Y3(#l=fY8 zH%n~Fs!)38#&so%u8_y0%&>W80?Hc9QlvZyDWNZFK8YxUF+-D>#I9fzmfy%Hp_H|| zAQ@$V-37@h?Q?3*DJZ*~RZvR5586McqKwF>>wc*z&pT*7X(>&U>AF@rUY$NRf~056 zVq1^OOu2+FLCJY#p%lQmOW&K7QmMC|dv;3L{Q*HSIVi=+lxPiYZW%Ts_-@T|6$f|Qf^9~LQdAxiO&_%<(EU13VvT;)DF^sYw zA|w8A%8eZwGlH`ItnN7(NqK28qbaF(=`VxEP_kfO%3+kpl_L19>lw&I#zaHT*C8_~ z@6X_$a4{d7Me$gfXH%BO#VnP{7m@?^*mT(EBBvQ#v6<3xb z<{5H!W&ACj5v^dVgj==7R#Iwb(b?B3%2ljq%3G?{lt)Ey1(EYQ%8jb{O*&*FB_f_- zWz^e3nYTf6-bN{KPLIBw@*QU(XS##(!LI2}${nkpU6fLIHkWhXP04_#63NGvc2@Iy z81rMBwvD}%yqC2O_fd}G>PSAWoU(J@&zMq>fX8_IPdSa>T!(@DLurL;A^9AqWWpCC zrG8FOe3vxl6lF*Tt+CUTqWIQ_nbIRrTUjL9U^W18fCBDmDef%B1XQGbAwV7 z$CBUC-=ajcJNG|IF{G0Eab@@eeYbU+F)y*lEHbXwT}n6XdX-cUDPNMRJfaLAqF3iJ zB^t_{5`Fj+N<^DEJfqaKGks2Zgw`Uv;9juz%UxQ3NA`+Rpv13osg(A{ZcKKF{QB%Q zQ{5=`tF%One9PU9sa;KfS@wphs$hjmz6Ac3lDC@n>K`Z@?dYEtub8;itL0j2d!BQw>svD*JcrS#peYq_qR zJg)698e@tfM%q|(${GBQUfOdEN++z(OH52kGt4Txp*CVsGC zj+L5H&{CzLOs=WN%0MZ17;n;%b4JRjF?wG4D2r3*&a3>CGMEWVPvXjwzqEc_@qPbQ z#--ERaAVfp(dVY$nDdqO8dH$6yR!Drg($7C%R*|bFr{AG08bH|MG;Ex4*G?V(v%t) z&C4OCJY^}aspM0Y@&wN^BGo7bLis#3kg7VR6MkziF|{Z?H>%X8JieeUp$;Xs9jh+o z(>P64k5UUcORd(Y6hO}Y5@Ld;a$~9=)o=VZV5(d=x{N!GC`B=|5@|wtZqkhM0VB1< zw4elHx1pSAD@r7M^PxU!qctUoNk__jv>z#Rcgi!oDfX8pSi_f`-I({I^t^g7Ra`rZ zo|F_;=H8SGCVeT5(ZW06-sw;26H33|GJuj4Yanv;ft2>hN5-Z>lu!4xJcB8FljDC7 zaPC7W;Zy2eFqHDl?i5$1V0~4N<;t@g+Mb6o)n0rXL1KneHsZ}%I~;2Sr6^`-eIOGl zac#_3d zaNLz6Q07IHeYh*-yw*}K^wCt?Dc2h7SMPREw(QaR*+p5~UQ4)}GBJ+kvxib1cdpEh z_fihe(0mS3QdQD(KSbG&r#~5~k5JlSMQAF@e3Y`dlpgCirBW&_&k4$;SbE)0QuZg) zRHrD(P(QPg^J&Vz=+&1)E>m{k&Gjb8O-e5tiSANL1(UkLLbS2}1 zUuB^6NN&t*>ycc!JpR|5JBQT!!j0*KyK*wdtq7-I5}(m$Tha|o#(QRZCL z5pD61v1Cew8 zOc_%}uZ}BGk+XlyZ)hztCvjtv+L?Y~KBfQFR9`9U>`BU%`*w6!s&>+&yAmf@K8bBE z;l}jG9I4fQ%qn@TXqekbnSW3Ms_Wh4O8spb^OG@SZBF9KM)b7O&$|*0eVvFWp);!- z7gHq!rNDJf6+l^Lql1@{7DtyW=%Y;DqY_AI^Hn7zW%Op1P?VDxJtd#el;%hD=wT?6 zunHm9D=Z}*`VASE!%?!@b&o=6iP1r7)s?O`Qb%V@Hau-fJ-hM^yKv=LuKcjRB?eR7 z#hgS^xl#o)&yy&RD>1BxjLTGyu(wCfG#=%#Y>`I<;+J0R5I!GlUbDlm#B@w0hDV-xFrkurHAZL-3G95E&kz|yMcE2a5WXAn2 zV{Qt{Mzk?Wm5S1LrPfbsN^Qi*e=ek<48vOwNtJ=J6)PSh87X@(`)Yt0Q6`EPA~9Jg zXR$+DBr7GVwajdkNJu45zS$`!H{e&0xXL*xvA1Z>c_?RW{UA->lCpN-1o8T`@`ln-vtNJiwXC^(sNx z8&k_uijpva)?sN%x+@w}hVuEcmgf&j&q^v~DLK=sl%tFvsn@hTW#JW#sX+OWNRL&K z@;zCqz2`@J;&9gG_0>NwJ81Vy4R*G z#nC07I+Oyhb*@#HQtOkRSAEKX^tyk(0cBnSjcH6dxk;r7C8Ir~HKoL{GB=|fwbs&{ z5|BjmX+atDQcKv9QZ|vsw5D{9q1U|)Wd`0d$eFgKEI|vG_S25iHG}5UfwKFHN=HiB z;d+n9h_%)+cnK)cvM0Jt$SysPv?CE2L|uy(o=rt+F@ehxHPDDSNS_RnDs) z<@kM-{*Th@)<|TX1&CC zN+la}Cs5L!(OR8IsbW3SB+5tY$0k$m*>lPi$|vjR|E5e#qqQ-WvMGYfG)f&CccxQf zLgX9cGblOjyk=4QS#La>(i1aSS%02G`DX2KKBe44z2g>8+Td-VjLQot^)hJ*mr?SY zET_c9XeHzO3d%iPO@X}43_*qaeos@f>CgE1LwCbNsO7;8IH^RBe$t9`gD$?=>kcjX?Y>Wt^gC%DRc zDP8f5{{?b_(qVOgC-4b&&QR*0Jx73CrX*>jbH6*3f3Q+2|2BA+QVMsjtg79o+-(!! ziI04qQR*Qk4dgwgGTLDd$al&Bo1u9VIrH!ic;1n7cO{`cqq#E0p3z*XU{3+AtXZem z-IXxbo?Y2yvjSI&;OH{%^|3tdQ9s?#<^w7BZ7nw}rLxT>!cnqD)^-@4@*eLC?GS5tFI*+Vfz1%Hz>m^R9fr{8`Szl@n<5Qf61m*eZGg<`V@g$r6*0Qp}!- z5>Xnb^aibvC#GDluacY+aTwlrqs*x(ukCp!1EmS}(#Ww~S%|hFEg>Ug+M*8SEHY7w zqJ$FT$^bmMh-79=59<@MQ0ilZm3&<3X6@OP4z@Dj%1IlAvofD7_Dr3P(lEOA39c-O zsCAf~F%QS-(Q{C)V~2^9$Cdb5^;y`JTiCB9&&xTPYWHPdkmRB?YN(Q%vJ&%NNtK5( z%_J{nr=`kAiH!NPq{>hE^rzIo}V-iz}0YpO&U(NR-Xp&VVH$Er#>XwQ|^DHkD?^;WA5DaAf&Ok>K3lzN{wp&Y=d zC-07%Qrg>H(411>mCol|P~u~?S&rU{@&l_YBCRR^VJwhyZ$pW0&kpSP-0%Rj*(d%2SNOl5;moC!2wEryRAK??D-l)l^B< zlakA3!o4Whk7`VBN`%E)KYb_(@jg!Wf%K&m#E2%lM+Q(T*d5^*k`gYS<}-@Y-sT&l5;{JjHCM24p%V^=NLJ7Ur8`SDtDT_Dz(hiUDEPmWaJ~yyqoN^dvA!mAu z`7E603;M6sQ;hi?eXm@>)07lFw0_PoRaNw~vMcWlV?u4$eFbM3(<3*&^N$*Hr6THC z_PCyBssmWR19ZJRgzM!w@-=!4%L%%tEpK@rC?hJXroX6tXLGHmvjG2&I>+msS zw&c*?_&i}u9z3~BLkV4()k;&nV9d|ezMx%#FPTqRw0YUb_?oi+inh8plyc}3B<3yU z@nMa5M@ckL`?2?wAwTq=(?3w=AN2wGdBY z=gFly%Dffgr6f3kZ_YqMQu++i79NH&3**;6h;gM}M?7($wM0(r^ihQ?dp+k76O+SsI96_^+JyQM$wQfs8Dj#RdtOQ<%+=*zcYmYA3*!xv!j!n}G*xlR7|W+5B_G~< zzC}Hkp?GUy@4-{-N#?mfM;%Jd*Pu+pnM(cCq(rcJohv=jyeDmSIPL+h1VZO(imW7L!L zYC$QLR{OD*l>Sxq+*?z+p;wnwZ78b{6BS2qOBokAFzD;|9VlgH;U5IhS~^mOVZ;~d zOevd0YojZr6H>`2+>KIboF2U=r5)Cmr98cOrrjTCAJv-@7*<#$-Vq`p0xbKkqN^H#*|LRYm9k{Gku5M``0Ohn`jAdQu-pFA;{+z^I3)+wlZgX$e2Va zwaq_d%pknm8jna?>%2eC2(@9$9bEevcduJL_y<*IhE&-m`NcD~}k??yN zxpO~KGNW&izU~vHMI4<8yE1RL_J^Mt^Dv@*r^}U4C-6-<9Q_MpitN;1Pye7y$FC&h z=&szwe*P6m^^-Br@QbGnkbor4om&F;m)yBNO3H^iO9`Yr#!8pmgCQw}hWdi?2}S9T zUvf!4Vg5(fS;u9SeQW%s?CwG_QB>>%V~nvC#TLatOjJ~C1q^J(LR3ub)^Qv=M;*Ic zY{l-xy3cyo;n}~L>mPGJzwdq4+O_uDan5-m>5BD2@?i>+33yjuMkf`?Z&mb*Z$q|M z#TR}U_texB#V$@r8j{py@NGLq^1tK^-s1kZrZe^l|0dUAbqsYjo-bC=(zCOy z8;kXK7;=zILXXMGE+@$)^oIOp7FUuR<<(Dal6v^gMcS2zq{SiqLd}gN0{v46&(`yj z6h^d&Req8zVLHkMNRC_aQ;_}a^;%blLe%)+Y$a_sq;F9ddn*iy-=urd!nAV7Op*98 z?G9>Hj^xGvBhHSxo|a<`|2(F@T3?=| zFZS3EQRj*z!`9$S91t&(Gnl8MsY+68t!jQ_>3>D)&15Z-b=G%4wMjN25+nosPIB&; zTGb)hj5S3xbq&D|M0%_q$&Yy5F&eVdie5uLfJoHUr&VKX=h=WH2K#X7=Y}L+I9o|s zjYziPJSg=s__PmnH@;xVU>~6 zJCYQdr7>oR2ihfdHlzkdP^>!9s_2#flATxw#mZ4t=&55=knH9ss(Pm*SM1}&OiBt@)UcW;sdn1j;NJ|w5CnQO>%+)IcbLo)bjulA+Y z4fMSDF{HUQ%7*yjiN?P*jSw6ECY4|%nZ#J_DEMEi&3GU3-J5c+lA8Xhe zBPbCbO!9NOj$nVr^Fch9k=^?MYT|6Ve>UVk`dR!8q^9N-B_Sj?u?oxm^B|H>?X;{R zBqPwzsWDTAl4Sm_enyaVx85QcNpjYT)lno_XFAz3!H*#s&@SoK(bV`i)X^~{(0cY~ zh>!J5(~$It)qnfB8~I-{8oM2NPuN%uL|HOA<5>E1YkfDQi8Z?osfag%#43VTQC1BN zDUFlDzcm-yXjw+n1ra5qV@Mtlu^La$$^IWXgQuJl;YKqbHI!Y`1X|_989x{Lc_O1F zE9xxKGKHkoU-}i2A*&iX+3!iFQB&5^%pl2Rky#`uuj(Dh9FozQ^fn`kBtr(=)1p4} zNTTpQlI+75vd-CR=#Fs-N!r_vwqmeaN>U4JoRCx}|<=nK9 z!v+2jT`#+HQ!Gbq~3XR!=~(qM!eyRSfQ1q!rt#aa^t^ zsqNI9#m+%I8*;?jIs8Sah`k}1WPPdho_;dpDW0_JBQ?8gYo7l^&HHiM^Ixb* zg(n&k8(&FA<0SQOVzc_tXxfJAyhxzc(I#qT$PYZT6F&(o-5-%4<8H`B)JJ;$8#M!A zC9N=|`hLAF{7y{(dPA&!lB}7mBlwf`IgC|LN;jI{u!|GVh72#Qw;8`^b=Ep}+wvuz zG&?@hzZC31vh{)9YdMk3u!sxE@v2%@Qj(#_>N3j7ND5<@Qs^#D*(ANO1Ci&0DM`xW zHdRP!l4v|5lRivKvJc;FNpGYh$u?i>Y)Bb+mbPc0<^paD#ZN|(dM-}3E2vKmavb?DogFAeAmR*IU6K;2<&Q(cXTi?f3Bk5L1Jy$0= zWYzFDjzy2FI$kwMZs7J(R{WYItMP0?$nPZc4>;MDp-5>L!H zAY$Mw0BrU9ONYk~@>|7bsAlF(jUrW<1G+ zw9dA@&`cuv(MO*^O(#jVMm^6WDVay>6Gd_gx5QHVJd!3>4P!`V;rXd(7L!!#u4Ea> zXgn{FY_o!7hp%Rml_Xs)jUn#X|Hyn_#i;Xpj5_1wvYMpCU6ci~mgG7-%bmk|dLG+U z^ZW*qrB>-1NebazKFQA;>BkeNY?&9ENG9MG>lk`x#CQnkr~T z3EX)aG7YU;Rt zY1Oimqpbkib%W%>WSjk$#O{#{9jIkJBH1@rR|iA(f6?8=W0ut;2+zLaaQ9BKEe!Vr z==ql03~3eUXs=Ip6GUB3 zk_%&SuY3r%*7W1)r+(Z>P9w&oHw@VUB0ZLmewxq0Z~KAdr`5r!TEqO*9GR$P8S-qL z&HlHL3ehUd5{=#>wEEUX=YM*s#T@t;v(IB)u86a8brZMtd-O}Y=gH5 z;in-r=P+LH&|{6MDb-a=H)Pv9wKAkrq-uO(+_&1 zB}u9t`uD9`kz^0kS=pLo&3hf4wj`|)s}c$ANIq}Tnc_z>w7XihXWJjA!0g6&bs%Yp z93}auBT0GGNBXA|NiarGG=^N=q@*)7H7DtO??Q4jzutldkaWT5NX&O7`Hs9Qzp2ul zbv_ZTb?!|v7cG_dQi4c4iz(?xKXr3z=>w=q^4Zb;me)X%7pSvj$icL7M_CS-m4=k@ z(wHAct1O$zpLke|JKNF}~i5m~8&lLLkfR@TLGDFrOtIL>9rDksw{$lk#eA`9x3>w+@ z&Y|Zq^Yt7TMa}cI+GEkwI9ArkoJSJd6yFUXkIg5En5aFrfPPZN>Iz~=laU&ShJ1*2 zvZcc8UO+z&*6WO0MA8ubENx#x(sz+&bwdKJHDwh`?;ERSt)|uJG+O7?)D$17y|IRx zw=2+pcd(D5=30dI>IP~a&BU)AL$i^Z$|-eBHy z^|O^_P57jFV=Jxd$KqKodTbjtDNyGt7}H%Ojj$__jI@u$6Dvp|X!estE>Nq3^nARx zqy2Ab9iirZm`3kWlB?KVi06Mu!maFgoFsI-u9YW9*7n!3PLW)-^6EL3?uUqy9Cd-3 zg=kk#%&!a7q_g7Z5;a?pktAmt@~gAf`7$+MFq@>#S4oy(wiurP5J0v{@DJvyO$F11yVCJSGSukI7U0V7XxdgRC zZb?tgq&lj}NHW_Mzh?kHnQ3)>2Hu^&hrgdoP4!vY(md33@1lRX*o~Uh*#Afk^OF2r zuGuCZN$qrag8*d}pdY`~co!0}T9TR$h)jv+QY0?HnrX|CY(>;bjFqP!4?G!>*r-TS zVyVV+B@!p(7SU8DSvO9j&Wq$hAKjA}G90;A&XwLQ{XXJQT3UxBlasC~b?K)@a*evW z)TFW^%8->mHKOWK^LC+*ay|MP)K}|VpQH(*Wd$Ot0j;uPJ(XF|keb2+wDgA5Ovh}J zd1^ET(yFEjH3in-2zwB}y++cak!FdeBreF|~5igqO4n1fP7 zKi04}PC)XOjvqD8&||mI&mE}wHQdp58L`ocr1na*8)XI2s^lUqs~^d+rFsVvO!6zK zY7E(r$dvs?e`?wk*Lg93Wo>DoJs(2NF%ONyLDZa#LEe3g{UJ54+i6ROP*cZK{TOm% z8FDHzz))KK8mXlla?4BWJe+19(as~UkV2n--{TxrCw+9PpRXR{hUqtdEN`KjY zF|E3fz}F~oILA_x7v~FE^_Eey!ipb5{wk)eFr?yg?fI4TbH#eLZb$&mJMuNkDtbPE zIFz}(mR41fGbKx`qoxnmFNxmuBvn&r&#$LdN90vmWj0Xr5bL0 zwa%MK?qlyKR)$=3vjE+S38EQWGYw2gHS(Dz$e!Fs>1Re^1Z$0%v;pFs;jXYN0MuVw*4N-o@6?A9*~Un z)>b@Z=`VZgYarX|S>tOx!hfU9WXcQ!sJ=^E$QOYo#OkWUV_HNOrkdyW|PFBC#`&uMWx3KX@&JvT3V8t=WTJvk9L)&pC#C{Z3potX|_xwyf&?l zIB0zgDe0}P_?=d(aWf#hxVp4j@292LBMHR~uw>B&B!8lGsdEGR`7HQS%Zj zzVwC<$rFFIYD(gQ{y7CJUy`XfB~`wTJqbN8@1SdL8)}}QJ_+bULn2b^n6{-=PV3a) zmR4~ATDl>vC#jVmH5q2>naGcR{(+Umsy{Wq-NgMfdc&WZ^B6(70q#gmCB%k|U}tJt z!m1fG0VL(%`4ZaRljPJeolOJj=Lb%RQdS7bZN=S}~GVVW^Mvp&|P)IzmR#>i7h$Pbdj~(%U}Y!|10@cJ0G(YCM88!o#TvDxpzl zNKV9tMAR5+nvX%Y#!MMQKhA#YXB6JIKf+XK><>UY$x3*-2|?$k@f2Tc%M{r>U+5 z(^>k_d7AwqN&Kvn<}6y(z?eGR#oq{{CZ9j{`*FCzqvkwThlhx$Xp*Z-@xM;t9W#=J z8?{#r30{V?>0{9(t_8Dj3XuL;N;0sGl30>F*sDvgt{~}CKR4=})sZCX`A-rb ztilp4+ezBv9ze2|A)T$KLVr<{8a*#jXUItGx~0czyspN#+B+ekRR_>*rDyy}u zeI(ZwDcMh}OvyA_4v@T_uOoPnR@<=ClU5kwG*ZXQkglb$z9D`N(@ze>hScW>{cP!{ z{d1J08`c!r(;lPM9o*A?LeC#3xw%AZc#2jbL$wvBNq+04^*KXQy^*eH=jf*`W=bby ztsB&2>Zzl1i=;a4wWOtn^gyi2-tQLuTz#h}pg5AC=J-wsb&jK-?h#tUJ0$5++U!q( z?~;_p`AZ_9Kf{!(%mCo|5dZtj`OclWalMNxRjFX+iTUtFw)^d6EzhvheJiP@;UMO)F=RH`XB^Aj&tSSD7aQjp!alXIx z&>E(pW*F|`q^xw*+;GsFNke?F_bZID(o@qNv)~Hao{8j-Z#pls(ev$88Z9}fncG%N z&q+-Y_>oNON=+w3o%CvMk`cHkkUrs>-U^%jE69S>e8ee0z9=k0a;d*Y zW-(gL!2Ns)w9AuZ0W#z(^hP;arCp=lN<$+3=lvo{J59hPgiPIhigj%Ny^O7Gk$kkWyelNO7BTc zC7dtBb1#zp&`9R*P2y^0i9Yo6wXwFnFE#mNG!pt!bA6cpwbOni0mwfW;;;*$RR-&> zaxgVZFsAaZ><|*qwYaH9eMZnK0lBv}Mlg(;PpvhRM39U}o|m<0JgufhYYit-GXs94 zHzrYY#Si-pc%DqnNsOuZnMG0-Gfu{I4oP2(sYGuS$sy!tnO{-#yc|C~tijO=a|kJe6KUKj*7i`wbEg?EPd8ZY0^= zU-y}tS=Q0~+S0Amj7RASsNo+Z7jbtXx3b$vwjfp|ezucL3)NY67s?qylDKJB-dj`nel}NB}uT ztFP8GmlM=PVvjBP*^tBD8d0ZcHEDwO*lAihj?;DU3`qs#d3pYIk)$F{Hxe6{NLnM; z$*jCeG8tBVP{V61YkUJl(-S;>qoy-@Lwf!JNhXYitRRm_5_)SUc}#M{w}rtun`Up9ANHyi#%+4kVXDm8Q>S&p4UDEirjBtO!kcBSX`~Tem1ImVjk@Y2uBmkdf1{tJOVzU>w{Y5$J&7T1 z*|df=X*B>ESse_yK0>3e7Bzt#9qr$M*JkO}unJ2g)Fnxdldtq@LlV!?+CL5HCv=uZ zLL+Jtob`QxCL~*s4`nVlC3$&6W2_m;NyM{gnv)F1$xdcL3leAKUdb)3So%sgExk2K zMvRW!*taF=8i4Z$#-cs_JVBl1?U7C-Ue>q=(CRBr6ViuWNmh2&UnmMBIfB>_O%TcV zbvhP(NV;MUilz_CI<`Qg(yAEte)6|XgGpLq7Kon#v|52YFFiJpnztJ@ zhlfz}8E;?9TpmPCnkHJqA=Egy>TEJ3GoCxhxDTV%{ZO?UMysP3(}V+}Nz7V)IKRty z4JX-!`#P!NNc#DXTN+u>MvtK0l_BvzbY6_5W(`huqA_F! zPR9}n<5-_bcoHG^NE1k0y>yM6NI$J{-jRNuMonWxi>z_esi`$xYdDj{ANfZzzab9e z5=mnJWJIh=j~PuPM7VsTF^hg2@urISnMYFCroXW;kM${^O8v~ICa|&AX8|=UKwR(R zeJyHQVkHvKi%1F~GUdG{L(00VW-0(-4TBT#Ll$y>lTAyVk`#S1;kEK=9 z#rl+CIf*x7L&j?bNd`RElb&BmKan8ead@goO)>0A#A*%6yH3kcTw}W8h%9; z@w1y`3bMLn+I{qVXr|r?AEKrsZjEH-9wzy2?NW}A_|4aOdX%Ij#!E7!A=M+b700MK zxE2`_y?UJF5q7828z)$wHL#MobCQ~oXhj0z=L|Lbuz!~EI!n#VMcRkws2Mh0@7d0i z6kCk_>@(~kX*JqUYj}mE_;Br?Ya}(X6P6m@qMs+YCy~KX+)g+zETpSNQ9hB>hHcD<05l7&4MrJ)~wItPR1cp>4^(9 znX!J!?ldVi9m8~$NlwzEz3$9Y(W)m_B8kIvB%|Bvc%>)Vg)CcR1E3NuqUP#pCCmDgf zDm_+^Rs%liTrNb-%?7&DbEoD^2aT4(BmsGJ{VGhW)3~QiKue2IGYPXmp7455lY5@d z%3>tns_B>(r&S^B{r01ON{}qZ&Ov@(q74Dv#^lDAEv;lf`1IE1;Nj=f09ijbaV#L zPkfMi9!QNdW|Q>KKx*n@_bzYhhEP+%U(bU>NRHutL&kI%iTekgafVzQi@o9V|JA%j zMv}epNLoF_+gajg6v<0GrIIWYd>G81dJ^v`ILB3)Ethy!j{FE3PWTbgP+ONY{y4lT8 z^w@m**^G0gM7SZvtTTuqEwCGu^YQ{()o-J1Ur5g}m>2Ry-jEj!HCC5U;~%T5^4=56Rp#Iu`p_)>xb!7Rc{#v^M9IZi*`*1MM{sPV;GAUC(C zs40tCDJ?xmO?_nkZcp$FpVa*5sO`EyO)zri3e1a(Boj93=v*S1wJwn)X7xtaUi1<@ zhr+Y0UzcfBcbbmQ6>1(KTBM(^QsXsNJzu9L3u0APYC~@0{a$I;OUNb1ny)+^O7WD zzP9}pJ-aW^Z?axflLLDRY1bQSwxE9`|GXn<>#b|!iiF?Kt$4t}B4%qm*?S8C>qeKy5`blGovy zX;Y9KvhFTYk-QGo5ll_;8Rry<+EPQRV#QZYVzlgb(?~FyFYECvCH{Z?9Gb3HW$C%OH9Cfb;EqT< zm!oDb-eOXcSk}}o8XHD)FpYXH&z2@&zK5Xg<>_a}Ox08*xzSEzqav+xSiAR1)TF>} zP*!R~R*(5F@j$dZ!RSinw3`gph1nesd9^Rz#97ucoL zp=N}ewxS+MQ{+|2qV-AUAoI%(q#^zMn58?tX4KU7*1Lk{)EruJ)ffw*rn+_8W5^D?S0HPgA!QIzoiP@J zXf+?_Tv=g3HL(TI8RGlC=@5iU;$MzTJYt7|L5s0l-liB&ks+U$rXw0$(K zF8b>^ZY(wNB{iPMQuD;RaW&+TmHoz1lWLU4Y6Sg+!b(avq#ACYWGxs^O$*%i$aqbp zpVc^j$*MPznw7{2(m#`^$rPcZGnvGvk7i>-h6U*8Ora(dX17Gb6nc)teT&p^Dm6>2 zllU}}=g4f5Tc*+K17@5=uOUhB#7AlvNzJvD+VeB$=X6Tl4bCLVm_utgi&kgxY(mD= zkfnG!DLocNtJ!$o^bvV1nj~*C?Xmgv^AqE4e+onL!Fm$9h@?zTt>I#lOV|-fZ!Dqb zRMsdjC7G~7%UVV<9M4K5BgK;VVJ{(X^2E~fdh}reG;2wmk=3Q8>qr7SY1D0`pK2|1 zls8f{aJbglklJ|a5gvzUCDg1(wh_-;=*MH7`q@TJd9+JfYDnr0$eG9_e^TR#8cLma z&`-H++V-6!D|@TwU9?(-n-hs=Lpoq>lCpNu$`{c)Bp%OYXcaVCHTy{hch;CcK&xJe z7MT|ZsqrkKJ$8s>Kk~ekWyn5cB#EEH)Wl*|MgjJt^Xf+b&Ch4)`)Re|uK^(Hp32Ho$wWRd3)ck|hQ`%)n&9&GmBYw_N^K7JQ zE|JW(Ziz3GjGlyB?bq1bk>s}4(;F;37IRSAWk?`qoYW_dn#+rIb{i6H?Gx_Ma}=Hv zNpIYtRb9NXkPf9A%~)iB>>v-Q@wc8tJR^y;ZvLOq^O0rx74~y#?k?0Cz94bwt~Go? zt1d}(1Yc1z2CJ~-s8`fnK<;(GPUa2CY>cw(Z9dVebdY9%&(wUwJ(A?iFVxJyQwE8# zuhi5?DGqEF*K5WbST*KUv(eWeM)mWc)`OzvpMp-PDlrm&B$X?AAgcs4N(sIrz43E?yO{f1&~a`ZK2es8_ANs`ZT!*>ys`(d#n#N zKd^(9viedJ8?8B^A4%4mdI|`pRcX{v`nf+f7jZu(&+H7TIav|S-2nXuwZ z>4Qib;KU)G2a`-d|H$9k7|gOZBA!oTrVOLT6FYNxM`#quLF{D2b0|r5)KF$h7)cd3 z{iUPPBp0yTsem!8uBD~k8xF)s`miyfNe=NOj064_5$x{xGYCAqmi(Zn$4;8xq~6K7vt21=v_^#Jh&5 zNe1EV2Znj*OSk}PqGnlL;I zkhY(pCdDG{)w9$j!BYl#>UxfvkbIcy7}N74S1{jY=3b_iXBy1_m#Nu`6OfG86>5Iw z(f+wg5`$Yl>5Xe7=`4*QuSV!sNY|+u9HV~XSe9+F=I7fahq0@aw%?^y_fcwfpCm1I zgTG_GKcH1Q{!zVd!J!gDD&vX5> z$6in~8}|S$G43y^alrZ|{qv6GAx`2FQSWF~WQq2((KsP%4aa!Br>4CZ<^<~em1Gj; zmyFIgdR~a!EAjK4n!M0RAO0Zefm4ZC{UY(hJyHb9vK94p!+)`d9D^6O#LA5%i>vl( zzM_dc&wNe~({t;!T9zR@JE&(vs$w?DZ@m_#)k^H}rN=x-N;JSb4lmFdEPYyQ?Ze_E1ygE% zEUkorL7Il_U_NJyyL+!CDB&%^tycXkLh4smd*pT{EC#h~l?{6eatZ_GFI-ZTn zDA%B8H@vAUrPrX~YS#0UEXA?>Nz-CNt`Pja!N z#%f1;UffkZccvy7Cts;yXKFg*{e)n&E0CJgMR2Qx*yu)*3OhaN=e{Hl(`i}#NRsu? z80$}x10yI_{aMy;IBm(7tplhjiak;S+CGq)j`Q#?KjvTvH7f_GpW!40tY!v`58m7p%@~r3c!DWpEXizZXFiVg z>Ey3@EP^B%b`CNNB50KgbEnwd|0NMPMcQwGsi}z@MJa1C$+V_;pA_r+6nb7|-Cazh z=IJW!vFRkuhiE@X(yA!-Hj=|ScNk3e(cB&~r~bFOYb?O3gQ{_!E)q zu939I?Liz`8b_=C({x>aOfnc}2l4ZSR?U#-r4>&}W+3;-_~keaBvy4xv4&11|9$v^HSeX+-uNHAnr2c4CL>Bj+kQOUH1JjPy2daM}z+?b+! z2~QHIs(QOyg5)f|RFeKFOV4v~ZzF!nQj=k@MsIm)`j1zQA#ayy+bdF2Z=q)Oiu5xZ zvr@|PqNZ>?ct!^BqUK&PEvp(ec`?7_*WnB)iujSyX+*2N*e%O@=8Z{ee%E&fd`LpE ztCUf0M$!k-B6;4IWsQcFcy3M-=AhBrf>x)I!=)95?Cz{(8PYhfzPH?peuA+si|5w# z(-?Ok;-?KY?_IPkLxx} z4emv$S&sdWjC&7~vJ167y=b-DS?}w5QM10S-UJ3wvjVeHqIV!QHr%Di&07dHPciOt z=Q)U^4c1)QXAYrNw&eIN8Tc7R(h6_S3JE89jJ;NP9QJ-BeS)oB97!H4GAFUD1DJy{ z;|zIXMdl=0HN%=BJ#RFnnxlUZV^iqIC6`7*B*_HqN#u>zNcy>r7?WO|P0e`gzAlQI zuM2c^qNrJnH=U#p=aM*&)|?Pc;yViWF^_QDMN%*t_j%87pGnW}@uuZtwj+rP*&2NgIryjE*5QablHux`}>5n`su^OtQb1_VX6{se&4MVl4ik<`Ohg=RG9u z*zE|}OH#80tnT1jMUpYaRdbxg8&;BgPmoOZ*O_vL^rx^p4hQew*Y6B3$O+U6Rju>X98S zy+_hIjqao3NgS|?b3=Wek?g@JhoJ2*S^5gB4rM`JlT?S5WVW{?euz5xn5S+9HPJHUqg#0ZARAwKB28E%cFtS=|-=C4Vj8;ToQG5ES|WJN{!u@#B&Og2-I25gDL5!B|J;?rY8Ak zxX$G?BoRF{=F`&8Gu*w4XG0!#(g;sSt9ghqZ`3CPt%7>%Dx8VL18=j)p2UzUl6$cZ z8uGD_=J2ev%5M3|&9a>H>0MlIYKr1nfW)&KHEHoIQd*jq8b9mFem-h`M;4Xn%}-79 zbvnNaP_xatCn-qHBJ`O2-M50&+?=N4RfHOE>|~_J4Dm!HNZUPV)v&KxdC=;9Q{BZG zO%>!QiKwEqYJqr`zbuN&2ys)YEY(TD8VrLVBYNHK|d$+zpmB1ldnANqJh; z!rCqUQ<<8+ID^!O#*4&#hW_G2O_BsWfs(PPO_F|!j{EQQoc^bt0u0H7ou{<49<9a% z>sS~vFGBs)r)FGNt#f^PKH5*Cw=p#i%XIH&NG6=NWR+=3O|AM$eCekfZk9G<=C+__ zXCIxXtw}Z`lgKEyrPX@GsmWdw(igj*S4 zC_QJyJ16qR(=d|0II%84StDq*4=ba@{AiL@)e?!1n+^Y>Y#Xg-qekP>PpVyS70djN@NLmnV9B{r5*(+BmDF zcVt?bDLZMkBUH~{yGa`1hC%M<_tNSWvQ{H_-cRD^srC7rPpViPXgk(C2Dw%nrQTVcpSb|BAJei zlz{PyBN=Pm#oeZ#QSCLJ?@}{V`UkDJPfbzOP~LoaNX=&ShK%xKlG{F7mLbp6=)O0e zekNiilK01+&?*^D{j$ElBuR&sO0T}5RX1ymdrNWzxlZQATUvd#z9}|jIOY&}8$q}3DL+sHFtn`dIy^1|GCg&I0| z`nrK5kDbGcChc;d=GS6fi5yA3U`H+Oa-`KvWB`d?Lx$tt*#7MjtpWz>Q}U!Fr!dOm zCnd>r%u_$~b4q$nj~YsSQc+VLcNdbeQv-IBwzvWESUpC!h!(eotC3z<8HRJ7hv%ucHX$N+Npm4l=k zcHJ^7UFm1(Ld{5dNWS78K-%R-tDYEB`EDXF$)02y^X{~oXJ#d4ttT#=SiK>i`*~4wC|F~o8a3{ir&8zYBt3AqBW?eU zR*P{bED`k^HQVxO4Qo)7*J?#g5==o`5K1>>1)c^E=NmgR#DW!+g zDlKkYWiM(pyOGCaKR=q9`6F}$BS?1SQ8J#S@i09zPGDIn12pC*Qj-mLmC|FANRpvl zvag#$k_S8LiHM(R^pknA{sQwXYW~DCRQMZ_yu2ZxXh8)N2mifMvn(*QJ_fHK8TB}yesriDtWr>!R zEbDq*jk;ANb8rlh@mfu*8`xdQTsGt^R#@2;tfwXx`&H?m4fInNnMC|-A}N8nJo(Z8 zlIMPUKfjflYq(3PinZwvdhUw#U0S+>#0RaAb#Mo*Hc!;Dc9Wdy;%I-LZ8xp9V{Iyc zys?)g`y`F|ziAbPXpx+Ggc`3o`n>5Vi3et-wDdTw&aBr}<|H*AHfYbEre-txP~PW1 zOOk!GK5M%~t0<N|v}xjdKZY*A;5kR@U{)kerM37W67LuGo3X{JKd$!AZ1Tw@C7) z!Y>oN!2X$5S*vJl+$RafPDXYY4@g>CdHxYe7V8<%BYM7N?PMNP(>&bKHWTwJo@632 ziR6uEBwfeqivNLrvW(MJ_yaY2F)Jk!K9bZJsWbN@tul1dcupY6jeCB1#_^408S;kg z3VzT}{5rig`bBanyJl>M5{diXZJ2Qq&yFPSC`(o%#}dA7HvEgSt?i_{6ep5f$Sn!5 zav@oV7?V~cp`TqiK}*g|Ld_qzXOrIyF=R(m&05K+nT0r%^F>OMt>}4~-D&7Kg-zG) zwA9Q-){^K=OHKcN+GFXdNjp$A8Az_+E=6WsCX(AO_|+4PX;%6fgbbPg5dPvhH4WzB zp5Pg>BsJwLX&mOI#-Wk+Pd*Y`G41*MBpYxSC+#Xg5{j83ttd$Hx7-6Dp4~|bVdhFd zdysTR*7`TOi0GBo!DwpZ4HN0rVzjC@2DbueX$g``7-gwXMYgM%o3475NN!qh5mcg8 z8Y?y`Q#0|KMz}XMnK4tua}|<44KFH~=f<>Zh&(1%J|yYkSu&&{t+4J0X-Z8)Ja5{E(wmXY4b!>PlBKuC zzD07BA&ZOayl6$M7S_(86|H8K)HT;=?vKwd%mKj-wU*vBq_xW;`N6R?k3^=GF?*ljJh` zP%?jSk`$kG%?+aG**LYyQ-)xY9@y8(Z!!;{RUhlO5kja5oT0rDLd|R|V;gc4ZBIb| z45FsJqt42~Bu}jK*AS959W~nwV_Am~htki(Nt&W`$&kZol>v8FG6zSHtiws+-z2iJ zuJ0r0r+0GAQK2LUXKTB{=;sFRZDj6*QFA&J_f_bzaB6^9^`UY&9CsL3!vtrn2{ zHcorPkh05Evxu5WII&6%7qNyRskFzIP_u5N#`98=G@Z5dWwZ)KZ^-*U%So~$^ULgB zL8~WNm!+(gB>V7OM&|NrlINqftTiNmpvMvr8*52kb=AK-yN+c=tb!!KlHN^_hWLdJWfp)tkhDU6Vy1>!!yKqyvIn*MU0^I^J!`hAU333 zXQ^4$Q^)iiHJz+FpQmOx&bhLt7~+5%a>;BLX%z^KysLJJR*iAWzKapOO3hFF7J;<= z5lOA?TAxR>dI&!fb&pBbpez~Xcv=m|J&E{vLd~8k+J}Z*#qL7t{ESv{7%X*+|My)_%@O z;%uD@a5WR%MB|MY>5a-HZLK$Ky+}r3Pa>`GqMwQ}y6zaw z8dv;XFPxjI(kfVb139w>tuA6-NY1QDO&81ysbNiOe&P%(5mk$txrhY$yW780Q^ZN5 zr4Gqi+(XJ4q%O%MyqzU2Z9sBeP66=TkYqn{os`v>q(m-6(_8FdS$a1&+@OQBq2?%d zMDh!tek9rR>6gg9X zLGA$tP*W3mL;5*{rB}e7U!DaFrY028BJ*n)HT|&;$}^YY)ZEFUIVy~ruWdBO!l~(n zHBR#UIBKGiu_XgUP*Xcrb5sO1TXJe|Od#ojQ-GZMC(x=VVpU>e63L#qNOS1>&eJU)^Hov zCi!K&Rn#~mTBH@LNs{5sbBUJKw0eM;mt41&B-=<`(bkc;;OrpnGUN&NqSerLLn^J& zwr^osbFAMi+Co32aSEshtF0ufM&XteYsz+#&(XR^+DSi|vCniv?%hSwH>>v8UXn}5 zTGG;e^ivr-e5tb`$&ojdB(9au5F2WhNan57e%?pV4(~O7_LF=siMOHAiUTB{usVpJ z!z8Csy3E1DtWTX~IOD?V2sI^wwa%xgIfJo~8X7VKCzpSdnrRYAVx3R;Yi}5<`vdja z-)WY$stdjhMr@p8S=F(|$$sM!$>$BF4=a&;d1pv~wQspatFFka@{B%?Rs#cc z?Y={D5a$BP5_d`NOw~HyBROq7Nxx6e>tQ81;Q=-K8tLdfBKd+IlRWmAR&N^MeH`Sm zcxr}YZEA2Idq`?FPtiU9Cz6X;(Ijhqrd14X1|&-u@*Fu_zW4k}O(3$3{2Jspl0xVW zsm~9RM{arp{FCJ4Le)5y^1=U4_EFw5u$rNUP9!$uC>eKWlFUK6YjQ4?IPS-A()<%M z*M*wHSPSIuZ6&8B0yqEi7avlPWI-QFtfr+^On&v8mYRdee$t9`B%cty;wL?=mgBBT zb{AQwxoC|}R+6HTT2?k%g(uh9osF9I7%%DP?9}u`ZjpUdPHO(bGbyQ0E|MdmN?d8x z-n!GvP0b7Iclq*=)N|KelN-rztF-j|B;I)PDE(8Ap08lWNnSN%6LvBYsB(ds4kqB4SBB)cNik2n3iKn>+<0z*om6*3mpsOgDum)n)E7u1{DDIgRx~&aic8bzmgsO&s>3 zBz5Ma$6n(1e@Gg|XdE^o8HSUT^kHL`Rnrgi0vWq8HLjRVvX5#(vIDERShc3rC&a3> z%a9>SH4@s;YBg36`BiN{TII%yCQ;{4O>2}cI~hY-U^dB~whOIFVzrWf4j{RVvV?Rc znSd-Ikq}67u&rvkv#iYR)pHMOCM?ot3O%XWhxf;%r9sp@!+A%tdJr{jFylI4=Juh+ ztBcVHqz&b_Qr<_NOM;Q||!=l8nKAzCXrd5XnYsS2>EL^=K_CjHK*FolSvX={221Avy$<&%D6%!Y68h@Iai{r z3G~wpd+Y>wo=8n~?CWGDnncnDGfu1w$=^gXz+`HwWpJ{um4-y)R3fLgsno<{lx01g zMiSgZ{Y0`pMKPBp4h`9d`Y7>nv*BNq?G|D~PB%sqgq2ZFe>3T40rIo7YYxj=h&Yt! zjUqX`NPBfItu}h=Dr3kmM~#gbYLZ(sWfA=>o`*f;bKI{|^8)+TQHYjhBpp6E+J6^) z6UlJod3lz!m40r7YkmGCd5(3^@eY1@l2)5$=qUe1asj=10hDeaook}O>pV!$mo}Eb+;>~lJJI=JqyH(@IkerwW(uYZ?sn|qIPf9-r zk;lYOa%xhdT@o$HsR^}KVM7)!RI3!U8i6;ar0pqabti|eu&GEkU^dBLM@mhr0>kuI z7t)d>LHtPR>1g#GPZe8Xg-u6I4{N?>B>5Y?D!C;it*+F;UwlA5%tXx$%=cw?@Rlh_ zMXX;^=lrxvVfAW3YTD#djUl_NICQ7xU^_h1i^H>ilFnAvDnifs5DD^(!-JY_)?d3Q zMombVMrLtpmSgRf9OX$(87teAB)N^XKt`}6t!g5#%KpcY8rZiiL2s0%RS@bdGo>6! zs%Gk^JV^^zv>kOe_AR36O3eXeW7%s3l4M<_ zJ=UF8tww5o?m-eArS~>HNj!13l1$QvBpx>mN6^wf^n4F@J2Dm{sOgBFm->t(*@%;! z_!&hqYqI9mQS?(DxmRL7l$uA*8kvR^iO~KDr{*hmG7?c^ND9|i%{Y?rUU&|PI*%vm zgRzJMnaI+|jnGy^QWJwLA+4A}k{;13IbkNP%8bYF6=Ch3O^ruM9n&b1-7~d5QM7v6 zN#iG)n%vkYi066KxMRha-dI5L2Ab8+g!sDI@DJZ;;QvamE+XlQ_lRT;E~3?sNS(_| zNY)M4{Ii5sfwOg=X-KfO4_`{F*K2eZETdI{q}r}nl3#(^KPyP~q4b0UxLYO(siR}M znj~VG`dQ1ezO}+CgjTF4`3v(xVr)CDQXxl)=f6lwqs}s3J4ig*Yya#dIf6GfrGE_B zfS7-RNZ8G?h78a++)pwJF)yX>r=MQfeMy!$K=RW;e~0`qNi$@CH}HIvV5S2H0au%*T^ViNTKG9e$;UR_jOWxW6Fznf<@y z7EU);u$Op2KWou0so`r{_3EX&ruWngSg7Omo|?_*dC6=ascG6t_iUd?TyU0=Sp71Ow37qkz z6{+cYU1y!$sj2CO93^p>hGZLNuFS7=v?}U~%y$R3yCi!s7V>l;6G_iz>Ny)pGTeqq zZ)B(EQRru>PY#mTxF?a($w8}<=`;>=QR6#TXPhBp3g}qmp;ddFQ)C@kJHDfCnK34Zk4948m?>_^R=$V82=n+^Y>Y^#6#m!z<6FOAg(?2%-YJJ8Ri<+@&U zB&mfQC7MnwJrC+ErFS7Ij51}$8REEDdn|x{@>)C3t|SXm>$n?|1U)Zh1ybXJeVs&R zcao&dwa0ppxZ&^l%DDF=aYg)yRZrHiCvH6QAHukj?CGg>?nA5P*vZKH)t8!nc(3W( z6TIh2vILne527xFq#JG~-9ZMEWNxAJYdFb7Yqc6l5;YRLMMT{wlKMEONFEzYauoY; zC5dDDCr(KTc17M)ST$6R+C67VNH=9n@m!AzRsN~ z^fMEuBzb3Y8Z}4po`c+4PbaB@-Vi^LB&G3uP@a0spdTmfh$LEOlX#WVv6w@v0=OZU zNQffwU84CgnpPb>w0{h7UYke~`{$JP1i@&Mc&la}{bcafQ=1|CS80ULXX%r|(5tWU zeG{!l)Kfn()D%HPl|UrKP?KpC?tTzaYpAJ*-Gw~+TSv{Cews-(8x7`{>}0l)Gzrzc z=yqCt{G}P-FOp%{<;uEjNI{%Ic_MNl_is!z9l^Lhj-@KFN)V>iHN+vTz;ue@OPW zS3ic-!47sW`uPOwyai82Bx9eVRSReJbDHE(L-k{bGukfgI!n#RrH-~nXxBNC21E4@ z_A1LNI!@#H7ByF~f0lN|QFD1D&cX0=hZ=W02a!>JLDCF!N8Sm1MN%3WvKnUYJNkK= zN1twgB5}gWMSj!iGp$Zq&%_g`xq%&;{I2ykYMNs8l$QRWrd+IM?4Q(>T&%PE7s*vT zlal#vE9>Ki|6-LXKSAFmb|~v>k$PBV5)NSRM{?FG%b8YFP{Vo8@wA47c|MK z*$z#Sr+7n>qzT&I3A?y-v|5kxlFXlhWQg^2I|HqTS|{<0)HH3ZR+*@|noHl@%S4U) zV2y;#B-2p3v^@*SA&jz&PFDKah4ZOoww%-qZlbdw7s=6S`2Bv2mn+F+%qGcoZY151 zTci*3k<38vN<`&nSwET~cH*%gqh==Zk3^IQHCGYgGINVjv-BhWQq|l4C7XL_OUqDm z7(4UQh?cS>t0!ye73uj9dQ6@ZRVK-RwMojVN~_`6hhIUR4LOe0O4?O}ng(Gy7BxvW zpw9BQBn%mj{4B9ro0_wTRavQjCkYP3T_#99)@L7PrPQYpHFIZcS&gV!knD)oJ`AAMeGrLxLyjP8$zL_S zIMK^I9YsxEJQb2PH;lv^etN#cGjWnCczz+Lt?Ber8t)BCug;)mK{oBfnbdS&qV1YR z(gAr@T53pD?8n59A=$7NNCucqt6^wq3X~qjvPL2j^JbF6YmV#`cpY^w#?S3{>^M1FJZ4ESANw&AdFMNaiNvm+H z^j##^Q2K4GO?ybv-*C3=hSffjK`347e1Ig$9VLfI?(TK69fIa>k}p9{cB`W#_fVhX z(ELME>z=cHCv$>zezxD)-iIei8jaWQsZY_$_o0*hJ*(5yyzq9hTb&_!JIC4nW$Rgz zfJQEMa*^cMYbX1!3tpvXmmyBJ3#j3BYW#8jlG~MgB&D33ZO0LH_erMKa<+eQ@Q{Ae ztkd|3C+Ydi*&aXfw90#1pV1q#x3G&nTAonzrm)VYrzGP&o$VR&89fI*(slVc$-qrY zUXYZw`uQdOr1WyJ-9}4aQB$jqi#^x9r{+WfeW&XK$=T{kK9iJO;%vVsNgxTv*UItm zY%AyMhW}z8^}Ug^{gmWVE^#G#oYdL&2AX8lv|XS(tBlmdCv&#_f+iC+sbQ7sJ$4r) zj~?S!H$n1~oC1+dQj~s9uhp?Ir(NnA%e z+k8>O9weh+)d8e0$(3-ODFaB71?aaP14(Y8KCdP&=@e?h z5t)5KB1v|E3eepyUy)r;lC%p}5Ues=S(bAJ z%_KXi*&3&Ok@V`KJ&@ z@Bm5ar+Tw=h&4=~#@T+Ca)cxysf(Q)B^ic(ZiJQk7)iGlPWE5iI!?0ljkE1ANHP>Z-XxGS2dRlVq3W`4&l_a<}pdb zShadevar3AZ6P$zNa|RAUX!%7$Xk-AirQoEIbKb%o?b=If1u_mo_d5J4nLCgvHX0d zRi?*SK@dM*skz!yJ%1x9kF35DHT+Ji;h9|QdlJX;i8CcAi4v#si7Q%~{yI~fsmY3+ z!)Ew#p{74p5Q&ylBtEWAwms0KCRuq={iGvtb-+#!C-L+oA%E))a7L0|cuX$2#gJT9 z+cQ(+gLWN8Sy@Sj-&H?3NE-Y<(hd6rsdEmt>k-Nd#{MTKtq#CSVm=p1vxREqN^;Bc zoSWnt)?D#y$iNrc_B_=5oTpjKjpW;3&h|aOA$c)^vZKyNO%f2fz06ON`n2wm3X*KS zt7R1;i9}1K749S-kV#~xSD2*qebp2pnUqrZnI0q&A-bj%C28GS`?(lN&|}pYa@ks~ zic_l89sf zB?Vq;&l}B1tH+wsYW_BjmS!aP+_e>k)GOs;j~`!ZYBtvqY(X+RhxTeql7v2b(rio8 z9eZPm4L_15R*$tOafsJg?LaaL@gp(ckz_O0Tp^uEVmqj&GfB^hI;LGX2V>z`Znguc zX@dTdj2%dlrjw4lA^ZC~*)vHuYMvunuefN zat=Gs54iuCNb&$#-4`{SOcJr#*>)27c^b)qrn+06MKa0iu_%(PZ}k)~mt>Z^i~U#7 z=abB-h?~pnxZmLDtVTALb#M_i2d#X#gk+JG50{cux3b?d`l*D{r(-N)sR?|m*?1+% ziw;iq(pQn>!yJ^au-A|b!TwOjeLcy~8cz0iK{t@Ru=39)l4zXPWh^$cK3%MKZJ{RA zs?Q%Jm8?v%jaL33a{Bv|#5uQD9v|FAHdv z_?x827VT$4E`ms%k5Us4&zBIH$4K&8o==cG_(wW;yP5#Lq>N8YQ)?OC(31JKOiPmq{GqN3!2l z60d>k`8vsbSc&HwjJh_N^;?FU)FfD%TO@bT3bBeKDg0Ia+$Q;kJ`~LzlEzj)-zC|4 zLeHLtME^h1!Bu7tKue|VhQ#13BkR{AYMk3@uf~(ivEt_m ziDx@K#~D(lh>LyhJf&tAPPGyV&q*Gm?Q*^_Wc**+8!xHJa$o!K6??u!GriAzO_H~% zW}7#(I*pTy^y(XG#$qLsoA$TVcwf@7cu&nNOY?zb`fhzn{)txeDrtQT$$Zk$epmUK zR$b5IR{ssoL?nB0){}hrjec%GBW*Xtc2?{2gH~rOtDhu=alerlRzK-y(N8@K{~{@K zUB|*!A@L;j;ir0bAo-eGGk_z>6%g5dIaWxV-9Ij9KRc0l*0R3rAeo9gBH5ET(@#pQ zxe`$>)bv6P&)S{u=9hT9Si99qo4)=}2lOXbm%v zxcWKU>ywe>|JeKTK(B}H|M{%<-u6w4q9|!YNKx8L3nd{cOW7k-)@(^ql0B7uUqU=~ z9!d7>Ysu1P$sQ7t=y%SXd7b&Z=YHOIsXU(N_jUi7JFm}~Gc#w-oH?_;yS^!2Q!Opw zPK~65n<-Llx%96(iVWSGb_Zz1-Xk?Om-$Y8<$T3ww9`lHhYd7Ur8+6|5n1&u75S=H z+9HhVB9GBnz%<)xUV9Q}J~`7uk@^m4si_W`B45sGr8KWK zP1~KL?Um;72GYA*E7JXOsn<@5^rcalHFIZ0-WVz8sCQB1T^eP0FT0&0BdUt0x2qyM zR}-YYB5&*=fqO_9lzifv1GMNS<> zCy+^o-BlV(_Mkl=+GE{QY3}VPBlX^jR2xUT6_jcpMINP9HAePRWX4%3^E)92C^FO0 z4AH#i9GEt%zoh+BrCIW|_}Ie~x#LYaH+YyL-N&ZPO7h~4QsmBG(OB0eW6^3C4TI;SeK=e{E6)3p{a4U;cEoT12B zccjf=>KA8esz)!S6-CmPaf&Qzo3h_M8L!CXHEHuc`}2zINAtlkWC1Qvyn3dT`7TA~ zek(ohZbfRik@{XmCVeJlzE6?woP7SJ$br8K=LZ#ekkvo%y_|$aCb+GcsS1 z18CQS%kzpN6J8e?zNW~o7YXu)A`f38eBM%I0IdV?D$P5Jyz!XOyst=0T5DqK_kki~ zX)lRShJ2*Rubo7OOBJd7uy~cr71{b4K|WRFdGfKD^XH0mSuMyHiu9xY#qX8 zgl458LujqZ`ZkKZwvSkV9~JqeuB2L}$bo~UJgXHMO6%BMo?jHXzeUC(YZU1~>toy& zYZZBb{CQ5bPLYot=RXxW+i^C#?%T-F-*j`x18Gx}>`zjWk7{Pj0`g9)DDtmr!nvj* z<660qT9Mf&3r!tGx>uGG)>C8=^#Z<2USE;dXcoY=*iw;0I*>m`_NS2|RWBEsCWQ{Cj{A7k%Gt^hWww5}BD>OzjCbgcP~=GRAqOp^Q{{^6(L8N_BX96{MUoB~qe!bUbcURI!D)&t z`nP;p<7`EixfVQEkwZ!AR#UykE3(w}f(eSePCfuz$cc(vP(@@oNs(`_6b+xO^7;HB z^30dhTNX-lCCzHNr%YAkE{9yANDG>kFwJF(^qD1l;#VlroYpsZ#p6mvTGLu3BhwUl zlvdRkxk`~Dn!htLU6IcwNnSG)IhCv^Yr@rvJoAQFwrdo5bd(_1DY6^QYFVRhP-MYx zX)}Z@z>SKW+KzVLs0D9TWL8s=;hlpx=DYG5v^XrPVeKu*4w-uSazgXi1 zicFd-cc~UBa^G{3`v;0N9Zr^?+TtTcPJdi-U!q8pCN#StJHJek8))~Ikxv!*@}{)e zg-WQDQfYaWfW53#JtL z{bKPqGKvf#ubcT)P-H98F-9sWQj=`mUR0hcioEfP)V;bQwaCNgR5cYjcU!S+n<>)4 zA+;5mKy!Sy5_J@5<;q-7kprkLczmy~Nag90`xc4}r8ed7uryR;%w(b2T9Lh}1^1;| zG*RRl(!(KyY^%sgjm6t(t;lYV2%lXPd2_rV?G$PGg0#+Viu^&|>CwcwgCax7vax)+ zDl)8+v`%+L_N0Ew<8n_$4kwAR{`66#%@9HMQl!}hQl7nc!#Ftl-?9p^kJ4N?OswBP zMSj~uT4!HPRlBFGAMU3#chFpzt>6BN6uv9AZjd7T)7Zpks18u%&n;x$G(?dubaHqt z*}9>M)TMT3G?%=r?7G&mN;A-nmB%S^=>f71Ia*VFzmR6f)Lvth zX3MHli<1=@=#WzsY5TL#oT|v&W}+>pDKfB+oS_=4$bkDq8fPogfL6L#KIbU1{V!tY z$0<_LjppMOIn8--=P5Fs)(@G_1Vuh_az0;?6KS5pG!qrs@mw6*<#+gO4fl?;~VS{BcEwwWHG`Khij;$X&Fm z&vxtuMV_L0H_PxPMSA@rnlN9HnJr|-@v-z#SZUR7istz9tZHx)T^NzzQcn=YeMuZn!!U1(}6a>OF3MIA-SlARRkWETTb`r6lp+fR_x^tSEK{! z80-8Iik#@ywT@C`60P>IW*(!+du~POSVg*#r^i0hNJYle2+N#LRAd<49%4SD6=~wm z?VO~@jW0Z ziqxPMrn$pPLT*%K zAL!^e;DbmY%x$i3HBe#(m{Q{*q&xp_ez9I*V6x;iOA_KRS z6`>CmnMM7JedEQ7yx&-6waXP*-Ah{VQ$?nd2g0+_&lI_h`uke4Y%3I5v%P5V7m6I& zLTJ8HhR3+C6*-m0rb<84eMLns>r8hd2>DTw8(vP^o3=kIvfizNu2bX;Di3r1 zQ;|0)FV;iT0VC01%8M;qLXltI7p+Sxax0xn;d*5hss6MeSw+5g_OPJCfJVfh#<)sd zWDmMfX=)rGeXxQer@tWfr;;MaED?!SQKXROGTh&*Dbk$I#&1E=sG-Q&1!=P_A$1j5 zzc<-TO0|U|cbp*Y-bj%9|N}_EDt&g<@&P(*GUOaP-F`?UW`)Y%4a0i7)2iGD&;vvk%`pqJQAIz$RDm=XDHI2`WH*%EJYTz zmwtMVA~(`Z;ci;5J6Dk%j*>Q=pvW&Yqi5}%sK{e?N$!&r`8_E#Qxxe>JBFNUsv<`> z7u$P@B6rew!L_(jk0;oqc4-&SdR*70^l zZlv6KM7v9oqv$+jFX{!e6uGI5*u#evnM5>;X>58zk$0Vao~OvX*&@|v6q(y!<_^y( zay|7FZi^QbdE#tootG3TaDC@xMb2_Gud1!PmwFSgEx)cb-N|Z=C%gKlA`QFKDmvBc zZAI#Lle)jJ$j-B+$1PH%;iFQ*4>hlGqzQaO_G3kUeMH8=C7P;(v$V?;8A_|5JQjSS z$Q$HcuqJ$_$gX2#eSU=^LtT4)rAVV5vOfQ7e(H6a$ciIU$+jqR*^AnMW5Fxax{6c?9=|K$iGfYnqeg8#O@g5M$z11Tk=~f zDe@DgVt=EWB7JGyhUK%FBGtbTO{k;D3pBrAiPcl2nJZ6yMJ{h6CEP-hAL|O|hKf|# zN4$%z6sbQz)(;yilBAU-*371gw52}CHEpKI#k7O4n&jM4ktNGTTeeeV0?m$@&kl-Q zQCVuSqas_MDE(q*MT*=?=`M<_a($8!|c zwEn{-?5fCiw5Q2(?ykr(x_iqsJrx;1qaNFhUW)vSP9%Oz(&(*7;|e1AJr((Cg3K%X zDRRMc(og#AUCjaJS__o6$+*xC(>SH6&X#V6}QEiiqs{YKZ9~VTahnlt($4i)7*Qkk(JW(m1bRI zsn1_H&mmJ4Y3bVH5=DNbe#+z5Ws3YjUJ7%* zQjr#}zfV)->9Nu;rYmwdola*ze5N9O$v>Px$n}bRNH=7;7Pl$#7LB==5X~KmTr^*5 zI!lq!*9vlvA_v|k$ZSO}AblRcn7)dx$bPR1%>#-oUMM~8Aw^~{6%Btxkt@<~6D>MBKge3`VpV6`GuX#bS^#V?BV zcb0aIB44|G&$WuQdS5uNQ{*kO3I8Uk{;9|;I@85km+Xi!?%X|OtvjvADpspPN7$&3somL=siZUyI*+l6BK2vPihENvMc&+5tZ{Wkc5$mTH5B=I zJ=KeLIcq8Ma#l)MN0Iily22%_r^xVq1gWpcixWk|w@~CbC)F*r7Ecb86UdE}<{Mfo zV9p+CO)I60Y^^kp(=3~jCW?GX>o%;tO%*xV%?Fz)(s4&APYXq6?;tJMQjwa+i$-my z$ecLid3;HR|#jalc6}gjE-dOSj z6q)DbGfNE51&&%d7{?Wv}m>R?5NlKo-LJXDdyh3$}BK>MhD_^P_bu4Ke@1tF=G_~%QcE3WAz2?bY(v^yIrgdzV;WR~hlQcN5 zs}%WSq)2SKA{{@KR36#iAv2Vw#~hi}&Q#>O*TpNiR*_bR$=Q|b6&d}3oI1Nvk!#nd z?M=6v6&a8biQTHm-e1#gFY@bdQ^e5S(qqZnxm%IGguF_v{D2}^@)-Gi_>+n}KS_GQ zb1KyaG;jKVQoW!wV}41QWrWOEr1|NxuKuPXkGi$NcN7`y*0tVMl^UnCWIcSOp3Lz<9Mr z@&ldRV?Ns}GW->3)7FZdy+p=~ofLU}v`AwYmB#BN=PzjQudUMjMjk#(teqlz(C*1X z%4=6eZlYNm>-_GD)ZSk1Ky_5486kzFKOWh)uDtEjO=-Sx`#Zf9S@)J$q~40mrW0kH zS06>*pwXO1kiLpM;P~vR$ac-7r|hLj>-(i%{S>)jxLD)~tBDbk^?a6Ukht!V7#x*w=W z|97SD3|6GwNuq~C6zM^JLQ`t5gA}>*RH?-wikvw`kV6$&NV_>)!eJiyS?t(wMFzhs zdr5~Ya?oCK>g-6>sC{Y1!T0r!Rb&vIvS4JSrdmi|3cnD0f+FA0yGAV4QHngfO2*vL zid;QVN;pQ5OD9SzpQOl9)Kj>S+voRzp-k<)0;muaq4WT4xZxk{0lZara! zA}2pD<+)msVIN3d*D6w*R;buUU9ZU7FG`tjRHRKyDf7*WyfRN#TyIt6n5QMLI~18# zQ8?eFNJW}Av5mT0k?GEA-KWTTo25+h7kZgWk;kS>?oTMv@&oA?PbzYf8`0({vX;)A zaJ`;V--^fXMT%_kv}opsicFy~j#GWC$hf2+OBHG0G~p9P{-oQKtQ(&x za$2FZ@(M*BdQYVBr6TKVPzzEmzE)&B`2Z}jm5LlSMpFHt$R}>rwn~u+ZckygBFB(V z!ZrOxku`MEfLE>8DDn!mGMD*xMdp(Aw=YkwQgYB&l-l6%;wp?J`tSWD4EZ;Z#)=Iesm@mOz?NO_5jW6an+8 zrO4q+Xm6dQT3eAP7p3j_@XZyO|0j(yM6;zLL#L6gBV=nuW=)n7HdSQ(?SeE@q$>3t zmU9b5mL4uhD@8t_vzJ`L?G<^LYzxb|wIa9AkW@P>Qe%zewTmJBHgKkT(9nmJX}Tm-kyr=PHSIG(@T-I zPBZ%`Qp=s|-cym)bh?I1*iVu3zDn9vwY?R&YfJfN$G(a*C*Ov(_W(sEuvb7kvqKbl zg(Sx1IY^P|ZcpJ5Me4cT_F;;wCBKf_;xI)%ptfKOd88uS(w&j<N-A6sbkNDEGnh73oN`5=Jgi5*&1W?rMn zWVdR4ogxdIg}gzLZAmw{gf}VjP!s8uwYi1k8NExxdA*>>+}1)fUy*Yvh|a&NNNu9we(|~@f4F(v zn~HoxR-I+|wj%w>+OYrpt|Dt`WocKE;d_ega&+4CB4n{59ov$nA!LOjH_*Ab{R#PA zkqPd;-fxODx=noAwTe7JV-v5_dZfSW%j;CCm%JhGOZ=&+M$`Hs&o9<1a!Er$OqYEd z8TzAhR(q$cubxn3xT8ra^8K!KH;~Gl?gAVB3$0m=B&0xTroJz|yGW6y^ztoBtb!to z+lUM+DsnN6!c0?1k!NU4hBd0PA`{3;u+Lvrk?D!F_1>!~auy*xtzaI_YL(`V1H=M&&FU`1{v z%g;6S$PX?rj~u@!OjYf-w3$GXAFNWnY0I?P@mX4*SL8riL;Ifk#W2n5nD69$lHrQ9 zYA*KBBmD_si5;#qdkvG^k5JBAFD6SuxqGBPt$46*jMP-G&^i+HIYE)$7sxE&L`5!n zN7`bHB6AwZczUuT+f|iO<}^hv|4`l|Izy3Hf0I;aD{|gA$^BeKn$i6xF3)&H&KoCM zcb+2GJLG&t<}Q{Oz%EeaRI;?pXObd2(YZ=qi<_*-Xj&iRHO~uGV)ZC@Zk?%0)2xcT z5_YlD9I(H<&2p*IJb8%J;xa`l+$1OAFV|ElTG!$=y{i
FlwK_#57skRv^b)TU$ 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�JfgM9 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 diff --git a/build/CitizenFX.Core.Client.xml b/build/CitizenFX.Core.Client.xml deleted file mode 100644 index 0608899..0000000 --- a/build/CitizenFX.Core.Client.xml +++ /dev/null @@ -1,67891 +0,0 @@ - - - - CitizenFX.Core - - - - - An event containing callbacks to attempt to schedule on every game tick. - A callback will only be rescheduled once the associated task completes. - - - - - Returns a task that will delay scheduling of the current interval function by the passed amount of time. - - - await Delay(500); - - The amount of time by which to delay scheduling this interval function. - An awaitable task. - - - - Gets or sets the position of this . - - - - - Sets the rotation of this on the map. - - - - - Sets the scale of this on the map. - - - - - Gets the type of this . - - - - - Gets or sets the alpha of this on the map. - - - - - Sets the priority of this . - - - - - Sets this s label to the given number. - - - - - Gets or sets the color of this . - - - - - Gets or sets the sprite of this . - - - - - Sets this s label to the given string. - - - - - Gets the this is attached to. - - - - - Sets a value indicating whether the route to this should be shown on the map. - - - true to show the route; otherwise, false. - - - - - Sets a value indicating whether this is friendly. - - - true if this is friendly; otherwise, false. - - - - - Sets a value indicating whether this (Player) is a friend. Toggles a half cyan circle on the right side. - - - true if this (Player) is a friend; otherwise, false. - - - - - Sets a value indicating whether this (Player) is a CREW member. Toggles a half cyan circle on the left side. - - - true if this (Player) is a CREW member; otherwise, false. - - - - - Gets or sets a value indicating whether this is flashing. - - - true if this is flashing; otherwise, false. - - - - - Gets a value indicating whether this is on minimap. - - - true if this is on minimap; otherwise, false. - - - - - Gets or sets a value indicating whether this is short range. - - - true if this is short range; otherwise, false. - - - - - Removes the number label for this . - - - - - Removes this . - - - - - The Buttons enum used for creating s - - - - - A value type used for checking if a sequence of s has been pressed. - Check if the combination has been entered with . - - - - - Gets the calculated hash of the Sequence - - - - - Gets the length of the sequence - - - - - Creates a from a given list of s. - - The sequence of s in the order a user should enter in game. - There must be between 6 and 29 inclusive s otherwise an is thrown - - - - Gets the memory address of this . - - - - - Gets or sets a value indicating whether this is currently being rendered. - - - true if this is active; otherwise, false. - - - - - Gets or sets the position of this . - - - - - Gets or sets the rotation of this . - - - The yaw, pitch and roll rotations measured in degrees. - - - - - Gets or sets the direction this is pointing in. - - - - - Gets the up vector of this . - - - - - Gets the forward vector of this , see also . - - - - - Gets the right vector of this . - - - - - Gets the matrix of this . - - - - - Gets the position in world coords of an offset relative to this - - The offset from this . - - - - Gets the relative offset of this from a world coords position - - The world coords. - - - - Gets or sets the field of view of this . - - - - - Gets or sets the near clip of this . - - - - - Gets or sets the far clip of this . - - - - - Sets the near depth of field for this . - - - - - Gets or sets the far depth of field of this . - - - - - Sets the depth of field strength for this . - - - - - Sets the strenght of the motion blur for this - - - - - Shakes this . - - Type of the shake to apply. - The amplitude of the shaking. - - - - Stops shaking this . - - - - - Gets a value indicating whether this is shaking. - - - true if this is shaking; otherwise, false. - - - - - Sets the shake amplitude for this . - - - - - Points this at a specified . - - The to point at. - The offset from the to point at. - - - - Points this at a specified . - - The to point at. - The offset from the to point at - - - - Points this at a specified position. - - The position to point at. - - - - Stops this pointing at a specific target. - - - - - Starts a transition between this and the new camera. (Old (incorrect) function, please use the overload function!) - - - - - - - - - Starts a transition between this and the new camera. - - - - - - - - - Gets a value indicating whether this is interpolating. - - - true if this is interpolating; otherwise, false. - - - - - Attaches this to a specific . - - The to attach to. - The offset from the to attach to. - - - - Attaches this to a specific . - - The to attach to. - The offset from the to attach to. - - - - Detaches this from any or it may be attached to. - - - - - Destroys this . - - - - - Gets the memory address of the . - - - - - Gets the position of the . - - - - - Gets the rotation of the . - - - The yaw, pitch and roll rotations measured in degrees. - - - - - Gets the direction the is pointing in. - - - - - Gets the up vector of the . - - - - - Gets the forward vector of the , see also . - - - - - Gets the right vector of the . - - - - - Gets the matrix of the . - - - - - Gets the position in world coords of an offset relative to the - - The offset from the . - - - - Gets the relative offset of the from a world coords position - - The world coords. - - - - Gets or sets the relative pitch of the . - - - - - Gets or sets the relative heading of the . - - - - - Clamps the yaw of the . - - The minimum yaw value. - The maximum yaw value. - - - - Clamps the pitch of the . - - The minimum pitch value. - The maximum pitch value. - - - - Gets the zoom of the . - - - - - Gets the field of view of the . - - - - - Gets a value indicating whether the is rendering. - - - true if the is rendering; otherwise, false. - - - - - Gets a value indicating whether the aiming camera is rendering. - - - true if the aiming camera is rendering; otherwise, false. - - - - - Gets a value indicating whether the first person aiming camera is rendering. - - - true if the aiming camera is rendering; otherwise, false. - - - - - Gets a value indicating whether the is looking behind. - - - true if the is looking behind; otherwise, false. - - - - - Shakes the . - - Type of the shake to apply. - The amplitude of the shaking. - - - - Stops shaking the . - - - - - Gets a value indicating whether the is shaking. - - - true if the is shaking; otherwise, false. - - - - - Sets the shake amplitude for the . - - - - - Initializes a new instance of the struct. - - The icon style. - The icon number, - if is allowed range is 0 - 99 - otherwise allowed range is 0 - 9. - - - - Gets or sets the number to display inside the icon. - - - The number. - if is allowed range is 0 - 99 - otherwise allowed range is 0 - 9. - - - - - Gets the memory address of this . - - - - - Gets or sets the position of this . - - - - - Gets or sets the position where this points to. - - - - - Gets or sets the icon drawn in this . - - - - - Gets or sets the radius of this . - - - - - Gets or sets the color of this . - - - - - Gets or sets the color of the icon in this . - - - - - Gets or sets the near height of the cylinder of this . - - - - - Gets or sets the far height of the cylinder of this . - - - - - Gets or sets the radius of the cylinder in this . - - - - - Removes this . - - - - - Determines if this exists. - - true if this exists; otherwise, false. - - - - Determines if a specific exists. - - true if the exists; otherwise, false. - - - - Determines if a refer to the same as this . - - The other . - true if the is the same checkpoint as this ; otherwise, false. - - - - Determines if an refer to the same as this . - - The to check. - true if the is the same checkpoint as this ; otherwise, false. - - - - Determines if 2 s refer to the same checkpoint - - The left . - The right . - true if is the same checkpoint as this ; otherwise, false. - - - - Determines if 2 s don't refer to the same checkpoint - - The left . - The right . - true if is not the same checkpoint as this ; otherwise, false. - - - - Gets or sets a value indicating whether this will be drawn. - - - true if enabled; otherwise, false. - - - - - Gets or sets the color of this . - - - The color. - - - - - Gets or sets the position of this . - - - The position scaled on a 1280*720 pixel base. - - - If ScaledDraw is called, the position will be scaled by the width returned in . - - - - - Gets or sets a value indicating whether this should be positioned based on its center or top left corner - - - true if centered; otherwise, false. - - - - - Draws this this frame. - - - - - Draws this this frame at the specified offset. - - The offset to shift the draw position of this using a 1280*720 pixel base. - - - - Draws this this frame using the width returned in . - - - - - Draws this this frame at the specified offset using the width returned in . - - The offset to shift the draw position of this using a *720 pixel base. - - - - Gets or sets a value indicating whether this will be drawn. - - - true if enabled; otherwise, false. - - - - - Gets or sets the color of this . - - - The color. - - - - - Gets or sets the position of this . - - - The position scaled on a 1280*720 pixel base. - - - If ScaledDraw is called, the position will be scaled by the width returned in . - - - - - Gets or sets a value indicating whether this should be positioned based on its center or top left corner - - - true if centered; otherwise, false. - - - - - Gets or sets the size to draw the - - - The size on a 1280*720 pixel base - - - If ScaledDraw is called, the size will be scaled by the width returned in . - - - - - Initializes a new instance of the class used for grouping drawing Rectangles on screen. - - - - - Initializes a new instance of the class used for grouping drawing Rectangles on screen. - - Set the on screen where to draw the . - Set the of the . - - - - Initializes a new instance of the class used for grouping drawing Rectangles on screen. - - Set the on screen where to draw the . - Set the of the . - Set the used to draw the . - - - - Initializes a new instance of the class used for grouping drawing Rectangles on screen. - - Set the on screen where to draw the . - Set the of the . - Set the used to draw the . - Position the based on its center instead of top left corner, see also . - - - - Draws this this frame. - - - - - Draws this this frame at the specified offset. - - The offset to shift the draw position of this using a 1280*720 pixel base. - - - - Draws this this frame using the width returned in . - - - - - Draws this this frame at the specified offset using the width returned in . - - The offset to shift the draw position of this using a *720 pixel base. - - - - The s Contained inside this - - - - - Initializes a new instance of the class used for grouping s together. - - - - - Initializes a new instance of the class used for grouping s together. - - Set the on screen where to draw the . - Set the of the . - - - - Initializes a new instance of the class used for grouping s together. - - Set the on screen where to draw the . - Set the of the . - Set the used to draw the . - - - - Initializes a new instance of the class used for grouping s together. - - Set the on screen where to draw the . - Set the of the . - Set the used to draw the . - Position the based on its center instead of top left corner, see also . - - - - Draws this this frame and all its s. - - - - - Draws this this frame and all its s at the specified offset. - - The offset to shift the draw position of this using a 1280*720 pixel base. - - - - Draws this this frame and all its s using the width returned in . - - - - - Draws this this frame and all its s at the specified offset using the width returned in . - - The offset to shift the draw position of this using a *720 pixel base. - - - - Hides this instantly - - - - - Converts the inputString into a string[] (array) containing strings each 99 or less characters long. - - The string to convert. - string[] containing strings each 99 or less characters long. - - - - The base width of the screen used for all UI Calculations, unless ScaledDraw is used - - - - - The base height of the screen used for all UI Calculations - - - - - Gets the current Screen Aspect Ratio - - - - - Gets the width of the scaled against a 720pixel height base. - - - - - Gets the actual Screen resolution the game is being rendered at - - - - - Shows a subtitle at the bottom of the screen for a given time - - The message to display. - The duration to display the subtitle in milliseconds. - - - - Displays a help message in the top corner of the screen this frame. - - The text to display. - - - - Creates a above the minimap with the given message. - - The message in the notification. - if set to true the notification will blink. - The handle of the which can be used to hide it using - - - - Translates a point in WorldSpace to its given Coordinates on the - - The position in the World. - if set to true Returns the screen position scaled by ; otherwise, returns the screen position scaled by . - - - - - Creates a loading prompt at the bottom right of the screen with the given text and spinner type - - The text to display next to the spinner - The style of spinner to draw - - , , and all see to be the same. - But Rockstar always seem to use the in the scripts - - - - - Remove the loading prompt at the bottom right of the screen - - - - - Gets a value indicating whether the Loading Prompt is currently being displayed - - - - - Determines whether a given is Active. - - The to check - true if the is Active; otherwise, false - - - - Draws the specified this frame. - - The - This will only draw the if the can be drawn - - - - Hides the specified this frame. - - The to hide. - - - - Shows the mouse cursor this frame. - - - - - Gets or sets the sprite the cursor should used when drawn - - - - - Gets or sets a value indicating whether any HUD components should be rendered. - - - - - Gets or sets a value indicating whether the radar is visible. - - - - - Sets how far the Minimap should be zoomed in - - - The Radar zoom, Accepts values from 0 to 200 - - - - - Gets a value indicating whether the screen is faded in. - - - true if the screen is faded in; otherwise, false. - - - - - Gets a value indicating whether the screen is faded out. - - - true if the screen is faded out; otherwise, false. - - - - - Gets a value indicating whether the screen is fading in. - - - true if the screen is fading in; otherwise, false. - - - - - Gets a value indicating whether the screen is fading out. - - - true if the screen is fading out; otherwise, false. - - - - - Fades the screen in over a specific time, useful for transitioning - - The time for the fade in to take - - - - Fades the screen out over a specific time, useful for transitioning - - The time for the fade out to take - - - - Gets or sets the size to draw the - - - The size on a 1280*720 pixel base - - - If ScaledDraw is called, the size will be scaled by the width returned in . - - - - - Gets or sets the rotation to draw thie . - - - The rotation measured in degrees, clockwise increasing, 0.0 at vertical - - - - - Gets or sets a value indicating whether this will be drawn. - - - true if enabled; otherwise, false. - - - - - Gets or sets the color of this . - - - The color. - - - - - Gets or sets the position of this . - - - The position scaled on a 1280*720 pixel base. - - - If ScaledDraw is called, the position will be scaled by the width returned in . - - - - - Gets or sets the size to draw the - - - The size on a 1280*720 pixel base - - - If ScaledDraw is called, the size will be scaled by the width returned in . - - - - - Gets or sets the rotation to draw thie . - - - The rotation measured in degrees, clockwise increasing, 0.0 at vertical - - - - - Gets or sets a value indicating whether this should be positioned based on its center or top left corner - - - true if centered; otherwise, false. - - - - - Initializes a new instance of the class used for drawing in game textures on the screen. - - The Texture dictionary where the is stored (the *.ytd file). - Name of the inside the Texture dictionary. - Set the of the . - Set the on screen where to draw the . - - - - Initializes a new instance of the class used for drawing in game textures on the screen. - - The Texture dictionary where the is stored (the *.ytd file). - Name of the inside the Texture dictionary. - Set the of the . - Set the on screen where to draw the . - Set the used to draw the . - - - - Initializes a new instance of the class used for drawing in game textures on the screen. - - The Texture dictionary where the is stored (the *.ytd file). - Name of the inside the Texture dictionary. - Set the of the . - Set the on screen where to draw the . - Set the used to draw the . - Set the rotation to draw the sprite, measured in degrees, see also . - - - - Initializes a new instance of the class used for drawing in game textures on the screen. - - The Texture dictionary where the is stored (the *.ytd file). - Name of the inside the Texture dictionary. - Set the of the . - Set the on screen where to draw the . - Set the used to draw the . - Set the rotation to draw the sprite, measured in degrees, see also . - Position the based on its center instead of top left corner, see also . - - - - Draws this . - - - - - Draws the at the specified offset. - - The offset. - - - - Draws this using the width returned in . - - - - - Draws the at the specified offset using the width returned in . - - The offset. - - - - Gets or sets a value indicating whether this will be drawn. - - - true if enabled; otherwise, false. - - - - - Gets or sets the color of this . - - - The color. - - - - - Gets or sets the position of this . - - - The position scaled on a 1280*720 pixel base. - - - If ScaledDraw is called, the position will be scaled by the width returned in . - - - - - Gets or sets the scale of this . - - - The scale usually a value between ~0.5 and 3.0, Default = 1.0 - - - - - Gets or sets the font of this . - - - The GTA Font use when drawing. - - - - - Gets or sets the text to draw in this . - - - The caption. - - - - - Gets or sets the alignment of this . - - - The alignment:Left, Center, Right Justify - - - - - Gets or sets a value indicating whether this is drawn with a shadow effect. - - - true if shadow; otherwise, false. - - - - - Gets or sets a value indicating whether this is drawn with an outline. - - - true if outline; otherwise, false. - - - - - Gets or sets the maximun size of the before it wraps to a new line. - - - The width of the . - - - - - Gets or sets a value indicating whether the alignment of this is centered. - See - - - true if centered; otherwise, false. - - - - - Measures how many pixels in the horizontal axis this will use when drawn against a 1280 pixel base - - - - - Measures how many pixels in the horizontal axis this will use when drawn against a pixel base - - - - - Initializes a new instance of the class used for drawing text on the screen. - - The to draw. - Set the on screen where to draw the . - Sets a used to increase of decrease the size of the , for no scaling use 1.0f. - - - - Initializes a new instance of the class used for drawing text on the screen. - - The to draw. - Set the on screen where to draw the . - Sets a used to increase of decrease the size of the , for no scaling use 1.0f. - Set the used to draw the . - - - - Initializes a new instance of the class used for drawing text on the screen. - - The to draw. - Set the on screen where to draw the . - Sets a used to increase of decrease the size of the , for no scaling use 1.0f. - Set the used to draw the . - Sets the used when drawing the text. - - - - Initializes a new instance of the class used for drawing text on the screen. - - The to draw. - Set the on screen where to draw the . - Sets a used to increase of decrease the size of the , for no scaling use 1.0f. - Set the used to draw the . - Sets the used when drawing the text. - Sets the used when drawing the text, , or . - - - - Initializes a new instance of the class used for drawing text on the screen. - - The to draw. - Set the on screen where to draw the . - Sets a used to increase of decrease the size of the , for no scaling use 1.0f. - Set the used to draw the . - Sets the used when drawing the text. - Sets the used when drawing the text, , or . - Sets whether or not to draw the with a effect. - Sets whether or not to draw the with an around the letters. - - - - Initializes a new instance of the class used for drawing text on the screen. - - The to draw. - Set the on screen where to draw the . - Sets a used to increase of decrease the size of the , for no scaling use 1.0f. - Set the used to draw the . - Sets the used when drawing the text. - Sets the used when drawing the text, , or . - Sets whether or not to draw the with a effect. - Sets whether or not to draw the with an around the letters. - Sets how many horizontal pixel to draw before wrapping the on the next line down. - - - - Measures how many pixels in the horizontal axis the string will use when drawn - - The string of text to measure. - The of the textu to measure. - Sets a sclae value for increasing or decreasing the size of the text, default value 1.0f - no scaling. - - The amount of pixels scaled on a 1280 pixel width base - - - - - Measures how many pixels in the horizontal axis the string will use when drawn - - The string of text to measure. - The of the textu to measure. - Sets a sclae value for increasing or decreasing the size of the text, default value 1.0f - no scaling. - - The amount of pixels scaled by the pixel width base return in - - - - - Draws the this frame. - - - - - Draws the this frame at the specified offset. - - The offset to shift the draw position of this using a 1280*720 pixel base. - - - - Draws the this frame using the width returned in . - - - - - Draws the this frame at the specified offset using the width returned in . - - The offset to shift the draw position of this using a *720 pixel base. - - - - Gets the memory address where the is stored in memory. - - - - - Gets or sets the health of this as an . - - - The health from 0 - 100 as an integer. - - if you need to get or set the value strictly, use instead. - - - - Gets or sets the health of this as a . - - - The health in float. - - - - - Gets or sets the maximum health of this as an . - - - The maximum health from 0 - 100 as an integer. - - if you need to get or set the value strictly, use instead. - - - - Gets or sets the maximum health of this in float. - - - The maximum health in float. - - - - - Gets a value indicating whether this is dead. - - - true if this is dead; otherwise, false. - - - - - Gets a value indicating whether this is alive. - - - true if this is alive; otherwise, false. - - - - - Gets or sets the position of this . - - - The position in world space. - - - - - Sets the position of this without any offset. - - - The position in world space. - - - - - Gets or sets the rotation of this . - - - The yaw, pitch, roll rotation values. - - - - - Gets or sets the quaternion of this . - - - - - Gets or sets the heading of this . - - - The heading in degrees. - - - - - Gets the vector that points above this - - - - - Gets the vector that points to the right of this - - - - - Gets the vector that points in front of this - - - - - Gets this s matrix which stores position and rotation information. - - - - - Gets or sets a value indicating whether this is frozen. - - - true if this is position frozen; otherwise, false. - - - - - Gets or sets the velocity of this . - - - - - Gets the rotation velocity of this . - - - - - Sets the maximum speed this can move at. - - - - - Gets or sets a value indicating whether this has gravity. - - - true if this has gravity; otherwise, false. - - - - - Gets how high above ground this is. - - - - - Gets a value indicating how submersed this is, 1.0f means the whole entity is submerged. - - - - - Gets or sets the level of detail distance of this . - - - - - Gets or sets a value indicating whether this is visible. - - - true if this is visible; otherwise, false. - - - - - Gets a value indicating whether this is occluded. - - - true if this is occluded; otherwise, false. - - - - - Gets a value indicating whether this is on screen. - - - true if this is on screen; otherwise, false. - - - - - Gets a value indicating whether this is rendered. - - - true if this is rendered; otherwise, false. - - - - - Gets a value indicating whether this is upright. - - - true if this is upright; otherwise, false. - - - - - Gets a value indicating whether this is upside down. - - - true if this is upside down; otherwise, false. - - - - - Gets a value indicating whether this is in the air. - - - true if this is in the air; otherwise, false. - - - - - Gets a value indicating whether this is in water. - - - true if this is in water; otherwise, false. - - - - - Gets or sets a value indicating whether this is persistent. - - - true if this is persistent; otherwise, false. - - - - - Gets a value indicating whether this is on fire. - - - true if this is on fire; otherwise, false. - - - - - Gets or sets a value indicating whether this is fire proof. - - - true if this is fire proof; otherwise, false. - - - - - Gets or sets a value indicating whether this is melee proof. - - - true if this is melee proof; otherwise, false. - - - - - Gets or sets a value indicating whether this is bullet proof. - - - true if this is bullet proof; otherwise, false. - - - - - Gets or sets a value indicating whether this is explosion proof. - - - true if this is explosion proof; otherwise, false. - - - - - Gets or sets a value indicating whether this is collision proof. - - - true if this is collision proof; otherwise, false. - - - - - Gets or sets a value indicating whether this is invincible. - - - true if this is invincible; otherwise, false. - - - - - Gets or sets a value indicating whether this can only be damaged by s. - - - true if this can only be damaged by s; otherwise, false. - - - - - Gets or sets how opacque this is. - - - 0 for completely see through, 255 for fully opacque - - - - - Resets the opacity, . - - - - - Gets a value indicating whether this has collided with anything. - - - true if this has collided; otherwise, false. - - must be true for this to work. - - - - Gets the material this entity is currently brushing up against. Only works - for the material the entity is facing towards. - - - - - Gets or sets a value indicating whether this has collision. - - - true if this has collision; otherwise, false. - - - - - Gets or sets a value indicating whether this is recording collisions. - - - - - Sets the collision between this and another - - The to set collision with - if set to true the 2 s wont collide with each other. - - - - Determines whether this has been damaged by a specified . - - The to check - - true if this has been damaged by the specified ; otherwise, false. - - - - - Determines whether this has been damaged by a specific weapon]. - - The weapon to check. - - true if this has been damaged by the specified weapon; otherwise, false. - - - - - Determines whether this has been damaged by any weapon. - - - true if this has been damaged by any weapon; otherwise, false. - - - - - Determines whether this has been damaged by any melee weapon. - - - true if this has been damaged by any melee weapon; otherwise, false. - - - - - Clears the last weapon damage this received. - - - - - Determines whether this is in a specified area - - The minimum bounds. - The maximum bounds. - - true if this is in the specified area; otherwise, false. - - - - - Determines whether this is in a specified angled area - - The origin. - The edge. - The angle. - - true if this is in the specified angled area; otherwise, false. - - - - - Determines whether this is in range of a specified position - - The position. - The maximum range. - - true if this is in range of the ; otherwise, false. - - - - - Determines whether this is near a specified . - - The to check. - The max displacement from the . - - true if this is near the ; otherwise, false. - - - - - Determines whether this is touching an with the . - - The to check - - true if this is touching a ; otherwise, false. - - - - - Determines whether this is touching the . - - The to check. - - true if this is touching ; otherwise, false. - - - - - Gets the position in world coords of an offset relative this - - The offset from this . - - - - Gets the relative offset of this from a world coords position - - The world coords. - - - - Gets a collection of the s in this - - - - - Creates a on this - - - - - Gets the attached to this - - returns null if no s are attached to this - - - - Gets an array of all s attached to this . - - - - - Attaches this to a different - - The to attach this to. - The position relative to the to attach this to. - The rotation to apply to this relative to the - - - - Attaches this to a different - - The to attach this to. - The position relative to the to attach this to. - The rotation to apply to this relative to the - - - - Detaches this from any it may be attached to. - - - - - Determines whether this is attached to any other . - - - true if this is attached to another ; otherwise, false. - - - - - Determines whether this is attached to the specified . - - The to check if this is attached to. - - true if this is attached to ; otherwise, false. - - - - - Gets the this is attached to. - returns null if this isnt attached to any entity - - - - - Applies a force to this . - - The direction to apply the force relative to world coords. - The rotation force to apply - Type of the force to apply. - - - - Applies a force to this . - - The direction to apply the force relative to this s rotation - The rotation force to apply - Type of the force to apply. - - - - Stops all particle effects attached to this - - - - - Gets the network ID of this - - - - - Deletes this - - - - - Marks this as no longer needed letting the game delete it when its too far away. - - - - - Creates a new instance of an from the given handle. - - The entity handle. - Returns a if this handle corresponds to a Ped. - Returns a if this handle corresponds to a Vehicle. - Returns a if this handle corresponds to a Prop. - Returns null if no exists this the specified - - - - Creates a new instance of an from the given network ID. - - The network ID of the entity. - Returns a if this network ID corresponds to a Ped. - Returns a if this network ID corresponds to a Vehicle. - Returns a if this network ID corresponds to a Prop. - Returns null if no exists for the specified - - - - Determines whether this exists. - - true if this exists; otherwise, false - - - - Determines whether the exists. - - The to check. - true if the exists; otherwise, false - - - - Checks if two s refer to the same - - The other . - true if they are the same ; otherwise, false - - - - Gets the bone index of this . - - - - - Gets the position of this in world coords. - - - - - Determines if this is valid - - - true if this is valid; otherwise, false. - - - - - Checks if two s refer to the same - - The other . - true if they are the same bone of the same ; otherwise, false - - - - Gets the with the specified bone name. - - Name of the bone. - - - - Gets the at the specified bone index. - - The bone index. - - - - Determines whether this has a bone with the specified bone name - - Name of the bone. - - true if this has a bone with the specified bone name; otherwise, false. - - - - - Gets the number of bones that this has. - - - - - Gets a ActivePose Helper class for sending ActivePose to this - - - - - Gets a ApplyImpulse Helper class for sending ApplyImpulse to this - - - - - Gets a ApplyBulletImpulse Helper class for sending ApplyBulletImpulse to this - - - - - Gets a BodyRelax Helper class for sending BodyRelax to this - - - Set the amount of relaxation across the whole body; Used to collapse the character into a rag-doll-like state. - - - - - Gets a ConfigureBalance Helper class for sending ConfigureBalance to this - - - This single message allows you to configure various parameters used on any behaviour that uses the dynamic balance. - - - - - Gets a ConfigureBalanceReset Helper class for sending ConfigureBalanceReset to this - - - reset the values configurable by the Configure Balance message to their defaults. - - - - - Gets a ConfigureSelfAvoidance Helper class for sending ConfigureSelfAvoidance to this - - - this single message allows to configure self avoidance for the character.BBDD Self avoidance tech. - - - - - Gets a ConfigureBullets Helper class for sending ConfigureBullets to this - - - - - Gets a ConfigureBulletsExtra Helper class for sending ConfigureBulletsExtra to this - - - - - Gets a ConfigureLimits Helper class for sending ConfigureLimits to this - - - Enable/disable/edit character limits in real time. This adjusts limits in RAGE-native space and will *not* reorient the joint. - - - - - Gets a ConfigureSoftLimit Helper class for sending ConfigureSoftLimit to this - - - - - Gets a ConfigureShotInjuredArm Helper class for sending ConfigureShotInjuredArm to this - - - This single message allows you to configure the injured arm reaction during shot - - - - - Gets a ConfigureShotInjuredLeg Helper class for sending ConfigureShotInjuredLeg to this - - - This single message allows you to configure the injured leg reaction during shot - - - - - Gets a DefineAttachedObject Helper class for sending DefineAttachedObject to this - - - - - Gets a ForceToBodyPart Helper class for sending ForceToBodyPart to this - - - Apply an impulse to a named body part - - - - - Gets a LeanInDirection Helper class for sending LeanInDirection to this - - - - - Gets a LeanRandom Helper class for sending LeanRandom to this - - - - - Gets a LeanToPosition Helper class for sending LeanToPosition to this - - - - - Gets a LeanTowardsObject Helper class for sending LeanTowardsObject to this - - - - - Gets a HipsLeanInDirection Helper class for sending HipsLeanInDirection to this - - - - - Gets a HipsLeanRandom Helper class for sending HipsLeanRandom to this - - - - - Gets a HipsLeanToPosition Helper class for sending HipsLeanToPosition to this - - - - - Gets a HipsLeanTowardsObject Helper class for sending HipsLeanTowardsObject to this - - - - - Gets a ForceLeanInDirection Helper class for sending ForceLeanInDirection to this - - - - - Gets a ForceLeanRandom Helper class for sending ForceLeanRandom to this - - - - - Gets a ForceLeanToPosition Helper class for sending ForceLeanToPosition to this - - - - - Gets a ForceLeanTowardsObject Helper class for sending ForceLeanTowardsObject to this - - - - - Gets a SetStiffness Helper class for sending SetStiffness to this - - - Use this message to manually set the body stiffness values -before using Active Pose to drive to an animated pose, for example. - - - - - Gets a SetMuscleStiffness Helper class for sending SetMuscleStiffness to this - - - Use this message to manually set the muscle stiffness values -before using Active Pose to drive to an animated pose, for example. - - - - - Gets a SetWeaponMode Helper class for sending SetWeaponMode to this - - - Use this message to set the character's weapon mode. This is an alternativeto the setWeaponMode public function. - - - - - Gets a RegisterWeapon Helper class for sending RegisterWeapon to this - - - Use this message to register weapon. This is an alternativeto the registerWeapon public function. - - - - - Gets a ShotRelax Helper class for sending ShotRelax to this - - - - - Gets a FireWeapon Helper class for sending FireWeapon to this - - - One shot message apply a force to the hand as we fire the gun that should be in this hand - - - - - Gets a ConfigureConstraints Helper class for sending ConfigureConstraints to this - - - One shot to give state of constraints on character and response to constraints - - - - - Gets a StayUpright Helper class for sending StayUpright to this - - - - - Gets a StopAllBehaviours Helper class for sending StopAllBehaviours to this - - - Send this message to immediately stop all behaviours from executing. - - - - - Gets a SetCharacterStrength Helper class for sending SetCharacterStrength to this - - - Sets character's strength on the dead-granny-to-healthy-terminator scale: [0..1] - - - - - Gets a SetCharacterHealth Helper class for sending SetCharacterHealth to this - - - Sets character's health on the dead-to-alive scale: [0..1] - - - - - Gets a SetFallingReaction Helper class for sending SetFallingReaction to this - - - Sets the type of reaction if catchFall is called - - - - - Gets a SetCharacterUnderwater Helper class for sending SetCharacterUnderwater to this - - - Sets viscosity applied to damping limbs - - - - - Gets a SetCharacterCollisions Helper class for sending SetCharacterCollisions to this - - - setCharacterCollisions: - - - - - Gets a SetCharacterDamping Helper class for sending SetCharacterDamping to this - - - Damp out cartwheeling and somersaulting above a certain threshold - - - - - Gets a SetFrictionScale Helper class for sending SetFrictionScale to this - - - setFrictionScale: - - - - - Gets a AnimPose Helper class for sending AnimPose to this - - - - - Gets a ArmsWindmill Helper class for sending ArmsWindmill to this - - - - - Gets a ArmsWindmillAdaptive Helper class for sending ArmsWindmillAdaptive to this - - - - - Gets a BalancerCollisionsReaction Helper class for sending BalancerCollisionsReaction to this - - - - - Gets a BodyBalance Helper class for sending BodyBalance to this - - - - - Gets a BodyFoetal Helper class for sending BodyFoetal to this - - - - - Gets a BodyRollUp Helper class for sending BodyRollUp to this - - - - - Gets a BodyWrithe Helper class for sending BodyWrithe to this - - - - - Gets a BraceForImpact Helper class for sending BraceForImpact to this - - - - - Gets a Buoyancy Helper class for sending Buoyancy to this - - - Simple buoyancy model. No character movement just fluid forces/torques added to parts. - - - - - Gets a CatchFall Helper class for sending CatchFall to this - - - - - Gets a Electrocute Helper class for sending Electrocute to this - - - - - Gets a FallOverWall Helper class for sending FallOverWall to this - - - - - Gets a Grab Helper class for sending Grab to this - - - - - Gets a HeadLook Helper class for sending HeadLook to this - - - - - Gets a HighFall Helper class for sending HighFall to this - - - - - Gets a IncomingTransforms Helper class for sending IncomingTransforms to this - - - - - Gets a InjuredOnGround Helper class for sending InjuredOnGround to this - - - InjuredOnGround - - - - - Gets a Carried Helper class for sending Carried to this - - - Carried - - - - - Gets a Dangle Helper class for sending Dangle to this - - - Dangle - - - - - Gets a OnFire Helper class for sending OnFire to this - - - - - Gets a PedalLegs Helper class for sending PedalLegs to this - - - - - Gets a PointArm Helper class for sending PointArm to this - - - BEHAVIOURS REFERENCED: AnimPose - allows animPose to overridebodyParts: Arms (useLeftArm, useRightArm) - - - - - Gets a PointGun Helper class for sending PointGun to this - - - - - Gets a PointGunExtra Helper class for sending PointGunExtra to this - - - Seldom set parameters for pointGun - just to keep number of parameters in any message less than or equal to 64 - - - - - Gets a RollDownStairs Helper class for sending RollDownStairs to this - - - - - Gets a Shot Helper class for sending Shot to this - - - - - Gets a ShotNewBullet Helper class for sending ShotNewBullet to this - - - Send new wound information to the shot. Can cause shot to restart it's performance in part or in whole. - - - - - Gets a ShotSnap Helper class for sending ShotSnap to this - - - - - Gets a ShotShockSpin Helper class for sending ShotShockSpin to this - - - configure the shockSpin effect in shot. Spin/Lift the character using cheat torques/forces - - - - - Gets a ShotFallToKnees Helper class for sending ShotFallToKnees to this - - - configure the fall to knees shot. - - - - - Gets a ShotFromBehind Helper class for sending ShotFromBehind to this - - - configure the shot from behind reaction - - - - - Gets a ShotInGuts Helper class for sending ShotInGuts to this - - - configure the shot in guts reaction - - - - - Gets a ShotHeadLook Helper class for sending ShotHeadLook to this - - - - - Gets a ShotConfigureArms Helper class for sending ShotConfigureArms to this - - - configure the arm reactions in shot - - - - - Gets a SmartFall Helper class for sending SmartFall to this - - - Clone of High Fall with a wider range of operating conditions. - - - - - Gets a StaggerFall Helper class for sending StaggerFall to this - - - - - Gets a Teeter Helper class for sending Teeter to this - - - - - Gets a UpperBodyFlinch Helper class for sending UpperBodyFlinch to this - - - - - Gets a Yanked Helper class for sending Yanked to this - - - - - A Base class for manually building a - - - - - Creates a class to manually build s that can be sent to any . - - The name of the natual motion message. - - - - Stops this Natural Motion behavious on the given - - The to send the Abort to. - - - - Starts this Natural Motion behaviour on the that will loop until manually aborted - - The to send the to. - - - - Starts this Natural Motion behaviour on the for a specified duration. - - The to send the to. - How long to apply the behaviour for (-1 for looped). - - - - Sets a argument to a value - - The argument name. - The value to set the argument to. - - - - Sets a argument to a value - - The argument name. - The value to set the argument to. - - - - Sets a argument to a value - - The argument name. - The value to set the argument to. - - - - Sets a argument to a value - - The argument name. - The value to set the argument to. - - - - Sets a argument to a value - - The argument name. - The value to set the argument to. - - - - Resets all arguments to their default value's - - - - - A Helper class for building a and sending it to a given - - - - - Creates a Helper class for building Natural Motion messages to send to a given - - The that the message will be applied to. - The name of the natual motion message. - - - - Starts this Natural Motion behaviour on the that will loop until manually aborted - - - - - Starts this Natural Motion behaviour on the for a specified duration. - - How long to apply the behaviour for (-1 for looped). - - - - Stops this Natural Motion behavious on the - - - - - Sets a argument to a value - - The argument name. - The value to set the argument to. - - - - Sets a argument to a value - - The argument name. - The value to set the argument to. - - - - Sets a argument to a value - - The argument name. - The value to set the argument to. - - - - Sets a argument to a value - - The argument name. - The value to set the argument to. - - - - Sets a argument to a value - - The argument name. - The value to set the argument to. - - - - Resets all arguments to their default value's - - - - - Creates a new Instance of the ActivePoseHelper for sending a ActivePose to a given . - - The to send the ActivePose to. - - - - Sets the Mask setting for this . - Two character body-masking value, bitwise joint mask or bitwise logic string of two character body-masking value (see notes for explanation). - - - Default value = fb. - - - - - Sets the UseGravityCompensation setting for this . - Apply gravity compensation as well?. - - - Default value = False. - - - - - Sets the AnimSource setting for this . - - - - - Creates a new Instance of the ApplyImpulseHelper for sending a ApplyImpulse to a given . - - The to send the ApplyImpulse to. - - - - Sets the EqualizeAmount setting for this . - 0 means straight impulse, 1 means multiply by the mass (change in velocity). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the PartIndex setting for this . - index of part being hit. -1 apply impulse to COM. - - - Default value = 0. - Min value = -1. - Max value = 28. - - - - - Sets the Impulse setting for this . - impulse vector (impulse is change in momentum). - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - Min value = -4500.0f. - Max value = 4500.0f. - - - - - Sets the HitPoint setting for this . - optional point on part where hit. If not supplied then the impulse is applied at the part centre. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the LocalHitPointInfo setting for this . - hitPoint in local coordinates of bodyPart. - - - Default value = False. - - - - - Sets the LocalImpulseInfo setting for this . - impulse in local coordinates of bodyPart. - - - Default value = False. - - - - - Sets the AngularImpulse setting for this . - impulse should be considered an angular impulse. - - - Default value = False. - - - - - Creates a new Instance of the ApplyBulletImpulseHelper for sending a ApplyBulletImpulse to a given . - - The to send the ApplyBulletImpulse to. - - - - Sets the EqualizeAmount setting for this . - 0 means straight impulse, 1 means multiply by the mass (change in velocity). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the PartIndex setting for this . - index of part being hit. - - - Default value = 0. - Min value = 0. - Max value = 28. - - - - - Sets the Impulse setting for this . - impulse vector (impulse is change in momentum). - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - Min value = -1000.0f. - Max value = 1000.0f. - - - - - Sets the HitPoint setting for this . - optional point on part where hit. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the LocalHitPointInfo setting for this . - true = hitPoint is in local coordinates of bodyPart, false = hitpoint is in world coordinates. - - - Default value = False. - - - - - Sets the ExtraShare setting for this . - if not 0.0 then have an extra bullet applied to spine0 (approximates the COM). Uses setup from configureBulletsExtra. 0-1 shared 0.0 = no extra bullet, 0.5 = impulse split equally between extra and bullet, 1.0 only extra bullet. LT 0.0 then bullet + scaled extra bullet. Eg.-0.5 = bullet + 0.5 impulse extra bullet. - - - Default value = 0.0f. - Min value = -2.0f. - Max value = 1.0f. - - - - - Set the amount of relaxation across the whole body; Used to collapse the character into a rag-doll-like state. - - - - - Creates a new Instance of the BodyRelaxHelper for sending a BodyRelax to a given . - - The to send the BodyRelax to. - - Set the amount of relaxation across the whole body; Used to collapse the character into a rag-doll-like state. - - - - - Sets the Relaxation setting for this . - How relaxed the body becomes, in percentage relaxed. 100 being totally rag-dolled, 0 being very stiff and rigid. - - - Default value = 50.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the Damping setting for this . - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the Mask setting for this . - Two character body-masking value, bitwise joint mask or bitwise logic string of two character body-masking value (see Active Pose notes for possible values). - - - Default value = fb. - - - - - Sets the HoldPose setting for this . - automatically hold the current pose as the character relaxes - can be used to avoid relaxing into a t-pose. - - - Default value = False. - - - - - Sets the DisableJointDriving setting for this . - sets the drive state to free - this reduces drifting on the ground. - - - Default value = False. - - - - - This single message allows you to configure various parameters used on any behaviour that uses the dynamic balance. - - - - - Creates a new Instance of the ConfigureBalanceHelper for sending a ConfigureBalance to a given . - - The to send the ConfigureBalance to. - - This single message allows you to configure various parameters used on any behaviour that uses the dynamic balance. - - - - - Sets the StepHeight setting for this . - maximum height that character steps vertically (above 0.2 is high...but ok for say underwater). - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 0.4f. - - - - - Sets the StepHeightInc4Step setting for this . - added to stepHeight if going up steps. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 0.4f. - - - - - Sets the LegsApartRestep setting for this . - if the legs end up more than (legsApartRestep + hipwidth) apart even though balanced, take another step. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LegsTogetherRestep setting for this . - mmmm0.1 for drunk if the legs end up less than (hipwidth - legsTogetherRestep) apart even though balanced, take another step. A value of 1 will turn off this feature and the max value is hipWidth = 0.23f by default but is model dependent. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LegsApartMax setting for this . - FRICTION WORKAROUND: if the legs end up more than (legsApartMax + hipwidth) apart when balanced, adjust the feet positions to slide back so they are legsApartMax + hipwidth apart. Needs to be less than legsApartRestep to see any effect. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the TaperKneeStrength setting for this . - does the knee strength reduce with angle. - - - Default value = True. - - - - - Sets the LegStiffness setting for this . - stiffness of legs. - - - Default value = 12.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the LeftLegSwingDamping setting for this . - damping of left leg during swing phase (mmmmDrunk used 1.25 to slow legs movement). - - - Default value = 1.0f. - Min value = 0.2f. - Max value = 4.0f. - - - - - Sets the RightLegSwingDamping setting for this . - damping of right leg during swing phase (mmmmDrunk used 1.25 to slow legs movement). - - - Default value = 1.0f. - Min value = 0.2f. - Max value = 4.0f. - - - - - Sets the OpposeGravityLegs setting for this . - Gravity opposition applied to hips and knees. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the OpposeGravityAnkles setting for this . - Gravity opposition applied to ankles. General balancer likes 1.0. StaggerFall likes 0.1. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the LeanAcc setting for this . - Multiplier on the floorAcceleration added to the lean. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the HipLeanAcc setting for this . - Multiplier on the floorAcceleration added to the leanHips. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LeanAccMax setting for this . - Max floorAcceleration allowed for lean and leanHips. - - - Default value = 5.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ResistAcc setting for this . - Level of cheat force added to character to resist the effect of floorAcceleration (anti-Acceleration) - added to upperbody. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the ResistAccMax setting for this . - Max floorAcceleration allowed for anti-Acceleration. If GT 20.0 then it is probably in a crash. - - - Default value = 3.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the FootSlipCompOnMovingFloor setting for this . - This parameter will be removed when footSlipCompensation preserves the foot angle on a moving floor]. If the character detects a moving floor and footSlipCompOnMovingFloor is false then it will turn off footSlipCompensation - at footSlipCompensation preserves the global heading of the feet. If footSlipCompensation is off then the character usually turns to the side in the end although when turning the vehicle turns it looks promising for a while. - - - Default value = True. - - - - - Sets the AnkleEquilibrium setting for this . - ankle equilibrium angle used when static balancing. - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the ExtraFeetApart setting for this . - additional feet apart setting. - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the DontStepTime setting for this . - amount of time at the start of a balance before the character is allowed to start stepping. - - - Default value = 0.0f. - Min value = 0.0f. - - - - - Sets the BalanceAbortThreshold setting for this . - when the character gives up and goes into a fall. Larger values mean that the balancer can lean more before failing. - - - Default value = 0.6f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the GiveUpHeight setting for this . - height between lowest foot and COM below which balancer will give up. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.5f. - - - - - Sets the StepClampScale setting for this . - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the StepClampScaleVariance setting for this . - Variance in clamp scale every step. if negative only takes away from clampScale. - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the PredictionTimeHip setting for this . - amount of time (seconds) into the future that the character tries to move hip to (kind of). Will be controlled by balancer in future but can help recover spine quicker from bending forwards to much. - - - Default value = 0.3f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the PredictionTime setting for this . - amount of time (seconds) into the future that the character tries to step to. bigger values try to recover with fewer, bigger steps. smaller values recover with smaller steps, and generally recover less. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the PredictionTimeVariance setting for this . - Variance in predictionTime every step. if negative only takes away from predictionTime. - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the MaxSteps setting for this . - Maximum number of steps that the balancer will take. - - - Default value = 100. - Min value = 1. - - - - - Sets the MaxBalanceTime setting for this . - Maximum time(seconds) that the balancer will balance for. - - - Default value = 50.0f. - Min value = 1.0f. - - - - - Sets the ExtraSteps setting for this . - Allow the balancer to take this many more steps before hitting maxSteps. If negative nothing happens(safe default). - - - Default value = -1. - Min value = -1. - - - - - Sets the ExtraTime setting for this . - Allow the balancer to balance for this many more seconds before hitting maxBalanceTime. If negative nothing happens(safe default). - - - Default value = -1.0f. - Min value = -1.0f. - - - - - Sets the FallType setting for this . - How to fall after maxSteps or maxBalanceTime. - - - Default value = . - If BCR has to be active. - - - - - Sets the FallMult setting for this . - Multiply the rampDown of stiffness on falling by this amount ( GT 1 fall quicker). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the FallReduceGravityComp setting for this . - Reduce gravity compensation as the legs weaken on falling. - - - Default value = False. - - - - - Sets the RampHipPitchOnFail setting for this . - bend over when falling after maxBalanceTime. - - - Default value = False. - - - - - Sets the StableLinSpeedThresh setting for this . - Linear speed threshold for successful balance. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the StableRotSpeedThresh setting for this . - Rotational speed threshold for successful balance. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the FailMustCollide setting for this . - The upper body of the character must be colliding and other failure conditions met to fail. - - - Default value = False. - - - - - Sets the IgnoreFailure setting for this . - Ignore maxSteps and maxBalanceTime and try to balance forever. - - - Default value = False. - - - - - Sets the ChangeStepTime setting for this . - time not in contact (airborne) before step is changed. If -ve don't change step. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 5.0f. - - - - - Sets the BalanceIndefinitely setting for this . - Ignore maxSteps and maxBalanceTime and try to balance forever. - - - Default value = False. - - - - - Sets the MovingFloor setting for this . - temporary variable to ignore movingFloor code that generally causes the character to fall over if the feet probe a moving object e.g. treading on a gun. - - - Default value = False. - - - - - Sets the AirborneStep setting for this . - when airborne try to step. Set to false for e.g. shotGun reaction. - - - Default value = True. - - - - - Sets the UseComDirTurnVelThresh setting for this . - Velocity below which the balancer turns in the direction of the COM forward instead of the ComVel - for use with shot from running with high upright constraint use 1.9. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the MinKneeAngle setting for this . - Minimum knee angle (-ve value will mean this functionality is not applied). 0.4 seems a good value. - - - Default value = -0.5f. - Min value = -0.5f. - Max value = 1.5f. - - - - - Sets the FlatterSwingFeet setting for this . - - - Default value = False. - - - - - Sets the FlatterStaticFeet setting for this . - - - Default value = False. - - - - - Sets the AvoidLeg setting for this . - If true then balancer tries to avoid leg2leg collisions/avoid crossing legs. Avoid tries to not step across a line of the inside of the stance leg's foot. - - - Default value = False. - - - - - Sets the AvoidFootWidth setting for this . - NB. Very sensitive. Avoid tries to not step across a line of the inside of the stance leg's foot. avoidFootWidth = how much inwards from the ankle this line is in (m). - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the AvoidFeedback setting for this . - NB. Very sensitive. Avoid tries to not step across a line of the inside of the stance leg's foot. Avoid doesn't allow the desired stepping foot to cross the line. avoidFeedback = how much of the actual crossing of that line is fedback as an error. - - - Default value = 0.6f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the LeanAgainstVelocity setting for this . - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the StepDecisionThreshold setting for this . - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the StepIfInSupport setting for this . - The balancer sometimes decides to step even if balanced. - - - Default value = True. - - - - - Sets the AlwaysStepWithFarthest setting for this . - - - Default value = False. - - - - - Sets the StandUp setting for this . - standup more with increased velocity. - - - Default value = False. - - - - - Sets the DepthFudge setting for this . - Supposed to increase foot friction: Impact depth of a collision with the foot is changed when the balancer is running - impact.SetDepth(impact.GetDepth() - depthFudge). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the DepthFudgeStagger setting for this . - Supposed to increase foot friction: Impact depth of a collision with the foot is changed when staggerFall is running - impact.SetDepth(impact.GetDepth() - depthFudgeStagger). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the FootFriction setting for this . - Foot friction multiplier is multiplied by this amount if balancer is running. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 40.0f. - - - - - Sets the FootFrictionStagger setting for this . - Foot friction multiplier is multiplied by this amount if staggerFall is running. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 40.0f. - - - - - Sets the BackwardsLeanCutoff setting for this . - Backwards lean threshold to cut off stay upright forces. 0.0 Vertical - 1.0 horizontal. 0.6 is a sensible value. NB: the balancer does not fail in order to give stagger that extra step as it falls. A backwards lean of GT 0.6 will generally mean the balancer will soon fail without stayUpright forces. - - - Default value = 1.1f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the GiveUpHeightEnd setting for this . - if this value is different from giveUpHeight, actual giveUpHeight will be ramped toward this value. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.5f. - - - - - Sets the BalanceAbortThresholdEnd setting for this . - if this value is different from balanceAbortThreshold, actual balanceAbortThreshold will be ramped toward this value. - - - Default value = 0.6f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the GiveUpRampDuration setting for this . - duration of ramp from start of behaviour for above two parameters. If smaller than 0, no ramp is applied. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 10.0f. - - - - - Sets the LeanToAbort setting for this . - lean at which to send abort message when maxSteps or maxBalanceTime is reached. - - - Default value = 0.6f. - Min value = 0.0f. - Max value = 1.0f. - - - - - reset the values configurable by the Configure Balance message to their defaults. - - - - - Creates a new Instance of the ConfigureBalanceResetHelper for sending a ConfigureBalanceReset to a given . - - The to send the ConfigureBalanceReset to. - - reset the values configurable by the Configure Balance message to their defaults. - - - - - this single message allows to configure self avoidance for the character.BBDD Self avoidance tech. - - - - - Creates a new Instance of the ConfigureSelfAvoidanceHelper for sending a ConfigureSelfAvoidance to a given . - - The to send the ConfigureSelfAvoidance to. - - this single message allows to configure self avoidance for the character.BBDD Self avoidance tech. - - - - - Sets the UseSelfAvoidance setting for this . - Enable or disable self avoidance tech. - - - Default value = False. - - - - - Sets the OverwriteDragReduction setting for this . - Specify whether self avoidance tech should use original IK input target or the target that has been already modified by getStabilisedPos() tech i.e. function that compensates for rotational and linear velocity of shoulder/thigh. - - - Default value = False. - - - - - Sets the TorsoSwingFraction setting for this . - Place the adjusted target this much along the arc between effector (wrist) and target, value in range [0,1]. - - - Default value = 0.8f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the MaxTorsoSwingAngleRad setting for this . - Max value on the effector (wrist) to adjusted target offset. - - - Default value = 0.8f. - Min value = 0.0f. - Max value = 1.6f. - - - - - Sets the SelfAvoidIfInSpineBoundsOnly setting for this . - Restrict self avoidance to operate on targets that are within character torso bounds only. - - - Default value = False. - - - - - Sets the SelfAvoidAmount setting for this . - Amount of self avoidance offset applied when angle from effector (wrist) to target is greater then right angle i.e. when total offset is a blend between where effector currently is to value that is a product of total arm length and selfAvoidAmount. SelfAvoidAmount is in a range between [0, 1]. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the OverwriteTwist setting for this . - Overwrite desired IK twist with self avoidance procedural twist. - - - Default value = False. - - - - - Sets the UsePolarPathAlgorithm setting for this . - Use the alternative self avoidance algorithm that is based on linear and polar target blending. WARNING: It only requires "radius" in terms of parametrization. - - - Default value = False. - - - - - Sets the Radius setting for this . - Self avoidance radius, measured out from the spine axis along the plane perpendicular to that axis. The closer is the proximity of reaching target to that radius, the more polar (curved) motion is used for offsetting the target. WARNING: Parameter only used by the alternative algorithm that is based on linear and polar target blending. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Creates a new Instance of the ConfigureBulletsHelper for sending a ConfigureBullets to a given . - - The to send the ConfigureBullets to. - - - - Sets the ImpulseSpreadOverParts setting for this . - spreads impulse across parts. currently only for spine parts, not limbs. - - - Default value = False. - - - - - Sets the ImpulseLeakageStrengthScaled setting for this . - for weaker characters subsequent impulses remain strong. - - - Default value = False. - - - - - Sets the ImpulsePeriod setting for this . - duration that impulse is spread over (triangular shaped). - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseTorqueScale setting for this . - An impulse applied at a point on a body equivalent to an impulse at the centre of the body and a torque. This parameter scales the torque component. (The torque component seems to be excite the rage looseness bug which sends the character in a sometimes wildly different direction to an applied impulse). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LoosenessFix setting for this . - Fix the rage looseness bug by applying only the impulse at the centre of the body unless it is a spine part then apply the twist component only of the torque as well. - - - Default value = False. - - - - - Sets the ImpulseDelay setting for this . - time from hit before impulses are being applied. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseReductionPerShot setting for this . - by how much are subsequent impulses reduced (e.g. 0.0: no reduction, 0.1: 10% reduction each new hit). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseRecovery setting for this . - recovery rate of impulse strength per second (impulse strength from 0.0:1.0). At 60fps a impulseRecovery=60.0 will recover in 1 frame. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 60.0f. - - - - - Sets the ImpulseMinLeakage setting for this . - the minimum amount of impulse leakage allowed. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TorqueMode setting for this . - - - Default value = . - If - proportional to character strength, can reduce impulse amount. - If - no reduction of impulse and not proportional to character strength. - - - - - Sets the TorqueSpinMode setting for this . - - - Default value = . - If a burst effect is achieved. - - - - - Sets the TorqueFilterMode setting for this . - - - Default value = . - - - - - Sets the TorqueAlwaysSpine3 setting for this . - always apply torques to spine3 instead of actual part hit. - - - Default value = True. - - - - - Sets the TorqueDelay setting for this . - time from hit before torques are being applied. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TorquePeriod setting for this . - duration of torque. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TorqueGain setting for this . - multiplies impulse magnitude to arrive at torque that is applied. - - - Default value = 4.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the TorqueCutoff setting for this . - minimum ratio of impulse that remains after converting to torque (if in strength-proportional mode). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TorqueReductionPerTick setting for this . - ratio of torque for next tick (e.g. 1.0: not reducing over time, 0.9: each tick torque is reduced by 10%). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LiftGain setting for this . - amount of lift (directly multiplies torque axis to give lift force). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the CounterImpulseDelay setting for this . - time after impulse is applied that counter impulse is applied. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the CounterImpulseMag setting for this . - amount of the original impulse that is countered. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the CounterAfterMagReached setting for this . - applies the counter impulse counterImpulseDelay(secs) after counterImpulseMag of the Impulse has been applied. - - - Default value = False. - - - - - Sets the DoCounterImpulse setting for this . - add a counter impulse to the pelvis. - - - Default value = False. - - - - - Sets the CounterImpulse2Hips setting for this . - amount of the counter impulse applied to hips - the rest is applied to the part originally hit. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseNoBalMult setting for this . - amount to scale impulse by if the dynamicBalance is not OK. 1.0 means this functionality is not applied. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseBalStabStart setting for this . - 100% LE Start to impulseBalStabMult*100% GT End. NB: Start LT End. - - - Default value = 3.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the ImpulseBalStabEnd setting for this . - 100% LE Start to impulseBalStabMult*100% GT End. NB: Start LT End. - - - Default value = 10.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the ImpulseBalStabMult setting for this . - 100% LE Start to impulseBalStabMult*100% GT End. NB: leaving this as 1.0 means this functionality is not applied and Start and End have no effect. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseSpineAngStart setting for this . - 100% GE Start to impulseSpineAngMult*100% LT End. NB: Start GT End. This the dot of hip2Head with up. - - - Default value = 0.7f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the ImpulseSpineAngEnd setting for this . - 100% GE Start to impulseSpineAngMult*100% LT End. NB: Start GT End. This the dot of hip2Head with up. - - - Default value = 0.2f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the ImpulseSpineAngMult setting for this . - 100% GE Start to impulseSpineAngMult*100% LT End. NB: leaving this as 1.0 means this functionality is not applied and Start and End have no effect. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseVelStart setting for this . - 100% LE Start to impulseVelMult*100% GT End. NB: Start LT End. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the ImpulseVelEnd setting for this . - 100% LE Start to impulseVelMult*100% GT End. NB: Start LT End. - - - Default value = 4.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the ImpulseVelMult setting for this . - 100% LE Start to impulseVelMult*100% GT End. NB: leaving this as 1.0 means this functionality is not applied and Start and End have no effect. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseAirMult setting for this . - amount to scale impulse by if the character is airborne and dynamicBalance is OK and impulse is above impulseAirMultStart. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseAirMultStart setting for this . - if impulse is above this value scale it by impulseAirMult. - - - Default value = 100.0f. - Min value = 0.0f. - - - - - Sets the ImpulseAirMax setting for this . - amount to clamp impulse to if character is airborne and dynamicBalance is OK. - - - Default value = 100.0f. - Min value = 0.0f. - - - - - Sets the ImpulseAirApplyAbove setting for this . - if impulse is above this amount then do not scale/clamp just let it through as is - it's a shotgun or cannon. - - - Default value = 399.0f. - Min value = 0.0f. - - - - - Sets the ImpulseAirOn setting for this . - scale and/or clamp impulse if the character is airborne and dynamicBalance is OK. - - - Default value = False. - - - - - Sets the ImpulseOneLegMult setting for this . - amount to scale impulse by if the character is contacting with one foot only and dynamicBalance is OK and impulse is above impulseAirMultStart. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseOneLegMultStart setting for this . - if impulse is above this value scale it by impulseOneLegMult. - - - Default value = 100.0f. - Min value = 0.0f. - - - - - Sets the ImpulseOneLegMax setting for this . - amount to clamp impulse to if character is contacting with one foot only and dynamicBalance is OK. - - - Default value = 100.0f. - Min value = 0.0f. - - - - - Sets the ImpulseOneLegApplyAbove setting for this . - if impulse is above this amount then do not scale/clamp just let it through as is - it's a shotgun or cannon. - - - Default value = 399.0f. - Min value = 0.0f. - - - - - Sets the ImpulseOneLegOn setting for this . - scale and/or clamp impulse if the character is contacting with one leg only and dynamicBalance is OK. - - - Default value = False. - - - - - Sets the RbRatio setting for this . - 0.0 no rigidBody response, 0.5 half partForce half rigidBody, 1.0 = no partForce full rigidBody. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RbLowerShare setting for this . - rigid body response is shared between the upper and lower body (rbUpperShare = 1-rbLowerShare). rbLowerShare=0.5 gives upper and lower share scaled by mass. i.e. if 70% ub mass and 30% lower mass then rbLowerShare=0.5 gives actualrbShare of 0.7ub and 0.3lb. rbLowerShare GT 0.5 scales the ub share down from 0.7 and the lb up from 0.3. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RbMoment setting for this . - 0.0 only force, 0.5 = force and half the rigid body moment applied, 1.0 = force and full rigidBody moment. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RbMaxTwistMomentArm setting for this . - Maximum twist arm moment of bullet applied. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the RbMaxBroomMomentArm setting for this . - Maximum broom((everything but the twist) arm moment of bullet applied. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the RbRatioAirborne setting for this . - if Airborne: 0.0 no rigidBody response, 0.5 half partForce half rigidBody, 1.0 = no partForce full rigidBody. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RbMomentAirborne setting for this . - if Airborne: 0.0 only force, 0.5 = force and half the rigid body moment applied, 1.0 = force and full rigidBody moment. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RbMaxTwistMomentArmAirborne setting for this . - if Airborne: Maximum twist arm moment of bullet applied. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the RbMaxBroomMomentArmAirborne setting for this . - if Airborne: Maximum broom((everything but the twist) arm moment of bullet applied. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the RbRatioOneLeg setting for this . - if only one leg in contact: 0.0 no rigidBody response, 0.5 half partForce half rigidBody, 1.0 = no partForce full rigidBody. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RbMomentOneLeg setting for this . - if only one leg in contact: 0.0 only force, 0.5 = force and half the rigid body moment applied, 1.0 = force and full rigidBody moment. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RbMaxTwistMomentArmOneLeg setting for this . - if only one leg in contact: Maximum twist arm moment of bullet applied. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the RbMaxBroomMomentArmOneLeg setting for this . - if only one leg in contact: Maximum broom((everything but the twist) arm moment of bullet applied. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the RbTwistAxis setting for this . - - - Default value = . - . - - - - Sets the RbPivot setting for this . - if false pivot around COM always, if true change pivot depending on foot contact: to feet centre if both feet in contact, or foot position if 1 foot in contact or COM position if no feet in contact. - - - Default value = False. - - - - - Creates a new Instance of the ConfigureBulletsExtraHelper for sending a ConfigureBulletsExtra to a given . - - The to send the ConfigureBulletsExtra to. - - - - Sets the ImpulseSpreadOverParts setting for this . - spreads impulse across parts. currently only for spine parts, not limbs. - - - Default value = False. - - - - - Sets the ImpulsePeriod setting for this . - duration that impulse is spread over (triangular shaped). - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseTorqueScale setting for this . - An impulse applied at a point on a body equivalent to an impulse at the centre of the body and a torque. This parameter scales the torque component. (The torque component seems to be excite the rage looseness bug which sends the character in a sometimes wildly different direction to an applied impulse). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LoosenessFix setting for this . - Fix the rage looseness bug by applying only the impulse at the centre of the body unless it is a spine part then apply the twist component only of the torque as well. - - - Default value = False. - - - - - Sets the ImpulseDelay setting for this . - time from hit before impulses are being applied. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TorqueMode setting for this . - - - Default value = . - If - proportional to character strength, can reduce impulse amount. - If - no reduction of impulse and not proportional to character strength. - - - - - Sets the TorqueSpinMode setting for this . - - - Default value = . - If a burst effect is achieved. - - - - - Sets the TorqueFilterMode setting for this . - - - Default value = . - - - - - Sets the TorqueAlwaysSpine3 setting for this . - always apply torques to spine3 instead of actual part hit. - - - Default value = True. - - - - - Sets the TorqueDelay setting for this . - time from hit before torques are being applied. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TorquePeriod setting for this . - duration of torque. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TorqueGain setting for this . - multiplies impulse magnitude to arrive at torque that is applied. - - - Default value = 4.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the TorqueCutoff setting for this . - minimum ratio of impulse that remains after converting to torque (if in strength-proportional mode). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TorqueReductionPerTick setting for this . - ratio of torque for next tick (e.g. 1.0: not reducing over time, 0.9: each tick torque is reduced by 10%). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LiftGain setting for this . - amount of lift (directly multiplies torque axis to give lift force). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the CounterImpulseDelay setting for this . - time after impulse is applied that counter impulse is applied. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the CounterImpulseMag setting for this . - amount of the original impulse that is countered. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the CounterAfterMagReached setting for this . - applies the counter impulse counterImpulseDelay(secs) after counterImpulseMag of the Impulse has been applied. - - - Default value = False. - - - - - Sets the DoCounterImpulse setting for this . - add a counter impulse to the pelvis. - - - Default value = False. - - - - - Sets the CounterImpulse2Hips setting for this . - amount of the counter impulse applied to hips - the rest is applied to the part originally hit. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseNoBalMult setting for this . - amount to scale impulse by if the dynamicBalance is not OK. 1.0 means this functionality is not applied. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseBalStabStart setting for this . - 100% LE Start to impulseBalStabMult*100% GT End. NB: Start LT End. - - - Default value = 3.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the ImpulseBalStabEnd setting for this . - 100% LE Start to impulseBalStabMult*100% GT End. NB: Start LT End. - - - Default value = 10.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the ImpulseBalStabMult setting for this . - 100% LE Start to impulseBalStabMult*100% GT End. NB: leaving this as 1.0 means this functionality is not applied and Start and End have no effect. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseSpineAngStart setting for this . - 100% GE Start to impulseSpineAngMult*100% LT End. NB: Start GT End. This the dot of hip2Head with up. - - - Default value = 0.7f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the ImpulseSpineAngEnd setting for this . - 100% GE Start to impulseSpineAngMult*100% LT End. NB: Start GT End. This the dot of hip2Head with up. - - - Default value = 0.2f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the ImpulseSpineAngMult setting for this . - 100% GE Start to impulseSpineAngMult*100% LT End. NB: leaving this as 1.0 means this functionality is not applied and Start and End have no effect. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseVelStart setting for this . - 100% LE Start to impulseVelMult*100% GT End. NB: Start LT End. - - - Default value = 4.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the ImpulseVelEnd setting for this . - 100% LE Start to impulseVelMult*100% GT End. NB: Start LT End. - - - Default value = 4.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the ImpulseVelMult setting for this . - 100% LE Start to impulseVelMult*100% GT End. NB: leaving this as 1.0 means this functionality is not applied and Start and End have no effect. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseAirMult setting for this . - amount to scale impulse by if the character is airborne and dynamicBalance is OK and impulse is above impulseAirMultStart. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseAirMultStart setting for this . - if impulse is above this value scale it by impulseAirMult. - - - Default value = 100.0f. - Min value = 0.0f. - - - - - Sets the ImpulseAirMax setting for this . - amount to clamp impulse to if character is airborne and dynamicBalance is OK. - - - Default value = 100.0f. - Min value = 0.0f. - - - - - Sets the ImpulseAirApplyAbove setting for this . - if impulse is above this amount then do not scale/clamp just let it through as is - it's a shotgun or cannon. - - - Default value = 399.0f. - Min value = 0.0f. - - - - - Sets the ImpulseAirOn setting for this . - scale and/or clamp impulse if the character is airborne and dynamicBalance is OK. - - - Default value = False. - - - - - Sets the ImpulseOneLegMult setting for this . - amount to scale impulse by if the character is contacting with one foot only and dynamicBalance is OK and impulse is above impulseAirMultStart. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ImpulseOneLegMultStart setting for this . - if impulse is above this value scale it by impulseOneLegMult. - - - Default value = 100.0f. - Min value = 0.0f. - - - - - Sets the ImpulseOneLegMax setting for this . - amount to clamp impulse to if character is contacting with one foot only and dynamicBalance is OK. - - - Default value = 100.0f. - Min value = 0.0f. - - - - - Sets the ImpulseOneLegApplyAbove setting for this . - if impulse is above this amount then do not scale/clamp just let it through as is - it's a shotgun or cannon. - - - Default value = 399.0f. - Min value = 0.0f. - - - - - Sets the ImpulseOneLegOn setting for this . - scale and/or clamp impulse if the character is contacting with one leg only and dynamicBalance is OK. - - - Default value = False. - - - - - Sets the RbRatio setting for this . - 0.0 no rigidBody response, 0.5 half partForce half rigidBody, 1.0 = no partForce full rigidBody. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RbLowerShare setting for this . - rigid body response is shared between the upper and lower body (rbUpperShare = 1-rbLowerShare). rbLowerShare=0.5 gives upper and lower share scaled by mass. i.e. if 70% ub mass and 30% lower mass then rbLowerShare=0.5 gives actualrbShare of 0.7ub and 0.3lb. rbLowerShare GT 0.5 scales the ub share down from 0.7 and the lb up from 0.3. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RbMoment setting for this . - 0.0 only force, 0.5 = force and half the rigid body moment applied, 1.0 = force and full rigidBody moment. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RbMaxTwistMomentArm setting for this . - Maximum twist arm moment of bullet applied. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the RbMaxBroomMomentArm setting for this . - Maximum broom((everything but the twist) arm moment of bullet applied. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the RbRatioAirborne setting for this . - if Airborne: 0.0 no rigidBody response, 0.5 half partForce half rigidBody, 1.0 = no partForce full rigidBody. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RbMomentAirborne setting for this . - if Airborne: 0.0 only force, 0.5 = force and half the rigid body moment applied, 1.0 = force and full rigidBody moment. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RbMaxTwistMomentArmAirborne setting for this . - if Airborne: Maximum twist arm moment of bullet applied. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the RbMaxBroomMomentArmAirborne setting for this . - if Airborne: Maximum broom((everything but the twist) arm moment of bullet applied. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the RbRatioOneLeg setting for this . - if only one leg in contact: 0.0 no rigidBody response, 0.5 half partForce half rigidBody, 1.0 = no partForce full rigidBody. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RbMomentOneLeg setting for this . - if only one leg in contact: 0.0 only force, 0.5 = force and half the rigid body moment applied, 1.0 = force and full rigidBody moment. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RbMaxTwistMomentArmOneLeg setting for this . - if only one leg in contact: Maximum twist arm moment of bullet applied. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the RbMaxBroomMomentArmOneLeg setting for this . - if only one leg in contact: Maximum broom((everything but the twist) arm moment of bullet applied. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the RbTwistAxis setting for this . - - - Default value = . - . - - - - Sets the RbPivot setting for this . - if false pivot around COM always, if true change pivot depending on foot contact: to feet centre if both feet in contact, or foot position if 1 foot in contact or COM position if no feet in contact. - - - Default value = False. - - - - - Enable/disable/edit character limits in real time. This adjusts limits in RAGE-native space and will *not* reorient the joint. - - - - - Creates a new Instance of the ConfigureLimitsHelper for sending a ConfigureLimits to a given . - - The to send the ConfigureLimits to. - - Enable/disable/edit character limits in real time. This adjusts limits in RAGE-native space and will *not* reorient the joint. - - - - - Sets the Mask setting for this . - Two character body-masking value, bitwise joint mask or bitwise logic string of two character body-masking value for joint limits to configure. Ignored if index != -1. - - - Default value = fb. - - - - - Sets the Enable setting for this . - If false, disable (set all to PI, -PI) limits. - - - Default value = True. - - - - - Sets the ToDesired setting for this . - If true, set limits to accommodate current desired angles. - - - Default value = False. - - - - - Sets the Restore setting for this . - Return to cached defaults?. - - - Default value = False. - - - - - Sets the ToCurAnimation setting for this . - If true, set limits to the current animated limits. - - - Default value = False. - - - - - Sets the Index setting for this . - Index of effector to configure. Set to -1 to use mask. - - - Default value = -1. - Min value = -1. - - - - - Sets the Lean1 setting for this . - Custom limit values to use if not setting limits to desired. Limits are RAGE-native, not NM-wrapper-native. - - - Default value = 1.6f. - Min value = 0.0f. - Max value = 3.1f. - - - - - Sets the Lean2 setting for this . - - - Default value = 1.6f. - Min value = 0.0f. - Max value = 3.1f. - - - - - Sets the Twist setting for this . - - - Default value = 1.6f. - Min value = 0.0f. - Max value = 3.1f. - - - - - Sets the Margin setting for this . - Joint limit margin to add to current animation limits when using those to set runtime limits. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 3.1f. - - - - - Creates a new Instance of the ConfigureSoftLimitHelper for sending a ConfigureSoftLimit to a given . - - The to send the ConfigureSoftLimit to. - - - - Sets the Index setting for this . - Select limb that the soft limit is going to be applied to. - - - Default value = 0. - Min value = 0. - Max value = 3. - - - - - Sets the Stiffness setting for this . - Stiffness of the soft limit. Parameter is used to calculate spring term that contributes to the desired acceleration. - - - Default value = 15.0f. - Min value = 0.0f. - Max value = 30.0f. - - - - - Sets the Damping setting for this . - Damping of the soft limit. Parameter is used to calculate damper term that contributes to the desired acceleration. To have the system critically dampened set it to 1.0. - - - Default value = 1.0f. - Min value = 0.9f. - Max value = 1.1f. - - - - - Sets the LimitAngle setting for this . - Soft limit angle. Positive angle in RAD, measured relatively either from hard limit maxAngle (approach direction = -1) or minAngle (approach direction = 1). This angle will be clamped if outside the joint hard limit range. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 6.3f. - - - - - Sets the ApproachDirection setting for this . - Limit angle can be measured relatively to joints hard limit minAngle or maxAngle. Set approachDirection to +1 to measure soft limit angle relatively to hard limit minAngle that corresponds to the maximum stretch of the elbow. Set it to -1 to measure soft limit angle relatively to hard limit maxAngle that corresponds to the maximum stretch of the knee. - - - Default value = 1. - Min value = -1. - Max value = 1. - - - - - Sets the VelocityScaled setting for this . - Scale stiffness based on character angular velocity. - - - Default value = False. - - - - - This single message allows you to configure the injured arm reaction during shot. - - - - - Creates a new Instance of the ConfigureShotInjuredArmHelper for sending a ConfigureShotInjuredArm to a given . - - The to send the ConfigureShotInjuredArm to. - - This single message allows you to configure the injured arm reaction during shot. - - - - - Sets the InjuredArmTime setting for this . - length of the reaction. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the HipYaw setting for this . - Amount of hip twist. (Negative values twist into bullet direction - probably not what is wanted). - - - Default value = 0.8f. - Min value = -2.0f. - Max value = 2.0f. - - - - - Sets the HipRoll setting for this . - Amount of hip roll. - - - Default value = 0.0f. - Min value = -2.0f. - Max value = 2.0f. - - - - - Sets the ForceStepExtraHeight setting for this . - Additional height added to stepping foot. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 0.7f. - - - - - Sets the ForceStep setting for this . - force a step to be taken whether pushed out of balance or not. - - - Default value = True. - - - - - Sets the StepTurn setting for this . - turn the character using the balancer. - - - Default value = True. - - - - - Sets the VelMultiplierStart setting for this . - Start velocity where parameters begin to be ramped down to zero linearly. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the VelMultiplierEnd setting for this . - End velocity of ramp where parameters are scaled to zero. - - - Default value = 5.0f. - Min value = 1.0f. - Max value = 40.0f. - - - - - Sets the VelForceStep setting for this . - Velocity above which a step is not forced. - - - Default value = 0.8f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the VelStepTurn setting for this . - Velocity above which a stepTurn is not asked for. - - - Default value = 0.8f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the VelScales setting for this . - Use the velocity scaling parameters. Tune for standing still then use velocity scaling to make sure a running character stays balanced (the turning tends to make the character fall over more at speed). - - - Default value = True. - - - - - This single message allows you to configure the injured leg reaction during shot. - - - - - Creates a new Instance of the ConfigureShotInjuredLegHelper for sending a ConfigureShotInjuredLeg to a given . - - The to send the ConfigureShotInjuredLeg to. - - This single message allows you to configure the injured leg reaction during shot. - - - - - Sets the TimeBeforeCollapseWoundLeg setting for this . - time before a wounded leg is set to be weak and cause the character to collapse. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the LegInjuryTime setting for this . - Leg inury duration (reaction to being shot in leg). - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the LegForceStep setting for this . - force a step to be taken whether pushed out of balance or not. - - - Default value = True. - - - - - Sets the LegLimpBend setting for this . - Bend the legs via the balancer by this amount if stepping on the injured leg. 0.2 seems a good default. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LegLiftTime setting for this . - Leg lift duration (reaction to being shot in leg) (lifting happens when not stepping with other leg). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the LegInjury setting for this . - Leg injury - leg strength is reduced. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LegInjuryHipPitch setting for this . - Leg injury bend forwards amount when not lifting leg. - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the LegInjuryLiftHipPitch setting for this . - Leg injury bend forwards amount when lifting leg (lifting happens when not stepping with other leg). - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the LegInjurySpineBend setting for this . - Leg injury bend forwards amount when not lifting leg. - - - Default value = 0.1f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the LegInjuryLiftSpineBend setting for this . - Leg injury bend forwards amount when lifting leg (lifting happens when not stepping with other leg). - - - Default value = 0.2f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Creates a new Instance of the DefineAttachedObjectHelper for sending a DefineAttachedObject to a given . - - The to send the DefineAttachedObject to. - - - - Sets the PartIndex setting for this . - index of part to attach to. - - - Default value = -1. - Min value = -1. - Max value = 21. - - - - - Sets the ObjectMass setting for this . - mass of the attached object. - - - Default value = 0.0f. - Min value = 0.0f. - - - - - Sets the WorldPos setting for this . - world position of attached object's centre of mass. must be updated each frame. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Apply an impulse to a named body part. - - - - - Creates a new Instance of the ForceToBodyPartHelper for sending a ForceToBodyPart to a given . - - The to send the ForceToBodyPart to. - - Apply an impulse to a named body part. - - - - - Sets the PartIndex setting for this . - part or link or bound index. - - - Default value = 0. - Min value = 0. - Max value = 28. - - - - - Sets the Force setting for this . - force to apply. - - - Default value = Vector3(0.0f, -50.0f, 0.0f). - Min value = -100000.0f. - Max value = 100000.0f. - - - - - Sets the ForceDefinedInPartSpace setting for this . - - - Default value = False. - - - - - Creates a new Instance of the LeanInDirectionHelper for sending a LeanInDirection to a given . - - The to send the LeanInDirection to. - - - - Sets the LeanAmount setting for this . - amount of lean, 0 to about 0.5. -ve will move away from the target. - - - Default value = 0.2f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the Dir setting for this . - direction to lean in. - - - Default value = Vector3(0.0f, 0.0f, 1.0f). - Min value = 0.0f. - - - - - Creates a new Instance of the LeanRandomHelper for sending a LeanRandom to a given . - - The to send the LeanRandom to. - - - - Sets the LeanAmountMin setting for this . - minimum amount of lean. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LeanAmountMax setting for this . - maximum amount of lean. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ChangeTimeMin setting for this . - min time until changing direction. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the ChangeTimeMax setting for this . - maximum time until changing direction. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Creates a new Instance of the LeanToPositionHelper for sending a LeanToPosition to a given . - - The to send the LeanToPosition to. - - - - Sets the LeanAmount setting for this . - amount of lean, 0 to about 0.5. -ve will move away from the target. - - - Default value = 0.2f. - Min value = -0.5f. - Max value = 0.5f. - - - - - Sets the Pos setting for this . - position to head towards. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Creates a new Instance of the LeanTowardsObjectHelper for sending a LeanTowardsObject to a given . - - The to send the LeanTowardsObject to. - - - - Sets the LeanAmount setting for this . - amount of lean, 0 to about 0.5. -ve will move away from the target. - - - Default value = 0.2f. - Min value = -0.5f. - Max value = 0.5f. - - - - - Sets the Offset setting for this . - offset from instance position added when calculating position to lean to. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - Min value = -100.0f. - Max value = 100.0f. - - - - - Sets the InstanceIndex setting for this . - levelIndex of object to lean towards. - - - Default value = -1. - Min value = -1. - - - - - Sets the BoundIndex setting for this . - boundIndex of object to lean towards (0 = just use instance coordinates). - - - Default value = 0. - Min value = 0. - - - - - Creates a new Instance of the HipsLeanInDirectionHelper for sending a HipsLeanInDirection to a given . - - The to send the HipsLeanInDirection to. - - - - Sets the LeanAmount setting for this . - amount of lean, 0 to about 0.5. -ve will move away from the target. - - - Default value = 0.2f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the Dir setting for this . - direction to lean in. - - - Default value = Vector3(0.0f, 0.0f, 1.0f). - Min value = 0.0f. - - - - - Creates a new Instance of the HipsLeanRandomHelper for sending a HipsLeanRandom to a given . - - The to send the HipsLeanRandom to. - - - - Sets the LeanAmountMin setting for this . - minimum amount of lean. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LeanAmountMax setting for this . - maximum amount of lean. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ChangeTimeMin setting for this . - min time until changing direction. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the ChangeTimeMax setting for this . - maximum time until changing direction. - - - Default value = 4.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Creates a new Instance of the HipsLeanToPositionHelper for sending a HipsLeanToPosition to a given . - - The to send the HipsLeanToPosition to. - - - - Sets the LeanAmount setting for this . - amount of lean, 0 to about 0.5. -ve will move away from the target. - - - Default value = 0.2f. - Min value = -0.5f. - Max value = 0.5f. - - - - - Sets the Pos setting for this . - position to head towards. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Creates a new Instance of the HipsLeanTowardsObjectHelper for sending a HipsLeanTowardsObject to a given . - - The to send the HipsLeanTowardsObject to. - - - - Sets the LeanAmount setting for this . - amount of lean, 0 to about 0.5. -ve will move away from the target. - - - Default value = 0.2f. - Min value = -0.5f. - Max value = 0.5f. - - - - - Sets the Offset setting for this . - offset from instance position added when calculating position to lean to. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - Min value = -100.0f. - Max value = 100.0f. - - - - - Sets the InstanceIndex setting for this . - levelIndex of object to lean hips towards. - - - Default value = -1. - Min value = -1. - - - - - Sets the BoundIndex setting for this . - boundIndex of object to lean hips towards (0 = just use instance coordinates). - - - Default value = 0. - Min value = 0. - - - - - Creates a new Instance of the ForceLeanInDirectionHelper for sending a ForceLeanInDirection to a given . - - The to send the ForceLeanInDirection to. - - - - Sets the LeanAmount setting for this . - amount of lean, 0 to about 0.5. -ve will move away from the target. - - - Default value = 0.2f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the Dir setting for this . - direction to lean in. - - - Default value = Vector3(0.0f, 0.0f, 1.0f). - Min value = 0.0f. - - - - - Sets the BodyPart setting for this . - body part that the force is applied to. - - - Default value = 0. - Min value = 0. - Max value = 21. - - - - - Creates a new Instance of the ForceLeanRandomHelper for sending a ForceLeanRandom to a given . - - The to send the ForceLeanRandom to. - - - - Sets the LeanAmountMin setting for this . - minimum amount of lean. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LeanAmountMax setting for this . - maximum amount of lean. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ChangeTimeMin setting for this . - min time until changing direction. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the ChangeTimeMax setting for this . - maximum time until changing direction. - - - Default value = 4.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the BodyPart setting for this . - body part that the force is applied to. - - - Default value = 0. - Min value = 0. - Max value = 21. - - - - - Creates a new Instance of the ForceLeanToPositionHelper for sending a ForceLeanToPosition to a given . - - The to send the ForceLeanToPosition to. - - - - Sets the LeanAmount setting for this . - amount of lean, 0 to about 0.5. -ve will move away from the target. - - - Default value = 0.2f. - Min value = -0.5f. - Max value = 0.5f. - - - - - Sets the Pos setting for this . - position to head towards. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the BodyPart setting for this . - body part that the force is applied to. - - - Default value = 0. - Min value = 0. - Max value = 21. - - - - - Creates a new Instance of the ForceLeanTowardsObjectHelper for sending a ForceLeanTowardsObject to a given . - - The to send the ForceLeanTowardsObject to. - - - - Sets the LeanAmount setting for this . - amount of lean, 0 to about 0.5. -ve will move away from the target. - - - Default value = 0.2f. - Min value = -0.5f. - Max value = 0.5f. - - - - - Sets the Offset setting for this . - offset from instance position added when calculating position to lean to. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - Min value = -100.0f. - Max value = 100.0f. - - - - - Sets the InstanceIndex setting for this . - levelIndex of object to move towards. - - - Default value = -1. - Min value = -1. - - - - - Sets the BoundIndex setting for this . - boundIndex of object to move towards (0 = just use instance coordinates). - - - Default value = 0. - Min value = 0. - - - - - Sets the BodyPart setting for this . - body part that the force is applied to. - - - Default value = 0. - Min value = 0. - Max value = 21. - - - - - Use this message to manually set the body stiffness values -before using Active Pose to drive to an animated pose, for example. - - - - - Creates a new Instance of the SetStiffnessHelper for sending a SetStiffness to a given . - - The to send the SetStiffness to. - - Use this message to manually set the body stiffness values -before using Active Pose to drive to an animated pose, for example. - - - - - Sets the BodyStiffness setting for this . - stiffness of whole character. - - - Default value = 12.0f. - Min value = 2.0f. - Max value = 20.0f. - - - - - Sets the Damping setting for this . - damping amount, less is underdamped. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the Mask setting for this . - Two character body-masking value, bitwise joint mask or bitwise logic string of two character body-masking value (see Active Pose notes for possible values). - - - Default value = fb. - - - - - Use this message to manually set the muscle stiffness values -before using Active Pose to drive to an animated pose, for example. - - - - - Creates a new Instance of the SetMuscleStiffnessHelper for sending a SetMuscleStiffness to a given . - - The to send the SetMuscleStiffness to. - - Use this message to manually set the muscle stiffness values -before using Active Pose to drive to an animated pose, for example. - - - - - Sets the MuscleStiffness setting for this . - muscle stiffness of joint/s. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the Mask setting for this . - Two character body-masking value, bitwise joint mask or bitwise logic string of two character body-masking value (see Active Pose notes for possible values). - - - Default value = fb. - - - - - Use this message to set the character's weapon mode. This is an alternativeto the setWeaponMode public function. - - - - - Creates a new Instance of the SetWeaponModeHelper for sending a SetWeaponMode to a given . - - The to send the SetWeaponMode to. - - Use this message to set the character's weapon mode. This is an alternativeto the setWeaponMode public function. - - - - - Sets the WeaponMode setting for this . - - - Default value = . - . - - - - Use this message to register weapon. This is an alternativeto the registerWeapon public function. - - - - - Creates a new Instance of the RegisterWeaponHelper for sending a RegisterWeapon to a given . - - The to send the RegisterWeapon to. - - Use this message to register weapon. This is an alternativeto the registerWeapon public function. - - - - - Sets the Hand setting for this . - - - Default value = . - - - - - Sets the LevelIndex setting for this . - Level index of the weapon. - - - Default value = -1. - Min value = -1. - - - - - Sets the ConstraintHandle setting for this . - pointer to the hand-gun constraint handle. - - - Default value = -1. - Min value = -1. - - - - - Sets the GunToHandA setting for this . - A vector of the gunToHand matrix. The gunToHandMatrix is the desired gunToHandMatrix in the aimingPose. (The gunToHandMatrix when pointGun starts can be different so will be blended to this desired one). - - - Default value = Vector3(1.0f, 0.0f, 0.0f). - Min value = 0.0f. - - - - - Sets the GunToHandB setting for this . - B vector of the gunToHand matrix. - - - Default value = Vector3(0.0f, 1.0f, 0.0f). - Min value = 0.0f. - - - - - Sets the GunToHandC setting for this . - C vector of the gunToHand matrix. - - - Default value = Vector3(0.0f, 0.0f, 1.0f). - Min value = 0.0f. - - - - - Sets the GunToHandD setting for this . - D vector of the gunToHand matrix. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - Min value = 0.0f. - - - - - Sets the GunToMuzzleInGun setting for this . - Gun centre to muzzle expressed in gun co-ordinates. To get the line of sight/barrel of the gun. Assumption: the muzzle direction is always along the same primary axis of the gun. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the GunToButtInGun setting for this . - Gun centre to butt expressed in gun co-ordinates. The gun pivots around this point when aiming. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Creates a new Instance of the ShotRelaxHelper for sending a ShotRelax to a given . - - The to send the ShotRelax to. - - - - Sets the RelaxPeriodUpper setting for this . - time over which to relax to full relaxation for upper body. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 40.0f. - - - - - Sets the RelaxPeriodLower setting for this . - time over which to relax to full relaxation for lower body. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 40.0f. - - - - - One shot message apply a force to the hand as we fire the gun that should be in this hand. - - - - - Creates a new Instance of the FireWeaponHelper for sending a FireWeapon to a given . - - The to send the FireWeapon to. - - One shot message apply a force to the hand as we fire the gun that should be in this hand. - - - - - Sets the FiredWeaponStrength setting for this . - The force of the gun. - - - Default value = 1000.0f. - Min value = 0.0f. - Max value = 10000.0f. - - - - - Sets the GunHandEnum setting for this . - Which hand is the gun in. - - - Default value = . - - - - - Sets the ApplyFireGunForceAtClavicle setting for this . - Should we apply some of the force at the shoulder. Force double handed weapons (Ak47 etc). - - - Default value = False. - - - - - Sets the InhibitTime setting for this . - Minimum time before next fire impulse. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the Direction setting for this . - direction of impulse in gun frame. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the Split setting for this . - Split force between hand and clavicle when applyFireGunForceAtClavicle is true. 1 = all hand, 0 = all clavicle. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - One shot to give state of constraints on character and response to constraints. - - - - - Creates a new Instance of the ConfigureConstraintsHelper for sending a ConfigureConstraints to a given . - - The to send the ConfigureConstraints to. - - One shot to give state of constraints on character and response to constraints. - - - - - Sets the HandCuffs setting for this . - - - Default value = False. - - - - - Sets the HandCuffsBehindBack setting for this . - not implemented. - - - Default value = False. - - - - - Sets the LegCuffs setting for this . - not implemented. - - - Default value = False. - - - - - Sets the RightDominant setting for this . - - - Default value = False. - - - - - Sets the PassiveMode setting for this . - 0 setCurrent, 1= IK to dominant, (2=pointGunLikeIK //not implemented). - - - Default value = 0. - Min value = 0. - Max value = 5. - - - - - Sets the BespokeBehaviour setting for this . - not implemented. - - - Default value = False. - - - - - Sets the Blend2ZeroPose setting for this . - Blend Arms to zero pose. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Creates a new Instance of the StayUprightHelper for sending a StayUpright to a given . - - The to send the StayUpright to. - - - - Sets the UseForces setting for this . - enable force based constraint. - - - Default value = False. - - - - - Sets the UseTorques setting for this . - enable torque based constraint. - - - Default value = False. - - - - - Sets the LastStandMode setting for this . - Uses position/orientation control on the spine and drifts in the direction of bullets. This ignores all other stayUpright settings. - - - Default value = False. - - - - - Sets the LastStandSinkRate setting for this . - The sink rate (higher for a faster drop). - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LastStandHorizDamping setting for this . - Higher values for more damping. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LastStandMaxTime setting for this . - Max time allowed in last stand mode. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 5.0f. - - - - - Sets the TurnTowardsBullets setting for this . - Use cheat torques to face the direction of bullets if not facing too far away. - - - Default value = False. - - - - - Sets the VelocityBased setting for this . - make strength of constraint function of COM velocity. Uses -1 for forceDamping if the damping is positive. - - - Default value = False. - - - - - Sets the TorqueOnlyInAir setting for this . - only apply torque based constraint when airBorne. - - - Default value = False. - - - - - Sets the ForceStrength setting for this . - strength of constraint. - - - Default value = 3.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the ForceDamping setting for this . - damping in constraint: -1 makes it scale automagically with forceStrength. Other negative values will scale this automagic damping. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 50.0f. - - - - - Sets the ForceFeetMult setting for this . - multiplier to the force applied to the feet. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ForceSpine3Share setting for this . - share of pelvis force applied to spine3. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ForceLeanReduction setting for this . - how much the character lean is taken into account when reducing the force. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ForceInAirShare setting for this . - share of the feet force to the airborne foot. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ForceMin setting for this . - when min and max are greater than 0 the constraint strength is determined from character strength, scaled into the range given by min and max. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 16.0f. - - - - - Sets the ForceMax setting for this . - see above. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 16.0f. - - - - - Sets the ForceSaturationVel setting for this . - when in velocityBased mode, the COM velocity at which constraint reaches maximum strength (forceStrength). - - - Default value = 4.0f. - Min value = 0.1f. - Max value = 10.0f. - - - - - Sets the ForceThresholdVel setting for this . - when in velocityBased mode, the COM velocity above which constraint starts applying forces. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 5.0f. - - - - - Sets the TorqueStrength setting for this . - strength of torque based constraint. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the TorqueDamping setting for this . - damping of torque based constraint. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the TorqueSaturationVel setting for this . - when in velocityBased mode, the COM velocity at which constraint reaches maximum strength (torqueStrength). - - - Default value = 4.0f. - Min value = 0.1f. - Max value = 10.0f. - - - - - Sets the TorqueThresholdVel setting for this . - when in velocityBased mode, the COM velocity above which constraint starts applying torques. - - - Default value = 2.5f. - Min value = 0.0f. - Max value = 5.0f. - - - - - Sets the SupportPosition setting for this . - distance the foot is behind Com projection that is still considered able to generate the support for the upright constraint. - - - Default value = 2.0f. - Min value = -2.0f. - Max value = 2.0f. - - - - - Sets the NoSupportForceMult setting for this . - still apply this fraction of the upright constaint force if the foot is not in a position (defined by supportPosition) to generate the support for the upright constraint. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the StepUpHelp setting for this . - strength of cheat force applied upwards to spine3 to help the character up steps/slopes. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the StayUpAcc setting for this . - How much the cheat force takes into account the acceleration of moving platforms. - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the StayUpAccMax setting for this . - The maximum floorAcceleration (of a moving platform) that the cheat force takes into account. - - - Default value = 5.0f. - Min value = 0.0f. - Max value = 15.0f. - - - - - Send this message to immediately stop all behaviours from executing. - - - - - Creates a new Instance of the StopAllBehavioursHelper for sending a StopAllBehaviours to a given . - - The to send the StopAllBehaviours to. - - Send this message to immediately stop all behaviours from executing. - - - - - Sets character's strength on the dead-granny-to-healthy-terminator scale: [0..1]. - - - - - Creates a new Instance of the SetCharacterStrengthHelper for sending a SetCharacterStrength to a given . - - The to send the SetCharacterStrength to. - - Sets character's strength on the dead-granny-to-healthy-terminator scale: [0..1]. - - - - - Sets the CharacterStrength setting for this . - strength of character. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets character's health on the dead-to-alive scale: [0..1]. - - - - - Creates a new Instance of the SetCharacterHealthHelper for sending a SetCharacterHealth to a given . - - The to send the SetCharacterHealth to. - - Sets character's health on the dead-to-alive scale: [0..1]. - - - - - Sets the CharacterHealth setting for this . - health of character. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the type of reaction if catchFall is called. - - - - - Creates a new Instance of the SetFallingReactionHelper for sending a SetFallingReaction to a given . - - The to send the SetFallingReaction to. - - Sets the type of reaction if catchFall is called. - - - - - Sets the HandsAndKnees setting for this . - set to true to get handsAndKnees catchFall if catchFall called. If true allows the dynBalancer to stay on during the catchfall and modifies the catch fall to give a more alive looking performance (hands and knees for front landing or sitting up for back landing). - - - Default value = False. - - - - - Sets the CallRDS setting for this . - If true catchFall will call rollDownstairs if comVel GT comVelRDSThresh - prevents excessive sliding in catchFall. Was previously only true for handsAndKnees. - - - Default value = False. - - - - - Sets the ComVelRDSThresh setting for this . - comVel above which rollDownstairs will start - prevents excessive sliding in catchFall. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the ResistRolling setting for this . - For rds catchFall only: True to resist rolling motion (rolling motion is set off by ub contact and a sliding velocity), false to allow more of a continuous rolling (rolling motion is set off at a sliding velocity). - - - Default value = False. - - - - - Sets the ArmReduceSpeed setting for this . - Strength is reduced in the catchFall when the arms contact the ground. 0.2 is good for handsAndKnees. 2.5 is good for normal catchFall, anything lower than 1.0 for normal catchFall may lead to bad catchFall poses. - - - Default value = 2.5f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ReachLengthMultiplier setting for this . - Reach length multiplier that scales characters arm topological length, value in range from (0, 1 GT where 1.0 means reach length is maximum. - - - Default value = 1.0f. - Min value = 0.3f. - Max value = 1.0f. - - - - - Sets the InhibitRollingTime setting for this . - Time after hitting ground that the catchFall can call rds. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ChangeFrictionTime setting for this . - Time after hitting ground that the catchFall can change the friction of parts to inhibit sliding. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the GroundFriction setting for this . - 8.0 was used on yanked) Friction multiplier on bodyParts when on ground. Character can look too slidy with groundFriction = 1. Higher values give a more jerky reation but this seems timestep dependent especially for dragged by the feet. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the FrictionMin setting for this . - Min Friction of an impact with a body part (not head, hands or feet) - to increase friction of slippy environment to get character to roll better. Applied in catchFall and rollUp(rollDownStairs). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the FrictionMax setting for this . - Max Friction of an impact with a body part (not head, hands or feet) - to increase friction of slippy environment to get character to roll better. Applied in catchFall and rollUp(rollDownStairs). - - - Default value = 9999.0f. - Min value = 0.0f. - - - - - Sets the StopOnSlopes setting for this . - Apply tactics to help stop on slopes. - - - Default value = False. - - - - - Sets the StopManual setting for this . - Override slope value to manually force stopping on flat ground. Encourages character to come to rest face down or face up. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the StoppedStrengthDecay setting for this . - Speed at which strength reduces when stopped. - - - Default value = 5.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the SpineLean1Offset setting for this . - Bias spine post towards hunched (away from arched). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RiflePose setting for this . - Hold rifle in a safe position to reduce complications with collision. Only applied if holding a rifle. - - - Default value = False. - - - - - Sets the HkHeadAvoid setting for this . - Enable head ground avoidance when handsAndKnees is true. - - - Default value = True. - - - - - Sets the AntiPropClav setting for this . - Discourage the character getting stuck propped up by elbows when falling backwards - by inhibiting backwards moving clavicles (keeps the arms slightly wider). - - - Default value = False. - - - - - Sets the AntiPropWeak setting for this . - Discourage the character getting stuck propped up by elbows when falling backwards - by weakening the arms as soon they hit the floor. (Also stops the hands lifting up when flat on back). - - - Default value = False. - - - - - Sets the HeadAsWeakAsArms setting for this . - Head weakens as arms weaken. If false and antiPropWeak when falls onto back doesn't loosen neck so early (matches bodyStrength instead). - - - Default value = True. - - - - - Sets the SuccessStrength setting for this . - When bodyStrength is less than successStrength send a success feedback - DO NOT GO OUTSIDE MIN/MAX PARAMETER VALUES OTHERWISE NO SUCCESS FEEDBACK WILL BE SENT. - - - Default value = 1.0f. - Min value = 0.3f. - Max value = 1.0f. - - - - - Sets viscosity applied to damping limbs. - - - - - Creates a new Instance of the SetCharacterUnderwaterHelper for sending a SetCharacterUnderwater to a given . - - The to send the SetCharacterUnderwater to. - - Sets viscosity applied to damping limbs. - - - - - Sets the Underwater setting for this . - is character underwater?. - - - Default value = False. - - - - - Sets the Viscosity setting for this . - viscosity applied to character's parts. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 100.0f. - - - - - Sets the GravityFactor setting for this . - gravity factor applied to character. - - - Default value = 1.0f. - Min value = -10.0f. - Max value = 10.0f. - - - - - Sets the Stroke setting for this . - swimming force applied to character as a function of handVelocity and footVelocity. - - - Default value = 0.0f. - Min value = -1000.0f. - Max value = 1000.0f. - - - - - Sets the LinearStroke setting for this . - swimming force (linearStroke=true,False) = (f(v),f(v*v)). - - - Default value = False. - - - - - setCharacterCollisions:. - - - - - Creates a new Instance of the SetCharacterCollisionsHelper for sending a SetCharacterCollisions to a given . - - The to send the SetCharacterCollisions to. - - setCharacterCollisions:. - - - - - Sets the Spin setting for this . - sliding friction turned into spin 80.0 (used in demo videos) good for rest of default params below. If 0.0 then no collision enhancement. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the MaxVelocity setting for this . - torque = spin*(relative velocity) up to this maximum for relative velocity. - - - Default value = 8.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the ApplyToAll setting for this . - - - Default value = False. - - - - - Sets the ApplyToSpine setting for this . - - - Default value = True. - - - - - Sets the ApplyToThighs setting for this . - - - Default value = True. - - - - - Sets the ApplyToClavicles setting for this . - - - Default value = True. - - - - - Sets the ApplyToUpperArms setting for this . - - - Default value = True. - - - - - Sets the FootSlip setting for this . - allow foot slipping if collided. - - - Default value = True. - - - - - Sets the VehicleClass setting for this . - ClassType of the object against which to enhance the collision. All character vehicle interaction (e.g. braceForImpact glancing spins) relies on this value so EDIT WISELY. If it is used for things other than vehicles then NM should be informed. - - - Default value = 15. - Min value = 0. - Max value = 100. - - - - - Damp out cartwheeling and somersaulting above a certain threshold. - - - - - Creates a new Instance of the SetCharacterDampingHelper for sending a SetCharacterDamping to a given . - - The to send the SetCharacterDamping to. - - Damp out cartwheeling and somersaulting above a certain threshold. - - - - - Sets the SomersaultThresh setting for this . - Somersault AngularMomentum measure above which we start damping - try 34.0. Falling over straight backwards gives 54 on hitting ground. - - - Default value = 34.0f. - Min value = 0.0f. - Max value = 200.0f. - - - - - Sets the SomersaultDamp setting for this . - Amount to damp somersaulting by (spinning around left/right axis) - try 0.45. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the CartwheelThresh setting for this . - Cartwheel AngularMomentum measure above which we start damping - try 27.0. - - - Default value = 27.0f. - Min value = 0.0f. - Max value = 200.0f. - - - - - Sets the CartwheelDamp setting for this . - Amount to damp somersaulting by (spinning around front/back axis) - try 0.8. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the VehicleCollisionTime setting for this . - Time after impact with a vehicle to apply characterDamping. -ve values mean always apply whether collided with vehicle or not. =0.0 never apply. =timestep apply for only that frame. A typical roll from being hit by a car lasts about 4secs. - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 1000.0f. - - - - - Sets the V2 setting for this . - If true damping is proportional to Angular momentum squared. If false proportional to Angular momentum. - - - Default value = False. - - - - - setFrictionScale:. - - - - - Creates a new Instance of the SetFrictionScaleHelper for sending a SetFrictionScale to a given . - - The to send the SetFrictionScale to. - - setFrictionScale:. - - - - - Sets the Scale setting for this . - Friction scale to be applied to parts in mask. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the GlobalMin setting for this . - Character-wide minimum impact friction. Affects all parts (not just those in mask). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1000000.0f. - - - - - Sets the GlobalMax setting for this . - Character-wide maximum impact friction. Affects all parts (not just those in mask). - - - Default value = 999999.0f. - Min value = 0.0f. - Max value = 1000000.0f. - - - - - Sets the Mask setting for this . - Two character body-masking value, bitwise joint mask or bitwise logic string of two character body-masking value (see Active Pose notes for possible values). - - - Default value = fb. - - - - - Creates a new Instance of the AnimPoseHelper for sending a AnimPose to a given . - - The to send the AnimPose to. - - - - Sets the MuscleStiffness setting for this . - muscleStiffness of masked joints. -values mean don't apply (just use defaults or ones applied by behaviours - safer if you are going to return to a behaviour). - - - Default value = -1.0f. - Min value = -1.1f. - Max value = 10.0f. - - - - - Sets the Stiffness setting for this . - stiffness of masked joints. -ve values mean don't apply stiffness or damping (just use defaults or ones applied by behaviours). If you are using animpose fullbody on its own then this gives the opprtunity to use setStffness and setMuscleStiffness messages to set up the character's muscles. mmmmtodo get rid of this -ve. - - - Default value = -1.0f. - Min value = -1.1f. - Max value = 16.0f. - - - - - Sets the Damping setting for this . - damping of masked joints. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the EffectorMask setting for this . - Two character body-masking value, bitwise joint mask or bitwise logic string of two character body-masking value (see notes for explanation). - - - Default value = ub. - - - - - Sets the OverideHeadlook setting for this . - overide Headlook behaviour (if animPose includes the head). - - - Default value = False. - - - - - Sets the OveridePointArm setting for this . - overide PointArm behaviour (if animPose includes the arm/arms). - - - Default value = False. - - - - - Sets the OveridePointGun setting for this . - overide PointGun behaviour (if animPose includes the arm/arms)//mmmmtodo not used at moment. - - - Default value = False. - - - - - Sets the UseZMPGravityCompensation setting for this . - If true then modify gravity compensation based on stance (can reduce gravity compensation to zero if cofm is outside of balance area). - - - Default value = True. - - - - - Sets the GravityCompensation setting for this . - gravity compensation applied to joints in the effectorMask. If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 14.0f. - - - - - Sets the MuscleStiffnessLeftArm setting for this . - muscle stiffness applied to left arm (applied after stiffness). If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 10.0f. - - - - - Sets the MuscleStiffnessRightArm setting for this . - muscle stiffness applied to right arm (applied after stiffness). If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 10.0f. - - - - - Sets the MuscleStiffnessSpine setting for this . - muscle stiffness applied to spine (applied after stiffness). If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 10.0f. - - - - - Sets the MuscleStiffnessLeftLeg setting for this . - muscle stiffness applied to left leg (applied after stiffness). If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 10.0f. - - - - - Sets the MuscleStiffnessRightLeg setting for this . - muscle stiffness applied to right leg (applied after stiffness). If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 10.0f. - - - - - Sets the StiffnessLeftArm setting for this . - stiffness applied to left arm (applied after stiffness). If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 16.0f. - - - - - Sets the StiffnessRightArm setting for this . - stiffness applied to right arm (applied after stiffness). If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 16.0f. - - - - - Sets the StiffnessSpine setting for this . - stiffness applied to spine (applied after stiffness). If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 16.0f. - - - - - Sets the StiffnessLeftLeg setting for this . - stiffness applied to left leg (applied after stiffness). If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 16.0f. - - - - - Sets the StiffnessRightLeg setting for this . - stiffness applied to right leg (applied after stiffness). If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 16.0f. - - - - - Sets the DampingLeftArm setting for this . - damping applied to left arm (applied after stiffness). If stiffness -ve then not applied (use current setting). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the DampingRightArm setting for this . - damping applied to right arm (applied after stiffness). If stiffness -ve then not applied (use current setting). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the DampingSpine setting for this . - damping applied to spine (applied after stiffness). If stiffness-ve then not applied (use current setting). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the DampingLeftLeg setting for this . - damping applied to left leg (applied after stiffness). If stiffness-ve then not applied (use current setting). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the DampingRightLeg setting for this . - damping applied to right leg (applied after stiffness). If stiffness -ve then not applied (use current setting). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the GravCompLeftArm setting for this . - gravity compensation applied to left arm (applied after gravityCompensation). If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 14.0f. - - - - - Sets the GravCompRightArm setting for this . - gravity compensation applied to right arm (applied after gravityCompensation). If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 14.0f. - - - - - Sets the GravCompSpine setting for this . - gravity compensation applied to spine (applied after gravityCompensation). If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 14.0f. - - - - - Sets the GravCompLeftLeg setting for this . - gravity compensation applied to left leg (applied after gravityCompensation). If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 14.0f. - - - - - Sets the GravCompRightLeg setting for this . - gravity compensation applied to right leg (applied after gravityCompensation). If -ve then not applied (use current setting). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 14.0f. - - - - - Sets the ConnectedLeftHand setting for this . - Is the left hand constrained to the world/ an object: -1=auto decide by impact info, 0=no, 1=part fully constrained (not implemented:, 2=part point constraint, 3=line constraint). - - - Default value = 0. - Min value = -1. - Max value = 2. - - - - - Sets the ConnectedRightHand setting for this . - Is the right hand constrained to the world/ an object: -1=auto decide by impact info, 0=no, 1=part fully constrained (not implemented:, 2=part point constraint, 3=line constraint). - - - Default value = 0. - Min value = -1. - Max value = 2. - - - - - Sets the ConnectedLeftFoot setting for this . - Is the left foot constrained to the world/ an object: -2=do not set in animpose (e.g. let the balancer decide), -1=auto decide by impact info, 0=no, 1=part fully constrained (not implemented:, 2=part point constraint, 3=line constraint). - - - Default value = -2. - Min value = -2. - Max value = 2. - - - - - Sets the ConnectedRightFoot setting for this . - Is the right foot constrained to the world/ an object: -2=do not set in animpose (e.g. let the balancer decide),-1=auto decide by impact info, 0=no, 1=part fully constrained (not implemented:, 2=part point constraint, 3=line constraint). - - - Default value = -2. - Min value = -2. - Max value = 2. - - - - - Sets the AnimSource setting for this . - - - - - Sets the DampenSideMotionInstanceIndex setting for this . - LevelIndex of object to dampen side motion relative to. -1 means not used. - - - Default value = -1. - Min value = -1. - - - - - Creates a new Instance of the ArmsWindmillHelper for sending a ArmsWindmill to a given . - - The to send the ArmsWindmill to. - - - - Sets the LeftPartID setting for this . - ID of part that the circle uses as local space for positioning. - - - Default value = 10. - Min value = 0. - Max value = 21. - - - - - Sets the LeftRadius1 setting for this . - radius for first axis of ellipse. - - - Default value = 0.8f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LeftRadius2 setting for this . - radius for second axis of ellipse. - - - Default value = 0.8f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LeftSpeed setting for this . - speed of target around the circle. - - - Default value = 1.0f. - Min value = -2.0f. - Max value = 2.0f. - - - - - Sets the LeftNormal setting for this . - Euler Angles orientation of circle in space of part with part ID. - - - Default value = Vector3(0.0f, 0.2f, 0.2f). - - - - - Sets the LeftCentre setting for this . - centre of circle in the space of partID. - - - Default value = Vector3(0.0f, 0.5f, -0.1f). - - - - - Sets the RightPartID setting for this . - ID of part that the circle uses as local space for positioning. - - - Default value = 10. - Min value = 0. - Max value = 21. - - - - - Sets the RightRadius1 setting for this . - radius for first axis of ellipse. - - - Default value = 0.8f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RightRadius2 setting for this . - radius for second axis of ellipse. - - - Default value = 0.8f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RightSpeed setting for this . - speed of target around the circle. - - - Default value = 1.0f. - Min value = -2.0f. - Max value = 2.0f. - - - - - Sets the RightNormal setting for this . - Euler Angles orientation of circle in space of part with part ID. - - - Default value = Vector3(0.0f, -0.2f, -0.2f). - - - - - Sets the RightCentre setting for this . - centre of circle in the space of partID. - - - Default value = Vector3(0.0f, -0.5f, -0.1f). - - - - - Sets the ShoulderStiffness setting for this . - Stiffness applied to the shoulders. - - - Default value = 12.0f. - Min value = 1.0f. - Max value = 16.0f. - - - - - Sets the ShoulderDamping setting for this . - Damping applied to the shoulders. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the ElbowStiffness setting for this . - Stiffness applied to the elbows. - - - Default value = 12.0f. - Min value = 1.0f. - Max value = 16.0f. - - - - - Sets the ElbowDamping setting for this . - Damping applied to the elbows. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the LeftElbowMin setting for this . - Minimum left elbow bend. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.7f. - - - - - Sets the RightElbowMin setting for this . - Minimum right elbow bend. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.7f. - - - - - Sets the PhaseOffset setting for this . - phase offset(degrees) when phase synchronization is turned on. - - - Default value = 0.0f. - Min value = -360.0f. - Max value = 360.0f. - - - - - Sets the DragReduction setting for this . - how much to compensate for movement of character/target. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the IKtwist setting for this . - angle of elbow around twist axis ?. - - - Default value = 0.0f. - Min value = -3.1f. - Max value = 3.1f. - - - - - Sets the AngVelThreshold setting for this . - value of character angular speed above which adaptive arm motion starts. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the AngVelGain setting for this . - multiplies angular speed of character to get speed of arms. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the MirrorMode setting for this . - - - Default value = . - If leftArm parameters are used. - - - - - Sets the AdaptiveMode setting for this . - - - Default value = . - - - - - Sets the ForceSync setting for this . - toggles phase synchronization. - - - Default value = True. - - - - - Sets the UseLeft setting for this . - Use the left arm. - - - Default value = True. - - - - - Sets the UseRight setting for this . - Use the right arm. - - - Default value = True. - - - - - Sets the DisableOnImpact setting for this . - If true, each arm will stop windmilling if it hits the ground. - - - Default value = True. - - - - - Creates a new Instance of the ArmsWindmillAdaptiveHelper for sending a ArmsWindmillAdaptive to a given . - - The to send the ArmsWindmillAdaptive to. - - - - Sets the AngSpeed setting for this . - Controls the speed of the windmilling. - - - Default value = 6.3f. - Min value = 0.1f. - Max value = 10.0f. - - - - - Sets the BodyStiffness setting for this . - Controls how stiff the rest of the body is. - - - Default value = 11.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the Amplitude setting for this . - Controls how large the motion is, higher values means the character waves his arms in a massive arc. - - - Default value = 0.6f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the Phase setting for this . - Set to a non-zero value to desynchronise the left and right arms motion. - - - Default value = 0.0f. - Min value = -4.0f. - Max value = 8.0f. - - - - - Sets the ArmStiffness setting for this . - How stiff the arms are controls how pronounced the windmilling motion appears. - - - Default value = 14.1f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the LeftElbowAngle setting for this . - If not negative then left arm will blend to this angle. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 6.0f. - - - - - Sets the RightElbowAngle setting for this . - If not negative then right arm will blend to this angle. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 6.0f. - - - - - Sets the Lean1mult setting for this . - 0 arms go up and down at the side. 1 circles. 0..1 elipse. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the Lean1offset setting for this . - 0.f centre of circle at side. - - - Default value = 0.0f. - Min value = -6.0f. - Max value = 6.0f. - - - - - Sets the ElbowRate setting for this . - rate at which elbow tries to match *ElbowAngle. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 6.0f. - - - - - Sets the ArmDirection setting for this . - - - Default value = . - - - - - Sets the DisableOnImpact setting for this . - If true, each arm will stop windmilling if it hits the ground. - - - Default value = True. - - - - - Sets the SetBackAngles setting for this . - If true, back angles will be set to compliment arms windmill. - - - Default value = True. - - - - - Sets the UseAngMom setting for this . - If true, use angular momentum about com to choose arm circling direction. Otherwise use com angular velocity. - - - Default value = False. - - - - - Sets the BendLeftElbow setting for this . - If true, bend the left elbow to give a stuntman type scramble look. - - - Default value = False. - - - - - Sets the BendRightElbow setting for this . - If true, bend the right elbow to give a stuntman type scramble look. - - - Default value = False. - - - - - Sets the Mask setting for this . - Two character body-masking value, bitwise joint mask or bitwise logic string of two character body-masking value (see Active Pose notes for possible values). - - - Default value = ub. - - - - - Creates a new Instance of the BalancerCollisionsReactionHelper for sending a BalancerCollisionsReaction to a given . - - The to send the BalancerCollisionsReaction to. - - - - Sets the NumStepsTillSlump setting for this . - Begin slump and stop stepping after this many steps. - - - Default value = 4. - Min value = 0. - - - - - Sets the Stable2SlumpTime setting for this . - Time after becoming stable leaning against a wall that slump starts. - - - Default value = 0.0f. - Min value = 0.0f. - - - - - Sets the ExclusionZone setting for this . - Steps are ihibited to not go closer to the wall than this (after impact). - - - Default value = 0.2f. - Min value = 0.0f. - - - - - Sets the FootFrictionMultStart setting for this . - Friction multiplier applied to feet when slump starts. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the FootFrictionMultRate setting for this . - Friction multiplier reduced by this amount every second after slump starts (only if character is not slumping). - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 50.0f. - - - - - Sets the BackFrictionMultStart setting for this . - Friction multiplier applied to back when slump starts. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the BackFrictionMultRate setting for this . - Friction multiplier reduced by this amount every second after slump starts (only if character is not slumping). - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 50.0f. - - - - - Sets the ImpactLegStiffReduction setting for this . - Reduce the stiffness of the legs by this much as soon as an impact is detected. - - - Default value = 3.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the SlumpLegStiffReduction setting for this . - Reduce the stiffness of the legs by this much as soon as slump starts. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the SlumpLegStiffRate setting for this . - Rate at which the stiffness of the legs is reduced during slump. - - - Default value = 8.0f. - Min value = 0.0f. - Max value = 50.0f. - - - - - Sets the ReactTime setting for this . - Time that the character reacts to the impact with ub flinch and writhe. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the ImpactExagTime setting for this . - Time that the character exaggerates impact with spine. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the GlanceSpinTime setting for this . - Duration that the glance torque is applied for. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the GlanceSpinMag setting for this . - Magnitude of the glance torque. - - - Default value = 50.0f. - Min value = 0.0f. - Max value = 1000.0f. - - - - - Sets the GlanceSpinDecayMult setting for this . - multiplier used when decaying torque spin over time. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the IgnoreColWithIndex setting for this . - used so impact with the character that is pushing you over doesn't set off the behaviour. - - - Default value = -2. - Min value = -2. - - - - - Sets the SlumpMode setting for this . - 0=Normal slump(less movement then slump and movement LT small), 1=fast slump, 2=less movement then slump. - - - Default value = 1. - Min value = 0. - Max value = 2. - - - - - Sets the ReboundMode setting for this . - 0=fall2knees/slump if shot not running, 1=stumble, 2=slump, 3=restart. - - - Default value = 0. - Min value = 0. - Max value = 3. - - - - - Sets the IgnoreColMassBelow setting for this . - collisions with non-fixed objects with mass below this will not set this behaviour off (e.g. ignore guns). - - - Default value = 20.0f. - Min value = -1.0f. - Max value = 1000.0f. - - - - - Sets the ForwardMode setting for this . - 0=slump, 1=fallToKnees if shot is running, otherwise slump. - - - Default value = 0. - Min value = 0. - Max value = 1. - - - - - Sets the TimeToForward setting for this . - time after a forwards impact before forwardMode is called (leave sometime for a rebound or brace - the min of 0.1 is to ensure fallOverWall can start although it probably needs only 1or2 frames for the probes to return). - - - Default value = 0.5f. - Min value = 0.1f. - Max value = 2.0f. - - - - - Sets the ReboundForce setting for this . - if forwards impact only: cheat force to try to get the character away from the wall. 3 is a good value. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the BraceWall setting for this . - Brace against wall if forwards impact(at the moment only if bodyBalance is running/in charge of arms). - - - Default value = True. - - - - - Sets the IgnoreColVolumeBelow setting for this . - collisions with non-fixed objects with volume below this will not set this behaviour off. - - - Default value = 0.1f. - Min value = -1.0f. - Max value = 1000.0f. - - - - - Sets the FallOverWallDrape setting for this . - use fallOverWall as the main drape reaction. - - - Default value = True. - - - - - Sets the FallOverHighWalls setting for this . - trigger fall over wall if hit up to spine2 else only if hit up to spine1. - - - Default value = False. - - - - - Sets the Snap setting for this . - Add a Snap to when you hit a wall to emphasize the hit. - - - Default value = False. - - - - - Sets the SnapMag setting for this . - The magnitude of the snap reaction. - - - Default value = -0.6f. - Min value = -10.0f. - Max value = 10.0f. - - - - - Sets the SnapDirectionRandomness setting for this . - The character snaps in a prescribed way (decided by bullet direction) - Higher the value the more random this direction is. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the SnapLeftArm setting for this . - snap the leftArm. - - - Default value = False. - - - - - Sets the SnapRightArm setting for this . - snap the rightArm. - - - Default value = False. - - - - - Sets the SnapLeftLeg setting for this . - snap the leftLeg. - - - Default value = False. - - - - - Sets the SnapRightLeg setting for this . - snap the rightLeg. - - - Default value = False. - - - - - Sets the SnapSpine setting for this . - snap the spine. - - - Default value = True. - - - - - Sets the SnapNeck setting for this . - snap the neck. - - - Default value = True. - - - - - Sets the SnapPhasedLegs setting for this . - Legs are either in phase with each other or not. - - - Default value = True. - - - - - Sets the SnapHipType setting for this . - type of hip reaction 0=none, 1=side2side 2=steplike. - - - Default value = 0. - Min value = 0. - Max value = 2. - - - - - Sets the UnSnapInterval setting for this . - Interval before applying reverse snap. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the UnSnapRatio setting for this . - The magnitude of the reverse snap. - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the SnapUseTorques setting for this . - use torques to make the snap otherwise use a change in the parts angular velocity. - - - Default value = True. - - - - - Sets the ImpactWeaknessZeroDuration setting for this . - duration for which the character's upper body stays at minimum stiffness (not quite zero). - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ImpactWeaknessRampDuration setting for this . - duration of the ramp to bring the character's upper body stiffness back to normal levels. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ImpactLoosenessAmount setting for this . - how loose the character is on impact. between 0 and 1. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ObjectBehindVictim setting for this . - detected an object behind a shot victim in the direction of a bullet?. - - - Default value = False. - - - - - Sets the ObjectBehindVictimPos setting for this . - the intersection pos of a detected object behind a shot victim in the direction of a bullet. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the ObjectBehindVictimNormal setting for this . - the normal of a detected object behind a shot victim in the direction of a bullet. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - Min value = -1.0f. - Max value = 1.0f. - - - - - Creates a new Instance of the BodyBalanceHelper for sending a BodyBalance to a given . - - The to send the BodyBalance to. - - - - Sets the ArmStiffness setting for this . - NB. WAS m_bodyStiffness ClaviclesStiffness=9.0f. - - - Default value = 9.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the Elbow setting for this . - How much the elbow swings based on the leg movement. - - - Default value = 0.9f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the Shoulder setting for this . - How much the shoulder(lean1) swings based on the leg movement. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the ArmDamping setting for this . - NB. WAS m_damping NeckDamping=1 ClaviclesDamping=1. - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the UseHeadLook setting for this . - enable and provide a look-at target to make the character's head turn to face it while balancing. - - - Default value = False. - - - - - Sets the HeadLookPos setting for this . - position of thing to look at. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the HeadLookInstanceIndex setting for this . - level index of thing to look at. - - - Default value = -1. - Min value = -1. - - - - - Sets the SpineStiffness setting for this . - - - Default value = 10.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the SomersaultAngle setting for this . - multiplier of the somersault 'angle' (lean forward/back) for arms out (lean2). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the SomersaultAngleThreshold setting for this . - Amount of somersault 'angle' before m_somersaultAngle is used for ArmsOut. Unless drunk - DO NOT EXCEED 0.8. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the SideSomersaultAngle setting for this . - Amount of side somersault 'angle' before sideSomersault is used for ArmsOut. Unless drunk - DO NOT EXCEED 0.8. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the SideSomersaultAngleThreshold setting for this . - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the BackwardsAutoTurn setting for this . - Automatically turn around if moving backwards. - - - Default value = False. - - - - - Sets the TurnWithBumpRadius setting for this . - 0.9 is a sensible value. If pusher within this distance then turn to get out of the way of the pusher. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 10.0f. - - - - - Sets the BackwardsArms setting for this . - Bend elbows, relax shoulders and inhibit spine twist when moving backwards. - - - Default value = False. - - - - - Sets the BlendToZeroPose setting for this . - Blend upper body to zero pose as the character comes to rest. If false blend to a stored pose. - - - Default value = False. - - - - - Sets the ArmsOutOnPush setting for this . - Put arms out based on lean2 of legs, or angular velocity (lean or twist), or lean (front/back or side/side). - - - Default value = True. - - - - - Sets the ArmsOutOnPushMultiplier setting for this . - Arms out based on lean2 of the legs to simulate being pushed. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the ArmsOutOnPushTimeout setting for this . - number of seconds before turning off the armsOutOnPush response only for Arms out based on lean2 of the legs (NOT for the angle or angular velocity). - - - Default value = 1.1f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the ReturningToBalanceArmsOut setting for this . - range 0:1 0 = don't raise arms if returning to upright position, 0.x = 0.x*raise arms based on angvel and 'angle' settings, 1 = raise arms based on angvel and 'angle' settings. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ArmsOutStraightenElbows setting for this . - multiplier for straightening the elbows based on the amount of arms out(lean2) 0 = dont straighten elbows. Otherwise straighten elbows proportionately to armsOut. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ArmsOutMinLean2 setting for this . - Minimum desiredLean2 applied to shoulder (to stop arms going above shoulder height or not). - - - Default value = -9.9f. - Min value = -10.0f. - Max value = 0.0f. - - - - - Sets the SpineDamping setting for this . - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the UseBodyTurn setting for this . - - - Default value = True. - - - - - Sets the ElbowAngleOnContact setting for this . - on contact with upperbody the desired elbow angle is set to at least this value. - - - Default value = 1.9f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the BendElbowsTime setting for this . - Time after contact (with Upper body) that the min m_elbowAngleOnContact is applied. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the BendElbowsGait setting for this . - Minimum desired angle of elbow during non contact arm swing. - - - Default value = 0.7f. - Min value = -3.0f. - Max value = 3.0f. - - - - - Sets the HipL2ArmL2 setting for this . - mmmmdrunk = 0.2 multiplier of hip lean2 (star jump) to give shoulder lean2 (flapping). - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ShoulderL2 setting for this . - mmmmdrunk = 0.7 shoulder lean2 offset. - - - Default value = 0.5f. - Min value = -3.0f. - Max value = 3.0f. - - - - - Sets the ShoulderL1 setting for this . - mmmmdrunk 1.1 shoulder lean1 offset (+ve frankenstein). - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 2.0f. - - - - - Sets the ShoulderTwist setting for this . - mmmmdrunk = 0.0 shoulder twist. - - - Default value = -0.4f. - Min value = -3.0f. - Max value = 3.0f. - - - - - Sets the HeadLookAtVelProb setting for this . - Probability [0-1] that headLook will be looking in the direction of velocity when stepping. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the TurnOffProb setting for this . - Weighted Probability that turn will be off. This is one of six turn type weights. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Turn2VelProb setting for this . - Weighted Probability of turning towards velocity. This is one of six turn type weights. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TurnAwayProb setting for this . - Weighted Probability of turning away from headLook target. This is one of six turn type weights. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TurnLeftProb setting for this . - Weighted Probability of turning left. This is one of six turn type weights. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TurnRightProb setting for this . - Weighted Probability of turning right. This is one of six turn type weights. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Turn2TargetProb setting for this . - Weighted Probability of turning towards headLook target. This is one of six turn type weights. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the AngVelMultiplier setting for this . - somersault, twist, sideSomersault) multiplier of the angular velocity for arms out (lean2) (somersault, twist, sideSomersault). - - - Default value = Vector3(4.0f, 1.0f, 4.0f). - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the AngVelThreshold setting for this . - somersault, twist, sideSomersault) threshold above which angVel is used for arms out (lean2) Unless drunk - DO NOT EXCEED 7.0 for each component. - - - Default value = Vector3(1.2f, 3.0f, 1.2f). - Min value = 0.0f. - Max value = 40.0f. - - - - - Sets the BraceDistance setting for this . - if -ve then do not brace. distance from object at which to raise hands to brace 0.5 good if newBrace=true - otherwise 0.65. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the TargetPredictionTime setting for this . - time expected to get arms up from idle. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ReachAbsorbtionTime setting for this . - larger values and he absorbs the impact more. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the BraceStiffness setting for this . - stiffness of character. catch_fall stiffness scales with this too, with its defaults at this values default. - - - Default value = 12.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the MinBraceTime setting for this . - minimum bracing time so the character doesn't look twitchy. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the TimeToBackwardsBrace setting for this . - time before arm brace kicks in when hit from behind. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the HandsDelayMin setting for this . - If bracing with 2 hands delay one hand by at least this amount of time to introduce some asymmetry. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the HandsDelayMax setting for this . - If bracing with 2 hands delay one hand by at most this amount of time to introduce some asymmetry. - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the BraceOffset setting for this . - braceTarget is global headLookPos plus braceOffset m in the up direction. - - - Default value = 0.0f. - Min value = -2.0f. - Max value = 2.0f. - - - - - Sets the MoveRadius setting for this . - if -ve don't move away from pusher unless moveWhenBracing is true and braceDistance GT 0.0f. if the pusher is closer than moveRadius then move away from it. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 2.0f. - - - - - Sets the MoveAmount setting for this . - amount of leanForce applied away from pusher. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the MoveWhenBracing setting for this . - Only move away from pusher when bracing against pusher. - - - Default value = False. - - - - - Creates a new Instance of the BodyFoetalHelper for sending a BodyFoetal to a given . - - The to send the BodyFoetal to. - - - - Sets the Stiffness setting for this . - The stiffness of the body determines how fast the character moves into the position, and how well that they hold it. - - - Default value = 9.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the DampingFactor setting for this . - Sets damping value for the character joints. - - - Default value = 1.4f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the Asymmetry setting for this . - A value between 0-1 that controls how asymmetric the results are by varying stiffness across the body. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RandomSeed setting for this . - Random seed used to generate asymmetry values. - - - Default value = 100. - Min value = 0. - - - - - Sets the BackTwist setting for this . - Amount of random back twist to add. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Mask setting for this . - Two character body-masking value, bitwise joint mask or bitwise logic string of two character body-masking value (see Active Pose notes for possible values). - - - Default value = fb. - - - - - Creates a new Instance of the BodyRollUpHelper for sending a BodyRollUp to a given . - - The to send the BodyRollUp to. - - - - Sets the Stiffness setting for this . - stiffness of whole body. - - - Default value = 10.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the UseArmToSlowDown setting for this . - the degree to which the character will try to stop a barrel roll with his arms. - - - Default value = 1.3f. - Min value = -2.0f. - Max value = 3.0f. - - - - - Sets the ArmReachAmount setting for this . - the likeliness of the character reaching for the ground with its arms. - - - Default value = 1.4f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the Mask setting for this . - Two character body-masking value, bitwise joint mask or bitwise logic string of two character body-masking value (see Active Pose notes for possible values). - - - Default value = fb. - - - - - Sets the LegPush setting for this . - used to keep rolling down slope, 1 is full (kicks legs out when pointing upwards). - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 2.0f. - - - - - Sets the AsymmetricalLegs setting for this . - 0 is no leg asymmetry in 'foetal' position. greater than 0 a asymmetricalLegs-rand(30%), added/minus each joint of the legs in radians. Random number changes about once every roll. 0.4 gives a lot of asymmetry. - - - Default value = 0.0f. - Min value = -2.0f. - Max value = 2.0f. - - - - - Sets the NoRollTimeBeforeSuccess setting for this . - time that roll velocity has to be lower than rollVelForSuccess, before success message is sent. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the RollVelForSuccess setting for this . - lower threshold for roll velocity at which success message can be sent. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RollVelLinearContribution setting for this . - contribution of linear COM velocity to roll Velocity (if 0, roll velocity equal to COM angular velocity). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the VelocityScale setting for this . - Scales perceived body velocity. The higher this value gets, the more quickly the velocity measure saturates, resulting in a tighter roll at slower speeds. (NB: Set to 1 to match earlier behaviour). - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the VelocityOffset setting for this . - Offsets perceived body velocity. Increase to create larger "dead zone" around zero velocity where character will be less rolled. (NB: Reset to 0 to match earlier behaviour). - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ApplyMinMaxFriction setting for this . - Controls whether or not behaviour enforces min/max friction. - - - Default value = True. - - - - - Creates a new Instance of the BodyWritheHelper for sending a BodyWrithe to a given . - - The to send the BodyWrithe to. - - - - Sets the ArmStiffness setting for this . - - - Default value = 13.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the BackStiffness setting for this . - - - Default value = 13.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the LegStiffness setting for this . - The stiffness of the character will determine how 'determined' a writhe this is - high values will make him thrash about wildly. - - - Default value = 13.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the ArmDamping setting for this . - damping amount, less is underdamped. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the BackDamping setting for this . - damping amount, less is underdamped. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the LegDamping setting for this . - damping amount, less is underdamped. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the ArmPeriod setting for this . - Controls how fast the writhe is executed, smaller values make faster motions. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the BackPeriod setting for this . - Controls how fast the writhe is executed, smaller values make faster motions. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the LegPeriod setting for this . - Controls how fast the writhe is executed, smaller values make faster motions. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the Mask setting for this . - Two character body-masking value, bitwise joint mask or bitwise logic string of two character body-masking value (see Active Pose notes for possible values). - - - Default value = fb. - - - - - Sets the ArmAmplitude setting for this . - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the BackAmplitude setting for this . - scales the amount of writhe. 0 = no writhe. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the LegAmplitude setting for this . - scales the amount of writhe. 0 = no writhe. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the ElbowAmplitude setting for this . - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the KneeAmplitude setting for this . - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the RollOverFlag setting for this . - Flag to set trying to rollOver. - - - Default value = False. - - - - - Sets the BlendArms setting for this . - Blend the writhe arms with the current desired arms (0=don't apply any writhe, 1=only writhe). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the BlendBack setting for this . - Blend the writhe spine and neck with the current desired (0=don't apply any writhe, 1=only writhe). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the BlendLegs setting for this . - Blend the writhe legs with the current desired legs (0=don't apply any writhe, 1=only writhe). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ApplyStiffness setting for this . - Use writhe stiffnesses if true. If false don't set any stiffnesses. - - - Default value = True. - - - - - Sets the OnFire setting for this . - Extra shoulderBlend. Rolling:one way only, maxRollOverTime, rollOverRadius, doesn't reduce arm stiffness to help rolling. No shoulder twist. - - - Default value = False. - - - - - Sets the ShoulderLean1 setting for this . - Blend writhe shoulder desired lean1 with this angle in RAD. Note that onFire has to be set to true for this parameter to take any effect. - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 6.3f. - - - - - Sets the ShoulderLean2 setting for this . - Blend writhe shoulder desired lean2 with this angle in RAD. Note that onFire has to be set to true for this parameter to take any effect. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 6.3f. - - - - - Sets the Lean1BlendFactor setting for this . - Shoulder desired lean1 with shoulderLean1 angle blend factor. Set it to 0 to use original shoulder withe desired lean1 angle for shoulders. Note that onFire has to be set to true for this parameter to take any effect. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Lean2BlendFactor setting for this . - Shoulder desired lean2 with shoulderLean2 angle blend factor. Set it to 0 to use original shoulder withe desired lean2 angle for shoulders. Note that onFire has to be set to true for this parameter to take any effect. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RollTorqueScale setting for this . - Scale rolling torque that is applied to character spine. - - - Default value = 150.0f. - Min value = 0.0f. - Max value = 300.0f. - - - - - Sets the MaxRollOverTime setting for this . - Rolling torque is ramped down over time. At this time in seconds torque value converges to zero. Use this parameter to restrict time the character is rolling. Note that onFire has to be set to true for this parameter to take any effect. - - - Default value = 8.0f. - Min value = 0.0f. - Max value = 60.0f. - - - - - Sets the RollOverRadius setting for this . - Rolling torque is ramped down with distance measured from position where character hit the ground and started rolling. At this distance in meters torque value converges to zero. Use this parameter to restrict distance the character travels due to rolling. Note that onFire has to be set to true for this parameter to take any effect. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Creates a new Instance of the BraceForImpactHelper for sending a BraceForImpact to a given . - - The to send the BraceForImpact to. - - - - Sets the BraceDistance setting for this . - distance from object at which to raise hands to brace 0.5 good if newBrace=true - otherwise 0.65. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TargetPredictionTime setting for this . - time epected to get arms up from idle. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ReachAbsorbtionTime setting for this . - larger values and he absorbs the impact more. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the InstanceIndex setting for this . - levelIndex of object to brace. - - - Default value = -1. - Min value = -1. - - - - - Sets the BodyStiffness setting for this . - stiffness of character. catch_fall stiffness scales with this too, with its defaults at this values default. - - - Default value = 12.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the GrabDontLetGo setting for this . - Once a constraint is made, keep reaching with whatever hand is allowed. - - - Default value = False. - - - - - Sets the GrabStrength setting for this . - strength in hands for grabbing (kg m/s), -1 to ignore/disable. - - - Default value = 40.0f. - Min value = -1.0f. - Max value = 1000.0f. - - - - - Sets the GrabDistance setting for this . - Relative distance at which the grab starts. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the GrabReachAngle setting for this . - Angle from front at which the grab activates. If the point is outside this angle from front will not try to grab. - - - Default value = 1.5f. - Min value = 0.0f. - Max value = 3.2f. - - - - - Sets the GrabHoldTimer setting for this . - amount of time, in seconds, before grab automatically bails. - - - Default value = 2.5f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the MaxGrabCarVelocity setting for this . - Don't try to grab a car moving above this speed mmmmtodo make this the relative velocity of car to character?. - - - Default value = 95.0f. - Min value = 0.0f. - Max value = 1000.0f. - - - - - Sets the LegStiffness setting for this . - Balancer leg stiffness mmmmtodo remove this parameter and use configureBalance?. - - - Default value = 12.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the TimeToBackwardsBrace setting for this . - time before arm brace kicks in when hit from behind. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the Look setting for this . - position to look at, e.g. the driver. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the Pos setting for this . - location of the front part of the object to brace against. This should be the centre of where his hands should meet the object. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the MinBraceTime setting for this . - minimum bracing time so the character doesn't look twitchy. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the HandsDelayMin setting for this . - If bracing with 2 hands delay one hand by at least this amount of time to introduce some asymmetry. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the HandsDelayMax setting for this . - If bracing with 2 hands delay one hand by at most this amount of time to introduce some asymmetry. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the MoveAway setting for this . - move away from the car (if in reaching zone). - - - Default value = False. - - - - - Sets the MoveAwayAmount setting for this . - forceLean away amount (-ve is lean towards). - - - Default value = 0.1f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the MoveAwayLean setting for this . - Lean away amount (-ve is lean towards). - - - Default value = 0.1f. - Min value = -0.5f. - Max value = 0.5f. - - - - - Sets the MoveSideways setting for this . - Amount of sideways movement if at the front or back of the car to add to the move away from car. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the BbArms setting for this . - Use bodyBalance arms for the default (non bracing) behaviour if bodyBalance is active. - - - Default value = False. - - - - - Sets the NewBrace setting for this . - Use the new brace prediction code. - - - Default value = True. - - - - - Sets the BraceOnImpact setting for this . - If true then if a shin or thigh is in contact with the car then brace. NB: newBrace must be true. For those situations where the car has pushed the ped backwards (at the same speed as the car) before the behaviour has been started and so doesn't predict an impact. - - - Default value = False. - - - - - Sets the Roll2Velocity setting for this . - When rollDownStairs is running use roll2Velocity to control the helper torques (this only attempts to roll to the chaarcter's velocity not some default linear velocity mag. - - - Default value = False. - - - - - Sets the RollType setting for this . - 0 = original/roll off/stay on car: Roll with character velocity, 1 = //Gentle: roll off/stay on car = use relative velocity of character to car to roll against, 2 = //roll over car: Roll against character velocity. i.e. roll against any velocity picked up by hitting car, 3 = //Gentle: roll over car: use relative velocity of character to car to roll with. - - - Default value = 3. - Min value = 0. - Max value = 3. - - - - - Sets the SnapImpacts setting for this . - Exaggerate impacts using snap. - - - Default value = False. - - - - - Sets the SnapImpact setting for this . - Exaggeration amount of the initial impact (legs). +ve fold with car impact (as if pushed at hips in the car velocity direction). -ve fold away from car impact. - - - Default value = 7.0f. - Min value = -20.0f. - Max value = 20.0f. - - - - - Sets the SnapBonnet setting for this . - Exaggeration amount of the secondary (torso) impact with bonnet. +ve fold with car impact (as if pushed at hips by the impact normal). -ve fold away from car impact. - - - Default value = -7.0f. - Min value = -20.0f. - Max value = 20.0f. - - - - - Sets the SnapFloor setting for this . - Exaggeration amount of the impact with the floor after falling off of car +ve fold with floor impact (as if pushed at hips in the impact normal direction). -ve fold away from car impact. - - - Default value = 7.0f. - Min value = -20.0f. - Max value = 20.0f. - - - - - Sets the DampVel setting for this . - Damp out excessive spin and upward velocity when on car. - - - Default value = False. - - - - - Sets the DampSpin setting for this . - Amount to damp spinning by (cartwheeling and somersaulting). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 40.0f. - - - - - Sets the DampUpVel setting for this . - Amount to damp upward velocity by to limit the amount of air above the car the character can get. - - - Default value = 10.0f. - Min value = 0.0f. - Max value = 40.0f. - - - - - Sets the DampSpinThresh setting for this . - Angular velocity above which we start damping. - - - Default value = 4.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the DampUpVelThresh setting for this . - Upward velocity above which we start damping. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the GsHelp setting for this . - Enhance a glancing spin with the side of the car by modulating body friction. - - - Default value = False. - - - - - Sets the GsEndMin setting for this . - ID for glancing spin. min depth to be considered from either end (front/rear) of a car (-ve is inside the car area). - - - Default value = -0.1f. - Min value = -10.0f. - Max value = 1.0f. - - - - - Sets the GsSideMin setting for this . - ID for glancing spin. min depth to be considered on the side of a car (-ve is inside the car area). - - - Default value = -0.2f. - Min value = -10.0f. - Max value = 1.0f. - - - - - Sets the GsSideMax setting for this . - ID for glancing spin. max depth to be considered on the side of a car (+ve is outside the car area). - - - Default value = 0.5f. - Min value = -10.0f. - Max value = 1.0f. - - - - - Sets the GsUpness setting for this . - ID for glancing spin. Character has to be more upright than this value for it to be considered on the side of a car. Fully upright = 1, upsideDown = -1. Max Angle from upright is acos(gsUpness). - - - Default value = 0.9f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the GsCarVelMin setting for this . - ID for glancing spin. Minimum car velocity. - - - Default value = 3.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the GsScale1Foot setting for this . - Apply gsFricScale1 to the foot if colliding with car. (Otherwise foot friction - with the ground - is determined by gsFricScale2 if it is in gsFricMask2). - - - Default value = True. - - - - - Sets the GsFricScale1 setting for this . - Glancing spin help. Friction scale applied when to the side of the car. e.g. make the character spin more by upping the friction against the car. - - - Default value = 8.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the GsFricMask1 setting for this . - Glancing spin help. Two character body-masking value, bitwise joint mask or bitwise logic string of two character body-masking value (see notes for explanation). Note gsFricMask1 and gsFricMask2 are made independent by the code so you can have fb for gsFricMask1 but gsFricScale1 will not be applied to any bodyParts in gsFricMask2. - - - Default value = fb. - - - - - Sets the GsFricScale2 setting for this . - Glancing spin help. Friction scale applied when to the side of the car. e.g. make the character spin more by lowering the feet friction. You could also lower the wrist friction here to stop the car pulling along the hands i.e. gsFricMask2 = la|uw. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the GsFricMask2 setting for this . - Two character body-masking value, bitwise joint mask or bitwise logic string of two character body-masking value (see notes for explanation). Note gsFricMask1 and gsFricMask2 are made independent by the code so you can have fb for gsFricMask1 but gsFricScale1 will not be applied to any bodyParts in gsFricMask2. - - - Default value = la. - - - - - Simple buoyancy model. No character movement just fluid forces/torques added to parts. - - - - - Creates a new Instance of the BuoyancyHelper for sending a Buoyancy to a given . - - The to send the Buoyancy to. - - Simple buoyancy model. No character movement just fluid forces/torques added to parts. - - - - - Sets the SurfacePoint setting for this . - Arbitrary point on surface of water. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the SurfaceNormal setting for this . - Normal to surface of water. - - - Default value = Vector3(0.0f, 0.0f, 1.0f). - Min value = 0.0f. - - - - - Sets the Buoyancy setting for this . - Buoyancy multiplier. - - - Default value = 1.0f. - Min value = 0.0f. - - - - - Sets the ChestBuoyancy setting for this . - Buoyancy mulplier for spine2/3. Helps character float upright. - - - Default value = 8.0f. - Min value = 0.0f. - - - - - Sets the Damping setting for this . - Damping for submerged parts. - - - Default value = 40.0f. - Min value = 0.0f. - - - - - Sets the Righting setting for this . - Use righting torque to being character face-up in water?. - - - Default value = True. - - - - - Sets the RightingStrength setting for this . - Strength of righting torque. - - - Default value = 25.0f. - Min value = 0.0f. - - - - - Sets the RightingTime setting for this . - How long to wait after chest hits water to begin righting torque. - - - Default value = 1.0f. - Min value = 0.0f. - - - - - Creates a new Instance of the CatchFallHelper for sending a CatchFall to a given . - - The to send the CatchFall to. - - - - Sets the TorsoStiffness setting for this . - stiffness of torso. - - - Default value = 9.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the LegsStiffness setting for this . - stiffness of legs. - - - Default value = 6.0f. - Min value = 4.0f. - Max value = 16.0f. - - - - - Sets the ArmsStiffness setting for this . - stiffness of arms. - - - Default value = 15.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the BackwardsMinArmOffset setting for this . - 0 will prop arms up near his shoulders. -0.3 will place hands nearer his behind. - - - Default value = -0.3f. - Min value = -1.0f. - Max value = 0.0f. - - - - - Sets the ForwardMaxArmOffset setting for this . - 0 will point arms down with angled body, 0.45 will point arms forward a bit to catch nearer the head. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ZAxisSpinReduction setting for this . - Tries to reduce the spin around the Z axis. Scale 0 - 1. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ExtraSit setting for this . - Scale extra-sit value 0..1. Setting to 0 helps with arched-back issues. Set to 1 for a more alive-looking finish. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the UseHeadLook setting for this . - Toggle to use the head look in this behaviour. - - - Default value = True. - - - - - Sets the Mask setting for this . - Two character body-masking value, bitwise joint mask or bitwise logic string of two character body-masking value (see Active Pose notes for possible values). - - - Default value = fb. - - - - - Creates a new Instance of the ElectrocuteHelper for sending a Electrocute to a given . - - The to send the Electrocute to. - - - - Sets the StunMag setting for this . - The magnitude of the reaction. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the InitialMult setting for this . - initialMult*stunMag = The magnitude of the 1st snap reaction (other mults are applied after this). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the LargeMult setting for this . - largeMult*stunMag = The magnitude of a random large snap reaction (other mults are applied after this). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the LargeMinTime setting for this . - min time to next large random snap (about 14 snaps with stunInterval = 0.07s). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 200.0f. - - - - - Sets the LargeMaxTime setting for this . - max time to next large random snap (about 28 snaps with stunInterval = 0.07s). - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 200.0f. - - - - - Sets the MovingMult setting for this . - movingMult*stunMag = The magnitude of the reaction if moving(comVelMag) faster than movingThresh. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the BalancingMult setting for this . - balancingMult*stunMag = The magnitude of the reaction if balancing = (not lying on the floor/ not upper body not collided) and not airborne. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the AirborneMult setting for this . - airborneMult*stunMag = The magnitude of the reaction if airborne. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the MovingThresh setting for this . - If moving(comVelMag) faster than movingThresh then mvingMult applied to stunMag. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the StunInterval setting for this . - Direction flips every stunInterval. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the DirectionRandomness setting for this . - The character vibrates in a prescribed way - Higher the value the more random this direction is. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LeftArm setting for this . - vibrate the leftArm. - - - Default value = True. - - - - - Sets the RightArm setting for this . - vibrate the rightArm. - - - Default value = True. - - - - - Sets the LeftLeg setting for this . - vibrate the leftLeg. - - - Default value = True. - - - - - Sets the RightLeg setting for this . - vibrate the rightLeg. - - - Default value = True. - - - - - Sets the Spine setting for this . - vibrate the spine. - - - Default value = True. - - - - - Sets the Neck setting for this . - vibrate the neck. - - - Default value = True. - - - - - Sets the PhasedLegs setting for this . - Legs are either in phase with each other or not. - - - Default value = True. - - - - - Sets the ApplyStiffness setting for this . - let electrocute apply a (higher generally) stiffness to the character whilst being vibrated. - - - Default value = True. - - - - - Sets the UseTorques setting for this . - use torques to make vibration otherwise use a change in the parts angular velocity. - - - Default value = True. - - - - - Sets the HipType setting for this . - type of hip reaction 0=none, 1=side2side 2=steplike. - - - Default value = 2. - Min value = 0. - Max value = 2. - - - - - Creates a new Instance of the FallOverWallHelper for sending a FallOverWall to a given . - - The to send the FallOverWall to. - - - - Sets the BodyStiffness setting for this . - stiffness of the body, roll up stiffness scales with this and defaults at this default value. - - - Default value = 9.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the Damping setting for this . - Damping in the effectors. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the MagOfForce setting for this . - Magnitude of the falloverWall helper force. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the MaxDistanceFromPelToHitPoint setting for this . - The maximum distance away from the pelvis that hit points will be registered. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the MaxForceDist setting for this . - maximum distance between hitPoint and body part at which forces are applied to part. - - - Default value = 0.8f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the StepExclusionZone setting for this . - Specifies extent of area in front of the wall in which balancer won't try to take another step. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the MinLegHeight setting for this . - minimum height of pelvis above feet at which fallOverWall is attempted. - - - Default value = 0.4f. - Min value = 0.1f. - Max value = 2.0f. - - - - - Sets the BodyTwist setting for this . - amount of twist to apply to the spine as the character tries to fling himself over the wall, provides more of a believable roll but increases the amount of lateral space the character needs to successfully flip. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the MaxTwist setting for this . - max angle the character can twist before twsit helper torques are turned off. - - - Default value = 3.1f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the FallOverWallEndA setting for this . - One end of the wall to try to fall over. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the FallOverWallEndB setting for this . - One end of the wall over which we are trying to fall over. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the ForceAngleAbort setting for this . - The angle abort threshold. - - - Default value = -0.2f. - - - - - Sets the ForceTimeOut setting for this . - The force time out. - - - Default value = 2.0f. - - - - - Sets the MoveArms setting for this . - Lift the arms up if true. Do nothing with the arms if false (eg when using catchfall arms or brace etc). - - - Default value = True. - - - - - Sets the MoveLegs setting for this . - Move the legs if true. Do nothing with the legs if false (eg when using dynamicBalancer etc). - - - Default value = True. - - - - - Sets the BendSpine setting for this . - Bend spine to help falloverwall if true. Do nothing with the spine if false. - - - Default value = True. - - - - - Sets the AngleDirWithWallNormal setting for this . - Maximum angle in degrees (between the direction of the velocity of the COM and the wall normal) to start to apply forces and torques to fall over the wall. - - - Default value = 180.0f. - Min value = 0.0f. - Max value = 180.0f. - - - - - Sets the LeaningAngleThreshold setting for this . - Maximum angle in degrees (between the vertical vector and a vector from pelvis to lower neck) to start to apply forces and torques to fall over the wall. - - - Default value = 180.0f. - Min value = 0.0f. - Max value = 180.0f. - - - - - Sets the MaxAngVel setting for this . - if the angular velocity is higher than maxAngVel, the torques and forces are not applied. - - - Default value = 2.0f. - Min value = -1.0f. - Max value = 30.0f. - - - - - Sets the AdaptForcesToLowWall setting for this . - Will reduce the magnitude of the forces applied to the character to help him to fall over wall. - - - Default value = False. - - - - - Sets the MaxWallHeight setting for this . - Maximum height (from the lowest foot) to start to apply forces and torques to fall over the wall. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 3.0f. - - - - - Sets the DistanceToSendSuccessMessage setting for this . - Minimum distance between the pelvis and the wall to send the success message. If negative doesn't take this parameter into account when sending feedback. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 3.0f. - - - - - Sets the RollingBackThr setting for this . - Value of the angular velocity about the wallEgde above which the character is considered as rolling backwards i.e. goes in to fow_RollingBack state. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the RollingPotential setting for this . - On impact with the wall if the rollingPotential(calculated from the characters linear velocity w.r.t the wall) is greater than this value the character will try to go over the wall otherwise it won't try (fow_Aborted). - - - Default value = 0.3f. - Min value = -1.0f. - Max value = 10.0f. - - - - - Sets the UseArmIK setting for this . - Try to reach the wallEdge. To configure the IK : use limitAngleBack, limitAngleFront and limitAngleTotallyBack. - - - Default value = False. - - - - - Sets the ReachDistanceFromHitPoint setting for this . - distance from predicted hitpoint where each hands will try to reach the wall. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the MinReachDistanceFromHitPoint setting for this . - minimal distance from predicted hitpoint where each hands will try to reach the wall. Used if the hand target is outside the wall Edge. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the AngleTotallyBack setting for this . - max angle in degrees (between 1.the vector between two hips and 2. wallEdge) to try to reach the wall just behind his pelvis with his arms when the character is back to the wall. - - - Default value = 15.0f. - Min value = 0.0f. - Max value = 180.0f. - - - - - Creates a new Instance of the GrabHelper for sending a Grab to a given . - - The to send the Grab to. - - - - Sets the UseLeft setting for this . - Flag to toggle use of left hand. - - - Default value = False. - - - - - Sets the UseRight setting for this . - Flag to toggle the use of the Right hand. - - - Default value = False. - - - - - Sets the DropWeaponIfNecessary setting for this . - if hasn't grabbed when weapon carrying hand is close to target, grab anyway. - - - Default value = False. - - - - - Sets the DropWeaponDistance setting for this . - distance below which a weapon carrying hand will request weapon to be dropped. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the GrabStrength setting for this . - strength in hands for grabbing (kg m/s), -1 to ignore/disable. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 10000.0f. - - - - - Sets the StickyHands setting for this . - strength of cheat force on hands to pull towards target and stick to target ("cleverHandIK" strength). - - - Default value = 4.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the TurnToTarget setting for this . - - - Default value = . - - - - - Sets the GrabHoldMaxTimer setting for this . - amount of time, in seconds, before grab automatically bails. - - - Default value = 100.0f. - Min value = 0.0f. - Max value = 1000.0f. - - - - - Sets the PullUpTime setting for this . - Time to reach the full pullup strength. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the PullUpStrengthRight setting for this . - Strength to pull up with the right arm. 0 = no pull up. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the PullUpStrengthLeft setting for this . - Strength to pull up with the left arm. 0 = no pull up. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Pos1 setting for this . - Grab pos1, right hand if not using line or surface grab. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the Pos2 setting for this . - Grab pos2, left hand if not using line or surface grab. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the Pos3 setting for this . - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the Pos4 setting for this . - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the NormalR setting for this . - Normal for the right grab point. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the NormalL setting for this . - Normal for the left grab point. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the NormalR2 setting for this . - Normal for the 2nd right grab point (if pointsX4grab=true). - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the NormalL2 setting for this . - Normal for the 3rd left grab point (if pointsX4grab=true). - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the HandsCollide setting for this . - Hand collisions on when grabbing (false turns off hand collisions making grab more stable esp. to grab points slightly inside geometry). - - - Default value = False. - - - - - Sets the JustBrace setting for this . - Flag to toggle between grabbing and bracing. - - - Default value = False. - - - - - Sets the UseLineGrab setting for this . - use the line grab, Grab along the line (x-x2). - - - Default value = False. - - - - - Sets the PointsX4grab setting for this . - use 2 point. - - - Default value = False. - - - - - Sets the FromEA setting for this . - use 2 point. - - - Default value = False. - - - - - Sets the SurfaceGrab setting for this . - Toggle surface grab on. Requires pos1,pos2,pos3 and pos4 to be specified. - - - Default value = False. - - - - - Sets the InstanceIndex setting for this . - levelIndex of instance to grab (-1 = world coordinates). - - - Default value = -1. - Min value = -1. - - - - - Sets the InstancePartIndex setting for this . - boundIndex of part on instance to grab (0 = just use instance coordinates). - - - Default value = 0. - Min value = 0. - - - - - Sets the DontLetGo setting for this . - Once a constraint is made, keep reaching with whatever hand is allowed - no matter what the angle/distance and whether or not the constraint has broken due to constraintForce GT grabStrength. mmmtodo this is a badly named parameter. - - - Default value = False. - - - - - Sets the BodyStiffness setting for this . - stiffness of upper body. Scales the arm grab such that the armStiffness is default when this is at default value. - - - Default value = 11.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the ReachAngle setting for this . - Angle from front at which the grab activates. If the point is outside this angle from front will not try to grab. - - - Default value = 2.8f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the OneSideReachAngle setting for this . - Angle at which we will only reach with one hand. - - - Default value = 1.4f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the GrabDistance setting for this . - Relative distance at which the grab starts. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the Move2Radius setting for this . - Relative distance (additional to grabDistance - doesn't try to move inside grabDistance)at which the grab tries to use the balancer to move to the grab point. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 14.0f. - - - - - Sets the ArmStiffness setting for this . - Stiffness of the arm. - - - Default value = 14.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the MaxReachDistance setting for this . - distance to reach out towards the grab point. - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the OrientationConstraintScale setting for this . - scale torque used to rotate hands to face normals. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the MaxWristAngle setting for this . - When we are grabbing the max angle the wrist ccan be at before we break the grab. - - - Default value = 3.1f. - Min value = 0.0f. - Max value = 3.2f. - - - - - Sets the UseHeadLookToTarget setting for this . - if true, the character will look at targetForHeadLook after a hand grabs until the end of the behavior. (Before grabbing it looks at the grab target). - - - Default value = False. - - - - - Sets the LookAtGrab setting for this . - if true, the character will look at the grab. - - - Default value = True. - - - - - Sets the TargetForHeadLook setting for this . - Only used if useHeadLookToTarget is true, the target in world space to look at. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Creates a new Instance of the HeadLookHelper for sending a HeadLook to a given . - - The to send the HeadLook to. - - - - Sets the Damping setting for this . - Damping of the muscles. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the Stiffness setting for this . - Stiffness of the muscles. - - - Default value = 10.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the InstanceIndex setting for this . - levelIndex of object to be looked at. vel parameters are ignored if this is non -1. - - - Default value = -1. - Min value = -1. - - - - - Sets the Vel setting for this . - The velocity of the point being looked at. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - Min value = -100.0f. - Max value = 100.0f. - - - - - Sets the Pos setting for this . - The point being looked at. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the AlwaysLook setting for this . - Flag to force always to look. - - - Default value = False. - - - - - Sets the EyesHorizontal setting for this . - Keep the eyes horizontal. Use true for impact with cars. Use false if you want better look at target accuracy when the character is on the floor or leaned over alot. - - - Default value = True. - - - - - Sets the AlwaysEyesHorizontal setting for this . - Keep the eyes horizontal. Use true for impact with cars. Use false if you want better look at target accuracy when the character is on the floor or leaned over (when not leaned over the eyes are still kept horizontal if eyesHorizontal=true ) alot. - - - Default value = True. - - - - - Sets the KeepHeadAwayFromGround setting for this . - - - Default value = False. - - - - - Sets the TwistSpine setting for this . - Allow headlook to twist spine. - - - Default value = True. - - - - - Creates a new Instance of the HighFallHelper for sending a HighFall to a given . - - The to send the HighFall to. - - - - Sets the BodyStiffness setting for this . - stiffness of body. Value feeds through to bodyBalance (synched with defaults), to armsWindmill (14 for this value at default ), legs pedal, head look and roll down stairs directly. - - - Default value = 11.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the Bodydamping setting for this . - The damping of the joints. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the Catchfalltime setting for this . - The length of time before the impact that the character transitions to the landing. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the CrashOrLandCutOff setting for this . - 0.52angle is 0.868 dot//A threshold for deciding how far away from upright the character needs to be before bailing out (going into a foetal) instead of trying to land (keeping stretched out). NB: never does bailout if ignorWorldCollisions true. - - - Default value = 0.9f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the PdStrength setting for this . - Strength of the controller to keep the character at angle aimAngleBase from vertical. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the PdDamping setting for this . - Damping multiplier of the controller to keep the character at angle aimAngleBase from vertical. The actual damping is pdDamping*pdStrength*constant*angVel. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 5.0f. - - - - - Sets the ArmAngSpeed setting for this . - arm circling speed in armWindMillAdaptive. - - - Default value = 7.9f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the ArmAmplitude setting for this . - in armWindMillAdaptive. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ArmPhase setting for this . - in armWindMillAdaptive 3.1 opposite for stuntman. 1.0 old default. 0.0 in phase. - - - Default value = 3.1f. - Min value = 0.0f. - Max value = 6.3f. - - - - - Sets the ArmBendElbows setting for this . - in armWindMillAdaptive bend the elbows as a function of armAngle. For stuntman true otherwise false. - - - Default value = True. - - - - - Sets the LegRadius setting for this . - radius of legs on pedal. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 0.5f. - - - - - Sets the LegAngSpeed setting for this . - in pedal. - - - Default value = 7.9f. - Min value = 0.0f. - Max value = 15.0f. - - - - - Sets the LegAsymmetry setting for this . - 0.0 for stuntman. Random offset applied per leg to the angular speed to desynchronise the pedaling - set to 0 to disable, otherwise should be set to less than the angularSpeed value. - - - Default value = 4.0f. - Min value = -10.0f. - Max value = 10.0f. - - - - - Sets the Arms2LegsPhase setting for this . - phase angle between the arms and legs circling angle. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 6.5f. - - - - - Sets the Arms2LegsSync setting for this . - Syncs the arms angle to what the leg angle is. - - - Default value = . - All speed/direction parameters of armswindmill are overwritten if = . - If and you want synced arms/legs then armAngSpeed=legAngSpeed, legAsymmetry = 0.0 (to stop randomizations of the leg cicle speed). - - - - - Sets the ArmsUp setting for this . - Where to put the arms when preparing to land. Approx 1 = above head, 0 = head height, -1 = down. LT -2.0 use catchFall arms, LT -3.0 use prepare for landing pose if Agent is due to land vertically, feet first. - - - Default value = -3.1f. - Min value = -4.0f. - Max value = 2.0f. - - - - - Sets the OrientateBodyToFallDirection setting for this . - toggle to orientate to fall direction. i.e. orientate so that the character faces the horizontal velocity direction. - - - Default value = False. - - - - - Sets the OrientateTwist setting for this . - If false don't worry about the twist angle of the character when orientating the character. If false this allows the twist axis of the character to be free (You can get a nice twisting highFall like the one in dieHard 4 when the car goes into the helicopter). - - - Default value = True. - - - - - Sets the OrientateMax setting for this . - DEVEL parameter - suggest you don't edit it. Maximum torque the orientation controller can apply. If 0 then no helper torques will be used. 300 will orientate the character soflty for all but extreme angles away from aimAngleBase. If abs (current -aimAngleBase) is getting near 3.0 then this can be reduced to give a softer feel. - - - Default value = 300.0f. - Min value = 0.0f. - Max value = 2000.0f. - - - - - Sets the AlanRickman setting for this . - If true then orientate the character to face the point from where it started falling. HighFall like the one in dieHard with Alan Rickman. - - - Default value = False. - - - - - Sets the FowardRoll setting for this . - Try to execute a forward Roll on landing. - - - Default value = False. - - - - - Sets the UseZeroPose_withFowardRoll setting for this . - Blend to a zero pose when forward roll is attempted. - - - Default value = False. - - - - - Sets the AimAngleBase setting for this . - Angle from vertical the pdController is driving to ( positive = forwards). - - - Default value = 0.2f. - Min value = -3.1f. - Max value = 3.1f. - - - - - Sets the FowardVelRotation setting for this . - scale to add/subtract from aimAngle based on forward speed (Internal). - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the FootVelCompScale setting for this . - Scale to change to amount of vel that is added to the foot ik from the velocity (Internal). - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the SideD setting for this . - sideoffset for the feet during prepareForLanding. +ve = right. - - - Default value = 0.2f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the FowardOffsetOfLegIK setting for this . - Forward offset for the feet during prepareForLanding. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LegL setting for this . - Leg Length for ik (Internal)//unused. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the CatchFallCutOff setting for this . - 0.5angle is 0.878 dot. Cutoff to go to the catchFall ( internal) //mmmtodo do like crashOrLandCutOff. - - - Default value = 0.9f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the LegStrength setting for this . - Strength of the legs at landing. - - - Default value = 12.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the Balance setting for this . - If true have enough strength to balance. If false not enough strength in legs to balance (even though bodyBlance called). - - - Default value = True. - - - - - Sets the IgnorWorldCollisions setting for this . - Never go into bailout (foetal). - - - Default value = False. - - - - - Sets the AdaptiveCircling setting for this . - stuntman type fall. Arm and legs circling direction controlled by angmom and orientation. - - - Default value = True. - - - - - Sets the Hula setting for this . - With stuntman type fall. Hula reaction if can't see floor and not rotating fast. - - - Default value = True. - - - - - Sets the MaxSpeedForRecoverableFall setting for this . - Character needs to be moving less than this speed to consider fall as a recoverable one. - - - Default value = 15.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the MinSpeedForBrace setting for this . - Character needs to be moving at least this fast horizontally to start bracing for impact if there is an object along its trajectory. - - - Default value = 10.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the LandingNormal setting for this . - Ray-cast normal doted with up direction has to be greater than this number to consider object flat enough to land on it. - - - Default value = 0.6f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Creates a new Instance of the IncomingTransformsHelper for sending a IncomingTransforms to a given . - - The to send the IncomingTransforms to. - - - - InjuredOnGround. - - - - - Creates a new Instance of the InjuredOnGroundHelper for sending a InjuredOnGround to a given . - - The to send the InjuredOnGround to. - - InjuredOnGround. - - - - - Sets the NumInjuries setting for this . - - - Default value = 0. - Min value = 0. - Max value = 2. - - - - - Sets the Injury1Component setting for this . - - - Default value = 0. - Min value = 0. - - - - - Sets the Injury2Component setting for this . - - - Default value = 0. - Min value = 0. - - - - - Sets the Injury1LocalPosition setting for this . - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the Injury2LocalPosition setting for this . - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the Injury1LocalNormal setting for this . - - - Default value = Vector3(1.0f, 0.0f, 0.0f). - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Injury2LocalNormal setting for this . - - - Default value = Vector3(1.0f, 0.0f, 0.0f). - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the AttackerPos setting for this . - - - Default value = Vector3(1.0f, 0.0f, 0.0f). - Min value = 0.0f. - - - - - Sets the DontReachWithLeft setting for this . - - - Default value = False. - - - - - Sets the DontReachWithRight setting for this . - - - Default value = False. - - - - - Sets the StrongRollForce setting for this . - - - Default value = False. - - - - - Carried. - - - - - Creates a new Instance of the CarriedHelper for sending a Carried to a given . - - The to send the Carried to. - - Carried. - - - - - Dangle. - - - - - Creates a new Instance of the DangleHelper for sending a Dangle to a given . - - The to send the Dangle to. - - Dangle. - - - - - Sets the DoGrab setting for this . - - - Default value = True. - - - - - Sets the GrabFrequency setting for this . - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Creates a new Instance of the OnFireHelper for sending a OnFire to a given . - - The to send the OnFire to. - - - - Sets the StaggerTime setting for this . - Max time for stumbling around before falling to ground. - - - Default value = 2.5f. - Min value = 0.0f. - Max value = 30.0f. - - - - - Sets the StaggerLeanRate setting for this . - How quickly the character leans hips when staggering. - - - Default value = 0.9f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the StumbleMaxLeanBack setting for this . - max the character leans hips back when staggering. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 1.5f. - - - - - Sets the StumbleMaxLeanForward setting for this . - max the character leans hips forwards when staggering. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.5f. - - - - - Sets the ArmsWindmillWritheBlend setting for this . - Blend armsWindmill with the bodyWrithe arms when character is upright. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the SpineStumbleWritheBlend setting for this . - Blend spine stumble with the bodyWrithe spine when character is upright. - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LegsStumbleWritheBlend setting for this . - Blend legs stumble with the bodyWrithe legs when character is upright. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ArmsPoseWritheBlend setting for this . - Blend the bodyWrithe arms with the current desired pose from on fire behaviour when character is on the floor. - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the SpinePoseWritheBlend setting for this . - Blend the bodyWrithe back with the current desired pose from on fire behaviour when character is on the floor. - - - Default value = 0.6f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LegsPoseWritheBlend setting for this . - Blend the bodyWrithe legs with the current desired pose from on fire behaviour when character is on the floor. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RollOverFlag setting for this . - Flag to set bodyWrithe trying to rollOver. - - - Default value = True. - - - - - Sets the RollTorqueScale setting for this . - Scale rolling torque that is applied to character spine by bodyWrithe. Torque magnitude is calculated with the following formula: m_rollOverDirection*rollOverPhase*rollTorqueScale. - - - Default value = 25.0f. - Min value = 0.0f. - Max value = 300.0f. - - - - - Sets the PredictTime setting for this . - Character pose depends on character facing direction that is evaluated from its COMTM orientation. Set this value to 0 to use no orientation prediction i.e. current character COMTM orientation will be used to determine character facing direction and finally the pose bodyWrithe is blending to. Set this value to GT 0 to predict character COMTM orientation this amout of time in seconds to the future. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the MaxRollOverTime setting for this . - Rolling torque is ramped down over time. At this time in seconds torque value converges to zero. Use this parameter to restrict time the character is rolling. - - - Default value = 8.0f. - Min value = 0.0f. - Max value = 60.0f. - - - - - Sets the RollOverRadius setting for this . - Rolling torque is ramped down with distance measured from position where character hit the ground and started rolling. At this distance in meters torque value converges to zero. Use this parameter to restrict distance the character travels due to rolling. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Creates a new Instance of the PedalLegsHelper for sending a PedalLegs to a given . - - The to send the PedalLegs to. - - - - Sets the PedalLeftLeg setting for this . - pedal with this leg or not. - - - Default value = True. - - - - - Sets the PedalRightLeg setting for this . - pedal with this leg or not. - - - Default value = True. - - - - - Sets the BackPedal setting for this . - pedal forwards or backwards. - - - Default value = False. - - - - - Sets the Radius setting for this . - base radius of pedal action. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the AngularSpeed setting for this . - rate of pedaling. If adaptivePedal4Dragging is true then the legsAngularSpeed calculated to match the linear speed of the character can have a maximum value of angularSpeed (this max used to be hard coded to 13.0). - - - Default value = 10.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the LegStiffness setting for this . - stiffness of legs. - - - Default value = 10.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the PedalOffset setting for this . - Move the centre of the pedal for the left leg up by this amount, the right leg down by this amount. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RandomSeed setting for this . - Random seed used to generate speed changes. - - - Default value = 100. - Min value = 0. - - - - - Sets the SpeedAsymmetry setting for this . - Random offset applied per leg to the angular speed to desynchronise the pedaling - set to 0 to disable, otherwise should be set to less than the angularSpeed value. - - - Default value = 8.0f. - Min value = -10.0f. - Max value = 10.0f. - - - - - Sets the AdaptivePedal4Dragging setting for this . - Will pedal in the direction of travel (if backPedal = false, against travel if backPedal = true) and with an angular velocity relative to speed upto a maximum of 13(rads/sec). Use when being dragged by a car. Overrides angularSpeed. - - - Default value = False. - - - - - Sets the AngSpeedMultiplier4Dragging setting for this . - newAngularSpeed = Clamp(angSpeedMultiplier4Dragging * linear_speed/pedalRadius, 0.0, angularSpeed). - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the RadiusVariance setting for this . - 0-1 value used to add variance to the radius value while pedalling, to desynchonize the legs' movement and provide some variety. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LegAngleVariance setting for this . - 0-1 value used to vary the angle of the legs from the hips during the pedal. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the CentreSideways setting for this . - Move the centre of the pedal for both legs sideways (+ve = right). NB: not applied to hula. - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the CentreForwards setting for this . - Move the centre of the pedal for both legs forward (or backward -ve). - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the CentreUp setting for this . - Move the centre of the pedal for both legs up (or down -ve). - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the Ellipse setting for this . - Turn the circle into an ellipse. Ellipse has horizontal radius a and vertical radius b. If ellipse is +ve then a=radius*ellipse and b=radius. If ellipse is -ve then a=radius and b = radius*ellipse. 0.0 = vertical line of length 2*radius, 0.0:1.0 circle squashed horizontally (vertical radius = radius), 1.0=circle. -0.001 = horizontal line of length 2*radius, -0.0:-1.0 circle squashed vertically (horizontal radius = radius), -1.0 = circle. - - - Default value = 1.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the DragReduction setting for this . - how much to account for the target moving through space rather than being static. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Spread setting for this . - Spread legs. - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the Hula setting for this . - If true circle the legs in a hula motion. - - - Default value = False. - - - - - BEHAVIOURS REFERENCED: AnimPose - allows animPose to overridebodyParts: Arms (useLeftArm, useRightArm). - - - - - Creates a new Instance of the PointArmHelper for sending a PointArm to a given . - - The to send the PointArm to. - - BEHAVIOURS REFERENCED: AnimPose - allows animPose to overridebodyParts: Arms (useLeftArm, useRightArm). - - - - - Sets the TargetLeft setting for this . - point to point to (in world space). - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the TwistLeft setting for this . - twist of the arm around point direction. - - - Default value = 0.3f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the ArmStraightnessLeft setting for this . - values less than 1 can give the arm a more bent look. - - - Default value = 0.8f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the UseLeftArm setting for this . - - - Default value = False. - - - - - Sets the ArmStiffnessLeft setting for this . - stiffness of arm. - - - Default value = 15.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the ArmDampingLeft setting for this . - damping value for arm used to point. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the InstanceIndexLeft setting for this . - level index of thing to point at, or -1 for none. if -1, target is specified in world space, otherwise it is an offset from the object specified by this index. - - - Default value = -1. - Min value = -1. - - - - - Sets the PointSwingLimitLeft setting for this . - Swing limit. - - - Default value = 1.5f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the UseZeroPoseWhenNotPointingLeft setting for this . - - - Default value = False. - - - - - Sets the TargetRight setting for this . - point to point to (in world space). - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the TwistRight setting for this . - twist of the arm around point direction. - - - Default value = 0.3f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the ArmStraightnessRight setting for this . - values less than 1 can give the arm a more bent look. - - - Default value = 0.8f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the UseRightArm setting for this . - - - Default value = False. - - - - - Sets the ArmStiffnessRight setting for this . - stiffness of arm. - - - Default value = 15.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the ArmDampingRight setting for this . - damping value for arm used to point. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the InstanceIndexRight setting for this . - level index of thing to point at, or -1 for none. if -1, target is specified in world space, otherwise it is an offset from the object specified by this index. - - - Default value = -1. - Min value = -1. - - - - - Sets the PointSwingLimitRight setting for this . - Swing limit. - - - Default value = 1.5f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the UseZeroPoseWhenNotPointingRight setting for this . - - - Default value = False. - - - - - Creates a new Instance of the PointGunHelper for sending a PointGun to a given . - - The to send the PointGun to. - - - - Sets the EnableRight setting for this . - Allow right hand to point/support?. - - - Default value = True. - - - - - Sets the EnableLeft setting for this . - Allow right hand to point/support?. - - - Default value = True. - - - - - Sets the LeftHandTarget setting for this . - Target for the left Hand. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the LeftHandTargetIndex setting for this . - Index of the object that the left hand target is specified in, -1 is world space. - - - Default value = -1. - - - - - Sets the RightHandTarget setting for this . - Target for the right Hand. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the RightHandTargetIndex setting for this . - Index of the object that the right hand target is specified in, -1 is world space. - - - Default value = -1. - - - - - Sets the LeadTarget setting for this . - NB: Only Applied to single handed weapons (some more work is required to have this tech on two handed weapons). Amount to lead target based on target velocity relative to the chest. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ArmStiffness setting for this . - Stiffness of the arm. - - - Default value = 14.0f. - Min value = 2.0f. - Max value = 15.0f. - - - - - Sets the ArmStiffnessDetSupport setting for this . - Stiffness of the arm on pointing arm when a support arm is detached from a two-handed weapon. - - - Default value = 8.0f. - Min value = 2.0f. - Max value = 15.0f. - - - - - Sets the ArmDamping setting for this . - Damping. - - - Default value = 1.0f. - Min value = 0.1f. - Max value = 5.0f. - - - - - Sets the GravityOpposition setting for this . - Amount of gravity opposition on pointing arm. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the GravOppDetachedSupport setting for this . - Amount of gravity opposition on pointing arm when a support arm is detached from a two-handed weapon. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the MassMultDetachedSupport setting for this . - Amount of mass of weapon taken into account by gravity opposition on pointing arm when a support arm is detached from a two-handed weapon. The lower the value the more the character doesn't know about the weapon mass and therefore is more affected by it. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the AllowShotLooseness setting for this . - Allow shot to set a lower arm muscleStiffness than pointGun normally would. - - - Default value = False. - - - - - Sets the ClavicleBlend setting for this . - How much of blend should come from incoming transforms 0(all IK) .. 1(all ITMs) For pointing arms only. (Support arm uses the IK solution as is for clavicles). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ElbowAttitude setting for this . - Controls arm twist. (except in pistolIK). - - - Default value = 0.3f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the SupportConstraint setting for this . - Type of constraint between the support hand and gun. 0=no constraint, 1=hard distance constraint, 2=Force based constraint, 3=hard spherical constraint. - - - Default value = 1. - Min value = 0. - Max value = 3. - - - - - Sets the ConstraintMinDistance setting for this . - For supportConstraint = 1: Support hand constraint distance will be slowly reduced until it hits this value. This is for stability and also allows the pointing arm to lead a little. Don't set lower than NM_MIN_STABLE_DISTANCECONSTRAINT_DISTANCE 0.001f. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 0.1f. - - - - - Sets the MakeConstraintDistance setting for this . - For supportConstraint = 1: Minimum distance within which support hand constraint will be made. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the ReduceConstraintLengthVel setting for this . - For supportConstraint = 1: Velocity at which to reduce the support hand constraint length. - - - Default value = 1.5f. - Min value = 0.1f. - Max value = 10.0f. - - - - - Sets the BreakingStrength setting for this . - For supportConstraint = 1: strength of the supporting hands constraint (kg m/s), -1 to ignore/disable. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 1000.0f. - - - - - Sets the BrokenSupportTime setting for this . - Once constraint is broken then do not try to reconnect/support for this amount of time. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 5.0f. - - - - - Sets the BrokenToSideProb setting for this . - Probability that the when a constraint is broken that during brokenSupportTime a side pose will be selected. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ConnectAfter setting for this . - If gunArm has been controlled by other behaviours for this time when it could have been pointing but couldn't due to pointing only allowed if connected, change gunArm pose to something that could connect for connectFor seconds. - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 5.0f. - - - - - Sets the ConnectFor setting for this . - Time to try to reconnect for. - - - Default value = 0.6f. - Min value = 0.0f. - Max value = 5.0f. - - - - - Sets the OneHandedPointing setting for this . - 0 = don't allow, 1= allow for kPistol(two handed pistol) only, 2 = allow for kRifle only, 3 = allow for kPistol and kRifle. Allow one handed pointing - no constraint if cant be supported . If not allowed then gunHand does not try to point at target if it cannot be supported - the constraint will be controlled by always support. - - - Default value = 1. - Min value = 0. - Max value = 3. - - - - - Sets the AlwaysSupport setting for this . - Support a non pointing gunHand i.e. if in zero pose (constrain as well if constraint possible). - - - Default value = False. - - - - - Sets the PoseUnusedGunArm setting for this . - Apply neutral pose when a gun arm isn't in use. NB: at the moment Rifle hand is always controlled by pointGun. - - - Default value = False. - - - - - Sets the PoseUnusedSupportArm setting for this . - Apply neutral pose when a support arm isn't in use. - - - Default value = False. - - - - - Sets the PoseUnusedOtherArm setting for this . - Apply neutral pose to the non-gun arm (otherwise it is always under the control of other behaviours or not set). If the non-gun hand is a supporting hand it is not controlled by this parameter but by poseUnusedSupportArm. - - - Default value = False. - - - - - Sets the MaxAngleAcross setting for this . - max aiming angle(deg) sideways across body midline measured from chest forward that the character will try to point. - - - Default value = 90.0f. - Min value = 0.0f. - Max value = 180.0f. - - - - - Sets the MaxAngleAway setting for this . - max aiming angle(deg) sideways away from body midline measured from chest forward that the character will try to point. - - - Default value = 90.0f. - Min value = 0.0f. - Max value = 180.0f. - - - - - Sets the FallingLimits setting for this . - 0= don't apply limits. 1=apply the limits below only when the character is falling. 2 = always apply these limits (instead of applying maxAngleAcross and maxAngleAway which only limits the horizontal angle but implicity limits the updown (the limit shape is a vertical hinge). - - - Default value = 0. - Min value = 0. - Max value = 2. - - - - - Sets the AcrossLimit setting for this . - max aiming angle(deg) sideways across body midline measured from chest forward that the character will try to point. i.e. for rightHanded gun this is the angle left of the midline. - - - Default value = 90.0f. - Min value = 0.0f. - Max value = 180.0f. - - - - - Sets the AwayLimit setting for this . - max aiming angle(deg) sideways away from body midline measured from chest forward that the character will try to point. i.e. for rightHanded gun this is the angle right of the midline. - - - Default value = 90.0f. - Min value = 0.0f. - Max value = 180.0f. - - - - - Sets the UpLimit setting for this . - max aiming angle(deg) upwards from body midline measured from chest forward that the character will try to point. - - - Default value = 90.0f. - Min value = 0.0f. - Max value = 180.0f. - - - - - Sets the DownLimit setting for this . - max aiming angle(deg) downwards from body midline measured from chest forward that the character will try to point. - - - Default value = 45.0f. - Min value = 0.0f. - Max value = 180.0f. - - - - - Sets the RifleFall setting for this . - Pose the rifle hand to reduce complications with collisions. 0 = false, 1 = always when falling, 2 = when falling except if falling backwards. - - - Default value = 0. - Min value = 0. - Max value = 2. - - - - - Sets the FallingSupport setting for this . - Allow supporting of a rifle(or two handed pistol) when falling. 0 = false, 1 = support if allowed, 2 = support until constraint not active (don't allow support to restart), 3 = support until constraint not effective (support hand to support distance must be less than 0.15 - don't allow support to restart). - - - Default value = 1. - Min value = 0. - Max value = 3. - - - - - Sets the FallingTypeSupport setting for this . - What is considered a fall by fallingSupport). Apply fallingSupport 0=never(will support if allowed), 1 = falling, 2 = falling except if falling backwards, 3 = falling and collided, 4 = falling and collided except if falling backwards, 5 = falling except if falling backwards until collided. - - - Default value = 0. - Min value = 0. - Max value = 5. - - - - - Sets the PistolNeutralType setting for this . - 0 = byFace, 1=acrossFront, 2=bySide. NB: bySide is not connectible so be careful if combined with kPistol and oneHandedPointing = 0 or 2. - - - Default value = 0. - Min value = 0. - Max value = 2. - - - - - Sets the NeutralPoint4Pistols setting for this . - NOT IMPLEMENTED YET KEEP=false - use pointing for neutral targets in pistol modes. - - - Default value = False. - - - - - Sets the NeutralPoint4Rifle setting for this . - use pointing for neutral targets in rifle mode. - - - Default value = True. - - - - - Sets the CheckNeutralPoint setting for this . - Check the neutral pointing is pointable, if it isn't then choose a neutral pose instead. - - - Default value = False. - - - - - Sets the Point2Side setting for this . - side, up, back) side is left for left arm, right for right arm mmmmtodo. - - - Default value = Vector3(5.0f, -5.0f, -2.0f). - - - - - Sets the Add2WeaponDistSide setting for this . - add to weaponDistance for point2Side neutral pointing (to straighten the arm). - - - Default value = 0.3f. - Min value = -1.0f. - Max value = 1000.0f. - - - - - Sets the Point2Connect setting for this . - side, up, back) side is left for left arm, right for rght arm mmmmtodo. - - - Default value = Vector3(-1.0f, -0.9f, -0.2f). - - - - - Sets the Add2WeaponDistConnect setting for this . - add to weaponDistance for point2Connect neutral pointing (to straighten the arm). - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 1000.0f. - - - - - Sets the UsePistolIK setting for this . - enable new ik for pistol pointing. - - - Default value = True. - - - - - Sets the UseSpineTwist setting for this . - Use spine twist to orient chest?. - - - Default value = True. - - - - - Sets the UseTurnToTarget setting for this . - Turn balancer to help gun point at target. - - - Default value = False. - - - - - Sets the UseHeadLook setting for this . - Use head look to drive head?. - - - Default value = True. - - - - - Sets the ErrorThreshold setting for this . - angular difference between pointing direction and target direction above which feedback will be generated. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 3.1f. - - - - - Sets the FireWeaponRelaxTime setting for this . - Duration of arms relax following firing weapon. NB:This is clamped (0,5) in pointGun. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 5.0f. - - - - - Sets the FireWeaponRelaxAmount setting for this . - Relax multiplier following firing weapon. Recovers over relaxTime. - - - Default value = 0.5f. - Min value = 0.1f. - Max value = 1.0f. - - - - - Sets the FireWeaponRelaxDistance setting for this . - Range of motion for ik-based recoil. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 0.3f. - - - - - Sets the UseIncomingTransforms setting for this . - Use the incoming transforms to inform the pointGun of the primaryWeaponDistance, poleVector for the arm. - - - Default value = True. - - - - - Sets the MeasureParentOffset setting for this . - If useIncomingTransforms = true and measureParentOffset=true then measure the Pointing-from offset from parent effector, using itms - this should point the barrel of the gun to the target. This is added to the rightHandParentOffset. NB NOT used if rightHandParentEffector LT 0. - - - Default value = True. - - - - - Sets the LeftHandParentOffset setting for this . - Pointing-from offset from parent effector, expressed in spine3's frame, x = back/forward, y = right/left, z = up/down. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the LeftHandParentEffector setting for this . - 1 = Use leftShoulder. Effector from which the left hand pointing originates. ie, point from this part to the target. -1 causes default offset for active weapon mode to be applied. - - - Default value = -1. - Min value = -1. - Max value = 21. - - - - - Sets the RightHandParentOffset setting for this . - Pointing-from offset from parent effector, expressed in spine3's frame, x = back/forward, y = right/left, z = up/down. This is added to the measured one if useIncomingTransforms=true and measureParentOffset=true. NB NOT used if rightHandParentEffector LT 0. Pistol(0,0,0) Rifle(0.0032, 0.0, -0.0). - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the RightHandParentEffector setting for this . - 1 = Use rightShoulder.. Effector from which the right hand pointing originates. ie, point from this part to the target. -1 causes default offset for active weapon mode to be applied. - - - Default value = -1. - Min value = -1. - Max value = 21. - - - - - Sets the PrimaryHandWeaponDistance setting for this . - Distance from the shoulder to hold the weapon. If -1 and useIncomingTransforms then weaponDistance is read from ITMs. weaponDistance=primaryHandWeaponDistance clamped [0.2f:m_maxArmReach=0.65] if useIncomingTransforms = false. pistol 0.60383, rifle 0.336. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the ConstrainRifle setting for this . - Use hard constraint to keep rifle stock against shoulder?. - - - Default value = True. - - - - - Sets the RifleConstraintMinDistance setting for this . - Rifle constraint distance. Deliberately kept large to create a flat constraint surface where rifle meets the shoulder. - - - Default value = 0.2f. - Min value = 0.0f. - - - - - Sets the DisableArmCollisions setting for this . - Disable collisions between right hand/forearm and the torso/legs. - - - Default value = False. - - - - - Sets the DisableRifleCollisions setting for this . - Disable collisions between right hand/forearm and spine3/spine2 if in rifle mode. - - - Default value = False. - - - - - Seldom set parameters for pointGun - just to keep number of parameters in any message less than or equal to 64. - - - - - Creates a new Instance of the PointGunExtraHelper for sending a PointGunExtra to a given . - - The to send the PointGunExtra to. - - Seldom set parameters for pointGun - just to keep number of parameters in any message less than or equal to 64. - - - - - Sets the ConstraintStrength setting for this . - For supportConstraint = 2: force constraint strength of the supporting hands - it gets shaky at about 4.0. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 5.0f. - - - - - Sets the ConstraintThresh setting for this . - For supportConstraint = 2: Like makeConstraintDistance. Force starts acting when the hands are LT 3.0*thresh apart but is maximum strength LT thresh. For comparison: 0.1 is used for reachForWound in shot, 0.25 is used in grab. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the WeaponMask setting for this . - Currently unused - no intoWorldTest. RAGE bit mask to exclude weapons from ray probe - currently defaults to MP3 weapon flag. - - - Default value = 1024. - Min value = 0. - - - - - Sets the TimeWarpActive setting for this . - Is timeWarpActive enabled?. - - - Default value = False. - - - - - Sets the TimeWarpStrengthScale setting for this . - Scale for arm and helper strength when timewarp is enabled. 1 = normal compensation. - - - Default value = 1.0f. - Min value = 0.1f. - Max value = 2.0f. - - - - - Sets the OriStiff setting for this . - Hand stabilization controller stiffness. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the OriDamp setting for this . - Hand stabilization controller damping. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the PosStiff setting for this . - Hand stabilization controller stiffness. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the PosDamp setting for this . - Hand stabilization controller damping. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Creates a new Instance of the RollDownStairsHelper for sending a RollDownStairs to a given . - - The to send the RollDownStairs to. - - - - Sets the Stiffness setting for this . - Effector Stiffness. value feeds through to rollUp directly. - - - Default value = 11.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the Damping setting for this . - Effector Damping. - - - Default value = 1.4f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the Forcemag setting for this . - Helper force strength. Do not go above 1 for a rollDownStairs/roll along ground reaction. - - - Default value = 0.6f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the M_useArmToSlowDown setting for this . - the degree to which the character will try to stop a barrel roll with his arms. - - - Default value = -1.9f. - Min value = -3.0f. - Max value = 3.0f. - - - - - Sets the UseZeroPose setting for this . - Blends between a zeroPose and the Rollup, Faster the character is rotating the less the zeroPose. - - - Default value = False. - - - - - Sets the SpinWhenInAir setting for this . - Applied cheat forces to spin the character when in the air, the forces are 40% of the forces applied when touching the ground. Be careful little bunny rabbits, the character could spin unnaturally in the air. - - - Default value = False. - - - - - Sets the M_armReachAmount setting for this . - how much the character reaches with his arms to brace against the ground. - - - Default value = 1.4f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the M_legPush setting for this . - amount that the legs push outwards when tumbling. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the TryToAvoidHeadButtingGround setting for this . - Blends between a zeroPose and the Rollup, Faster the character is rotating the less the zeroPose. - - - Default value = False. - - - - - Sets the ArmReachLength setting for this . - the length that the arm reaches and so how much it straightens. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the CustomRollDir setting for this . - pass in a custom direction in to have the character try and roll in that direction. - - - Default value = Vector3(0.0f, 0.0f, 1.0f). - Min value = 1.0f. - Max value = 1.0f. - - - - - Sets the UseCustomRollDir setting for this . - pass in true to use the customRollDir parameter. - - - Default value = False. - - - - - Sets the StiffnessDecayTarget setting for this . - The target linear velocity used to start the rolling. - - - Default value = 9.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the StiffnessDecayTime setting for this . - time, in seconds, to decay stiffness down to the stiffnessDecayTarget value (or -1 to disable). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 10.0f. - - - - - Sets the AsymmetricalLegs setting for this . - 0 is no leg asymmetry in 'foetal' position. greater than 0 a asymmetricalLegs-rand(30%), added/minus each joint of the legs in radians. Random number changes about once every roll. 0.4 gives a lot of asymmetry. - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the ZAxisSpinReduction setting for this . - Tries to reduce the spin around the z axis. Scale 0 - 1. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TargetLinearVelocityDecayTime setting for this . - Time for the targetlinearVelocity to decay to zero. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the TargetLinearVelocity setting for this . - Helper torques are applied to match the spin of the character to the max of targetLinearVelocity and COMVelMag. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the OnlyApplyHelperForces setting for this . - Don't use rollup if true. - - - Default value = False. - - - - - Sets the UseVelocityOfObjectBelow setting for this . - scale applied cheat forces/torques to (zero) if object underneath character has velocity greater than 1.f. - - - Default value = False. - - - - - Sets the UseRelativeVelocity setting for this . - useVelocityOfObjectBelow uses a relative velocity of the character to the object underneath. - - - Default value = False. - - - - - Sets the ApplyFoetalToLegs setting for this . - if true, use rollup for upper body and a kind of foetal behavior for legs. - - - Default value = False. - - - - - Sets the MovementLegsInFoetalPosition setting for this . - Only used if applyFoetalToLegs = true : define the variation of angles for the joints of the legs. - - - Default value = 1.3f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the MaxAngVelAroundFrontwardAxis setting for this . - Only used if applyNewRollingCheatingTorques or applyHelPerTorqueToAlign defined to true : maximal angular velocity around frontward axis of the pelvis to apply cheating torques. - - - Default value = 2.0f. - Min value = -1.0f. - Max value = 10.0f. - - - - - Sets the MinAngVel setting for this . - Only used if applyNewRollingCheatingTorques or applyHelPerTorqueToAlign defined to true : minimal angular velocity of the roll to apply cheating torques. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ApplyNewRollingCheatingTorques setting for this . - if true will use the new way to apply cheating torques (like in fallOverWall), otherwise will use the old way. - - - Default value = False. - - - - - Sets the MaxAngVel setting for this . - Only used if applyNewRollingCheatingTorques defined to true : maximal angular velocity of the roll to apply cheating torque. - - - Default value = 5.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the MagOfTorqueToRoll setting for this . - Only used if applyNewRollingCheatingTorques defined to true : magnitude of the torque to roll down the stairs. - - - Default value = 50.0f. - Min value = 0.0f. - Max value = 500.0f. - - - - - Sets the ApplyHelPerTorqueToAlign setting for this . - apply torque to align the body orthogonally to the direction of the roll. - - - Default value = False. - - - - - Sets the DelayToAlignBody setting for this . - Only used if applyHelPerTorqueToAlign defined to true : delay to start to apply torques. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the MagOfTorqueToAlign setting for this . - Only used if applyHelPerTorqueToAlign defined to true : magnitude of the torque to align orthogonally the body. - - - Default value = 50.0f. - Min value = 0.0f. - Max value = 500.0f. - - - - - Sets the AirborneReduction setting for this . - Ordinarily keep at 0.85. Make this lower if you want spinning in the air. - - - Default value = 0.9f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ApplyMinMaxFriction setting for this . - Pass-through to Roll Up. Controls whether or not behaviour enforces min/max friction. - - - Default value = True. - - - - - Sets the LimitSpinReduction setting for this . - Scale zAxisSpinReduction back when rotating end-over-end (somersault) to give the body a chance to align with the axis of rotation. - - - Default value = False. - - - - - Creates a new Instance of the ShotHelper for sending a Shot to a given . - - The to send the Shot to. - - - - Sets the BodyStiffness setting for this . - stiffness of body. Feeds through to roll_up. - - - Default value = 11.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the SpineDamping setting for this . - stiffness of body. Feeds through to roll_up. - - - Default value = 1.0f. - Min value = 0.1f. - Max value = 2.0f. - - - - - Sets the ArmStiffness setting for this . - arm stiffness. - - - Default value = 10.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the InitialNeckStiffness setting for this . - initial stiffness of neck after being shot. - - - Default value = 14.0f. - Min value = 3.0f. - Max value = 16.0f. - - - - - Sets the InitialNeckDamping setting for this . - intial damping of neck after being shot. - - - Default value = 1.0f. - Min value = 0.1f. - Max value = 10.0f. - - - - - Sets the NeckStiffness setting for this . - stiffness of neck. - - - Default value = 14.0f. - Min value = 3.0f. - Max value = 16.0f. - - - - - Sets the NeckDamping setting for this . - damping of neck. - - - Default value = 1.0f. - Min value = 0.1f. - Max value = 2.0f. - - - - - Sets the KMultOnLoose setting for this . - how much to add to upperbody stiffness dependent on looseness. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the KMult4Legs setting for this . - how much to add to leg stiffnesses dependent on looseness. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LoosenessAmount setting for this . - how loose the character is made by a newBullet. between 0 and 1. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Looseness4Fall setting for this . - how loose the character is made by a newBullet if falling. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Looseness4Stagger setting for this . - how loose the upperBody of the character is made by a newBullet if staggerFall is running (and not falling). Note atm the neck ramp values are ignored in staggerFall. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the MinArmsLooseness setting for this . - minimum looseness to apply to the arms. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the MinLegsLooseness setting for this . - minimum looseness to apply to the Legs. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the GrabHoldTime setting for this . - how long to hold for before returning to relaxed arm position. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the SpineBlendExagCPain setting for this . - true: spine is blended with zero pose, false: spine is blended with zero pose if not setting exag or cpain. - - - Default value = False. - - - - - Sets the SpineBlendZero setting for this . - spine is always blended with zero pose this much and up to 1 as the character become stationary. If negative no blend is ever applied. - - - Default value = 0.6f. - Min value = -0.1f. - Max value = 1.0f. - - - - - Sets the BulletProofVest setting for this . - looseness applied to spine is different if bulletProofVest is true. - - - Default value = False. - - - - - Sets the AlwaysResetLooseness setting for this . - looseness always reset on shotNewBullet even if previous looseness ramp still running. Except for the neck which has it's own ramp. - - - Default value = True. - - - - - Sets the AlwaysResetNeckLooseness setting for this . - Neck looseness always reset on shotNewBullet even if previous looseness ramp still running. - - - Default value = True. - - - - - Sets the AngVelScale setting for this . - How much to scale the angular velocity coming in from animation of a part if it is in angVelScaleMask (otherwise scale by 1.0). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the AngVelScaleMask setting for this . - Parts to scale the initial angular velocity by angVelScale (otherwize scale by 1.0). - - - Default value = fb. - - - - - Sets the FlingWidth setting for this . - Width of the fling behaviour. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the FlingTime setting for this . - Duration of the fling behaviour. - - - Default value = 0.6f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TimeBeforeReachForWound setting for this . - time, in seconds, before the character begins to grab for the wound on the first hit. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ExagDuration setting for this . - exaggerate bullet duration (at exagMag/exagTwistMag). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ExagMag setting for this . - exaggerate bullet spine Lean magnitude. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ExagTwistMag setting for this . - exaggerate bullet spine Twist magnitude. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ExagSmooth2Zero setting for this . - exaggerate bullet duration ramping to zero after exagDuration. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ExagZeroTime setting for this . - exaggerate bullet time spent at 0 spine lean/twist after exagDuration + exagSmooth2Zero. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the CpainSmooth2Time setting for this . - conscious pain duration ramping from zero to cpainMag/cpainTwistMag. - - - Default value = 0.2f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the CpainDuration setting for this . - conscious pain duration at cpainMag/cpainTwistMag after cpainSmooth2Time. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the CpainMag setting for this . - conscious pain spine Lean(back/Forward) magnitude (Replaces spinePainMultiplier). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the CpainTwistMag setting for this . - conscious pain spine Twist/Lean2Side magnitude Replaces spinePainTwistMultiplier). - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the CpainSmooth2Zero setting for this . - conscious pain ramping to zero after cpainSmooth2Time + cpainDuration (Replaces spinePainTime). - - - Default value = 1.5f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the Crouching setting for this . - is the guy crouching or not. - - - Default value = False. - - - - - Sets the ChickenArms setting for this . - Type of reaction. - - - Default value = False. - - - - - Sets the ReachForWound setting for this . - Type of reaction. - - - Default value = True. - - - - - Sets the Fling setting for this . - Type of reaction. - - - Default value = False. - - - - - Sets the AllowInjuredArm setting for this . - injured arm code runs if arm hit (turns and steps and bends injured arm). - - - Default value = False. - - - - - Sets the AllowInjuredLeg setting for this . - when false injured leg is not bent and character does not bend to reach it. - - - Default value = True. - - - - - Sets the AllowInjuredLowerLegReach setting for this . - when false don't try to reach for injured Lower Legs (shins/feet). - - - Default value = False. - - - - - Sets the AllowInjuredThighReach setting for this . - when false don't try to reach for injured Thighs. - - - Default value = True. - - - - - Sets the StableHandsAndNeck setting for this . - additional stability for hands and neck (less loose). - - - Default value = False. - - - - - Sets the Melee setting for this . - - - Default value = False. - - - - - Sets the FallingReaction setting for this . - 0=Rollup, 1=Catchfall, 2=rollDownStairs, 3=smartFall. - - - Default value = 0. - Min value = 0. - Max value = 3. - - - - - Sets the UseExtendedCatchFall setting for this . - keep the character active instead of relaxing at the end of the catch fall. - - - Default value = False. - - - - - Sets the InitialWeaknessZeroDuration setting for this . - duration for which the character's upper body stays at minimum stiffness (not quite zero). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the InitialWeaknessRampDuration setting for this . - duration of the ramp to bring the character's upper body stiffness back to normal levels. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the InitialNeckDuration setting for this . - duration for which the neck stays at intial stiffness/damping. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the InitialNeckRampDuration setting for this . - duration of the ramp to bring the neck stiffness/damping back to normal levels. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the UseCStrModulation setting for this . - if enabled upper and lower body strength scales with character strength, using the range given by parameters below. - - - Default value = False. - - - - - Sets the CStrUpperMin setting for this . - proportions to what the strength would be normally. - - - Default value = 0.1f. - Min value = 0.1f. - Max value = 1.0f. - - - - - Sets the CStrUpperMax setting for this . - - - Default value = 1.0f. - Min value = 0.1f. - Max value = 1.0f. - - - - - Sets the CStrLowerMin setting for this . - - - Default value = 0.1f. - Min value = 0.1f. - Max value = 1.0f. - - - - - Sets the CStrLowerMax setting for this . - - - Default value = 1.0f. - Min value = 0.1f. - Max value = 1.0f. - - - - - Sets the DeathTime setting for this . - time to death (HACK for underwater). If -ve don't ever die. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 1000.0f. - - - - - Send new wound information to the shot. Can cause shot to restart it's performance in part or in whole. - - - - - Creates a new Instance of the ShotNewBulletHelper for sending a ShotNewBullet to a given . - - The to send the ShotNewBullet to. - - Send new wound information to the shot. Can cause shot to restart it's performance in part or in whole. - - - - - Sets the BodyPart setting for this . - part ID on the body where the bullet hit. - - - Default value = 0. - Min value = 0. - Max value = 21. - - - - - Sets the LocalHitPointInfo setting for this . - if true then normal and hitPoint should be supplied in local coordinates of bodyPart. If false then normal and hitPoint should be supplied in World coordinates. - - - Default value = True. - - - - - Sets the Normal setting for this . - Normal coming out of impact point on character. Can be local or global depending on localHitPointInfo. - - - Default value = Vector3(0.0f, 0.0f, -1.0f). - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the HitPoint setting for this . - position of impact on character. Can be local or global depending on localHitPointInfo. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the BulletVel setting for this . - bullet velocity in world coordinates. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - Min value = -2000.0f. - Max value = 2000.0f. - - - - - Creates a new Instance of the ShotSnapHelper for sending a ShotSnap to a given . - - The to send the ShotSnap to. - - - - Sets the Snap setting for this . - Add a Snap to shot. - - - Default value = False. - - - - - Sets the SnapMag setting for this . - The magnitude of the reaction. - - - Default value = 0.4f. - Min value = -10.0f. - Max value = 10.0f. - - - - - Sets the SnapMovingMult setting for this . - movingMult*snapMag = The magnitude of the reaction if moving(comVelMag) faster than movingThresh. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the SnapBalancingMult setting for this . - balancingMult*snapMag = The magnitude of the reaction if balancing = (not lying on the floor/ not upper body not collided) and not airborne. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the SnapAirborneMult setting for this . - airborneMult*snapMag = The magnitude of the reaction if airborne. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the SnapMovingThresh setting for this . - If moving(comVelMag) faster than movingThresh then mvingMult applied to stunMag. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the SnapDirectionRandomness setting for this . - The character snaps in a prescribed way (decided by bullet direction) - Higher the value the more random this direction is. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the SnapLeftArm setting for this . - snap the leftArm. - - - Default value = False. - - - - - Sets the SnapRightArm setting for this . - snap the rightArm. - - - Default value = False. - - - - - Sets the SnapLeftLeg setting for this . - snap the leftLeg. - - - Default value = False. - - - - - Sets the SnapRightLeg setting for this . - snap the rightLeg. - - - Default value = False. - - - - - Sets the SnapSpine setting for this . - snap the spine. - - - Default value = True. - - - - - Sets the SnapNeck setting for this . - snap the neck. - - - Default value = True. - - - - - Sets the SnapPhasedLegs setting for this . - Legs are either in phase with each other or not. - - - Default value = True. - - - - - Sets the SnapHipType setting for this . - type of hip reaction 0=none, 1=side2side 2=steplike. - - - Default value = 0. - Min value = 0. - Max value = 2. - - - - - Sets the SnapUseBulletDir setting for this . - Legs are either in phase with each other or not. - - - Default value = True. - - - - - Sets the SnapHitPart setting for this . - Snap only around the wounded part//mmmmtodo check whether bodyPart doesn't have to be remembered for unSnap. - - - Default value = False. - - - - - Sets the UnSnapInterval setting for this . - Interval before applying reverse snap. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the UnSnapRatio setting for this . - The magnitude of the reverse snap. - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the SnapUseTorques setting for this . - use torques to make the snap otherwise use a change in the parts angular velocity. - - - Default value = True. - - - - - configure the shockSpin effect in shot. Spin/Lift the character using cheat torques/forces. - - - - - Creates a new Instance of the ShotShockSpinHelper for sending a ShotShockSpin to a given . - - The to send the ShotShockSpin to. - - configure the shockSpin effect in shot. Spin/Lift the character using cheat torques/forces. - - - - - Sets the AddShockSpin setting for this . - if enabled, add a short 'shock' of torque to the character's spine to exaggerate bullet impact. - - - Default value = False. - - - - - Sets the RandomizeShockSpinDirection setting for this . - for use with close-range shotgun blasts, or similar. - - - Default value = False. - - - - - Sets the AlwaysAddShockSpin setting for this . - if true, apply the shock spin no matter which body component was hit. otherwise only apply if the spine or clavicles get hit. - - - Default value = False. - - - - - Sets the ShockSpinMin setting for this . - minimum amount of torque to add if using shock-spin feature. - - - Default value = 50.0f. - Min value = 0.0f. - Max value = 1000.0f. - - - - - Sets the ShockSpinMax setting for this . - maxiumum amount of torque to add if using shock-spin feature. - - - Default value = 90.0f. - Min value = 0.0f. - Max value = 1000.0f. - - - - - Sets the ShockSpinLiftForceMult setting for this . - if greater than 0, apply a force to lift the character up while the torque is applied, trying to produce a dramatic spun/twist shotgun-to-the-chest effect. this is a scale of the torque applied, so 8.0 or so would give a reasonable amount of lift. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the ShockSpinDecayMult setting for this . - multiplier used when decaying torque spin over time. - - - Default value = 4.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ShockSpinScalePerComponent setting for this . - torque applied is scaled by this amount across the spine components - spine2 recieving the full amount, then 3 and 1 and finally 0. each time, this value is used to scale it down. 0.5 means half the torque each time. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the ShockSpinMaxTwistVel setting for this . - shock spin ends when twist velocity is greater than this value (try 6.0). If set to -1 does not stop. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 200.0f. - - - - - Sets the ShockSpinScaleByLeverArm setting for this . - shock spin scales by lever arm of bullet i.e. bullet impact point to centre line. - - - Default value = True. - - - - - Sets the ShockSpinAirMult setting for this . - shockSpin's torque is multipied by this value when both the character's feet are not in contact. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ShockSpin1FootMult setting for this . - shockSpin's torque is multipied by this value when the one of the character's feet are not in contact. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the ShockSpinFootGripMult setting for this . - shockSpin scales the torques applied to the feet by footSlipCompensation. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the BracedSideSpinMult setting for this . - If shot on a side with a forward foot and both feet are on the ground and balanced, increase the shockspin to compensate for the balancer naturally resisting spin to that side. - - - Default value = 1.0f. - Min value = 1.0f. - Max value = 5.0f. - - - - - configure the fall to knees shot. - - - - - Creates a new Instance of the ShotFallToKneesHelper for sending a ShotFallToKnees to a given . - - The to send the ShotFallToKnees to. - - configure the fall to knees shot. - - - - - Sets the FallToKnees setting for this . - Type of reaction. - - - Default value = False. - - - - - Sets the FtkAlwaysChangeFall setting for this . - Always change fall behaviour. If false only change when falling forward. - - - Default value = False. - - - - - Sets the FtkBalanceTime setting for this . - How long the balancer runs for before fallToKnees starts. - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 5.0f. - - - - - Sets the FtkHelperForce setting for this . - Hip helper force magnitude - to help character lean over balance point of line between toes. - - - Default value = 200.0f. - Min value = 0.0f. - Max value = 2000.0f. - - - - - Sets the FtkHelperForceOnSpine setting for this . - Helper force applied to spine3 aswell. - - - Default value = True. - - - - - Sets the FtkLeanHelp setting for this . - Help balancer lean amount - to help character lean over balance point of line between toes. Half of this is also applied as hipLean. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 0.3f. - - - - - Sets the FtkSpineBend setting for this . - Bend applied to spine when falling from knees. (+ve forward - try -0.1) (only if rds called). - - - Default value = 0.0f. - Min value = -0.2f. - Max value = 0.3f. - - - - - Sets the FtkStiffSpine setting for this . - Stiffen spine when falling from knees (only if rds called). - - - Default value = False. - - - - - Sets the FtkImpactLooseness setting for this . - Looseness (muscleStiffness = 1.01f - m_parameters.ftkImpactLooseness) applied to upperBody on knee impacts. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the FtkImpactLoosenessTime setting for this . - Time that looseness is applied after knee impacts. - - - Default value = 0.2f. - Min value = -0.1f. - Max value = 1.0f. - - - - - Sets the FtkBendRate setting for this . - Rate at which the legs are bent to go from standing to on knees. - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the FtkHipBlend setting for this . - Blend from current hip to balancing on knees hip angle. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the FtkLungeProb setting for this . - Probability that a lunge reaction will be allowed. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the FtkKneeSpin setting for this . - When on knees allow some spinning of the character. If false then the balancers' footSlipCompensation remains on and tends to keep the character facing the same way as when it was balancing. - - - Default value = False. - - - - - Sets the FtkFricMult setting for this . - Multiplier on the reduction of friction for the feet based on angle away from horizontal - helps the character fall to knees quicker. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 5.0f. - - - - - Sets the FtkHipAngleFall setting for this . - Apply this hip angle when the character starts to fall backwards when on knees. - - - Default value = 0.5f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the FtkPitchForwards setting for this . - Hip pitch applied (+ve forward, -ve backwards) if character is falling forwards on way down to it's knees. - - - Default value = 0.1f. - Min value = -0.5f. - Max value = 0.5f. - - - - - Sets the FtkPitchBackwards setting for this . - Hip pitch applied (+ve forward, -ve backwards) if character is falling backwards on way down to it's knees. - - - Default value = 0.1f. - Min value = -0.5f. - Max value = 0.5f. - - - - - Sets the FtkFallBelowStab setting for this . - Balancer instability below which the character starts to bend legs even if it isn't going to fall on to it's knees (i.e. if going backwards). 0.3 almost ensures a fall to knees but means the character will keep stepping backward until it slows down enough. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 15.0f. - - - - - Sets the FtkBalanceAbortThreshold setting for this . - when the character gives up and goes into a fall. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the FtkOnKneesArmType setting for this . - Type of arm response when on knees falling forward 0=useFallArms (from RollDownstairs or catchFall), 1= armsIn, 2=armsOut. - - - Default value = 2. - Min value = 0. - Max value = 2. - - - - - Sets the FtkReleaseReachForWound setting for this . - Release the reachForWound this amount of time after the knees have hit. If LT 0.0 then keep reaching for wound regardless of fall/onground state. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 5.0f. - - - - - Sets the FtkReachForWound setting for this . - true = Keep reaching for wound regardless of fall/onground state. false = respect the shotConfigureArms params: reachFalling, reachFallingWithOneHand, reachOnFloor. - - - Default value = True. - - - - - Sets the FtkReleasePointGun setting for this . - Override the pointGun when knees hit. - - - Default value = False. - - - - - Sets the FtkFailMustCollide setting for this . - The upper body of the character must be colliding and other failure conditions met to fail. - - - Default value = True. - - - - - configure the shot from behind reaction. - - - - - Creates a new Instance of the ShotFromBehindHelper for sending a ShotFromBehind to a given . - - The to send the ShotFromBehind to. - - configure the shot from behind reaction. - - - - - Sets the ShotFromBehind setting for this . - Type of reaction. - - - Default value = False. - - - - - Sets the SfbSpineAmount setting for this . - SpineBend. - - - Default value = 4.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the SfbNeckAmount setting for this . - Neck Bend. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the SfbHipAmount setting for this . - hip Pitch. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the SfbKneeAmount setting for this . - knee bend. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the SfbPeriod setting for this . - shotFromBehind reaction period after being shot. - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the SfbForceBalancePeriod setting for this . - amount of time not taking a step. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the SfbArmsOnset setting for this . - amount of time before applying spread out arms pose. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the SfbKneesOnset setting for this . - amount of time before bending knees a bit. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the SfbNoiseGain setting for this . - Controls additional independent randomized bending of left/right elbows. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the SfbIgnoreFail setting for this . - 0=balancer fails as normal, 1= ignore backArchedBack and leanedTooFarBack balancer failures, 2= ignore backArchedBack balancer failure only, 3= ignore leanedTooFarBack balancer failure only. - - - Default value = 0. - Min value = 0. - Max value = 3. - - - - - configure the shot in guts reaction. - - - - - Creates a new Instance of the ShotInGutsHelper for sending a ShotInGuts to a given . - - The to send the ShotInGuts to. - - configure the shot in guts reaction. - - - - - Sets the ShotInGuts setting for this . - Type of reaction. - - - Default value = False. - - - - - Sets the SigSpineAmount setting for this . - SpineBend. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the SigNeckAmount setting for this . - Neck Bend. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the SigHipAmount setting for this . - hip Pitch. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the SigKneeAmount setting for this . - knee bend. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the SigPeriod setting for this . - active time after being shot. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the SigForceBalancePeriod setting for this . - amount of time not taking a step. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the SigKneesOnset setting for this . - amount of time not taking a step. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Creates a new Instance of the ShotHeadLookHelper for sending a ShotHeadLook to a given . - - The to send the ShotHeadLook to. - - - - Sets the UseHeadLook setting for this . - Use headLook. Default: looks at provided target or if this is zero - looks forward or in velocity direction. If reachForWound is enabled, switches between looking at the wound and at the default target. - - - Default value = False. - - - - - Sets the HeadLook setting for this . - position to look at with headlook flag. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the HeadLookAtWoundMinTimer setting for this . - Min time to look at wound. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the HeadLookAtWoundMaxTimer setting for this . - Max time to look at wound. - - - Default value = 0.8f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the HeadLookAtHeadPosMaxTimer setting for this . - Min time to look headLook or if zero - forward or in velocity direction. - - - Default value = 1.7f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the HeadLookAtHeadPosMinTimer setting for this . - Max time to look headLook or if zero - forward or in velocity direction. - - - Default value = 0.6f. - Min value = 0.0f. - Max value = 10.0f. - - - - - configure the arm reactions in shot. - - - - - Creates a new Instance of the ShotConfigureArmsHelper for sending a ShotConfigureArms to a given . - - The to send the ShotConfigureArms to. - - configure the arm reactions in shot. - - - - - Sets the Brace setting for this . - blind brace with arms if appropriate. - - - Default value = True. - - - - - Sets the PointGun setting for this . - Point gun if appropriate. - - - Default value = False. - - - - - Sets the UseArmsWindmill setting for this . - armsWindmill if going backwards fast enough. - - - Default value = True. - - - - - Sets the ReleaseWound setting for this . - release wound if going sideways/forward fast enough. 0 = don't. 1 = only if bracing. 2 = any default arm reaction. - - - Default value = 1. - Min value = 0. - Max value = 2. - - - - - Sets the ReachFalling setting for this . - reachForWound when falling 0 = false, 1 = true, 2 = once per shot performance. - - - Default value = 0. - Min value = 0. - Max value = 2. - - - - - Sets the ReachFallingWithOneHand setting for this . - Force character to reach for wound with only one hand when falling or fallen. 0= allow 2 handed reach, 1= left only if 2 handed possible, 2= right only if 2 handed possible, 3 = one handed but automatic (allows switching of hands). - - - Default value = 3. - Min value = 0. - Max value = 3. - - - - - Sets the ReachOnFloor setting for this . - reachForWound when on floor - 0 = false, 1 = true, 2 = once per shot performance. - - - Default value = 0. - Min value = 0. - Max value = 2. - - - - - Sets the AlwaysReachTime setting for this . - Inhibit arms brace for this amount of time after reachForWound has begun. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the AWSpeedMult setting for this . - For armsWindmill, multiplier on character speed - increase of speed of circling is proportional to character speed (max speed of circliing increase = 1.5). eg. lowering the value increases the range of velocity that the 0-1.5 is applied over. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the AWRadiusMult setting for this . - For armsWindmill, multiplier on character speed - increase of radii is proportional to character speed (max radius increase = 0.45). eg. lowering the value increases the range of velocity that the 0-0.45 is applied over. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the AWStiffnessAdd setting for this . - For armsWindmill, added arm stiffness ranges from 0 to AWStiffnessAdd. - - - Default value = 4.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the ReachWithOneHand setting for this . - Force character to reach for wound with only one hand. 0= allow 2 handed reach, 1= left only if 2 handed possible, 2= right only if 2 handed possible. - - - Default value = 0. - Min value = 0. - Max value = 2. - - - - - Sets the AllowLeftPistolRFW setting for this . - Allow character to reach for wound with left hand if holding a pistol. It never will for a rifle. If pointGun is running this will only happen if the hand cannot point and pointGun:poseUnusedGunArm = false. - - - Default value = True. - - - - - Sets the AllowRightPistolRFW setting for this . - Allow character to reach for wound with right hand if holding a pistol. It never will for a rifle. If pointGun is running this will only happen if the hand cannot point and pointGun:poseUnusedGunArm = false. - - - Default value = False. - - - - - Sets the RfwWithPistol setting for this . - Override pointGun and reachForWound if desired if holding a pistol. It never will for a rifle. - - - Default value = False. - - - - - Sets the Fling2 setting for this . - Type of reaction. - - - Default value = False. - - - - - Sets the Fling2Left setting for this . - Fling the left arm. - - - Default value = True. - - - - - Sets the Fling2Right setting for this . - Fling the right arm. - - - Default value = True. - - - - - Sets the Fling2OverrideStagger setting for this . - Override stagger arms even if staggerFall:m_upperBodyReaction = true. - - - Default value = False. - - - - - Sets the Fling2TimeBefore setting for this . - Time after hit that the fling will start (allows for a bit of loose arm movement from bullet impact.snap etc). - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Fling2Time setting for this . - Duration of the fling behaviour. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Fling2MStiffL setting for this . - MuscleStiffness of the left arm. If negative then uses the shots underlying muscle stiffness from controlStiffness (i.e. respects looseness). - - - Default value = 1.0f. - Min value = -1.0f. - Max value = 1.5f. - - - - - Sets the Fling2MStiffR setting for this . - MuscleStiffness of the right arm. If negative then uses the shots underlying muscle stiffness from controlStiffness (i.e. respects looseness). - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 1.5f. - - - - - Sets the Fling2RelaxTimeL setting for this . - Maximum time before the left arm relaxes in the fling. It will relax automatically when the arm has completed it's bent arm fling. This is what causes the arm to straighten. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Fling2RelaxTimeR setting for this . - Maximum time before the right arm relaxes in the fling. It will relax automatically when the arm has completed it's bent arm fling. This is what causes the arm to straighten. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Fling2AngleMinL setting for this . - Min fling angle for left arm. Fling angle is random in the range fling2AngleMin:fling2AngleMax. Angle of fling in radians measured from the body horizontal sideways from shoulder. positive is up, 0 shoulder level, negative down. - - - Default value = -1.5f. - Min value = -1.5f. - Max value = 1.0f. - - - - - Sets the Fling2AngleMaxL setting for this . - Max fling angle for left arm. - - - Default value = 1.0f. - Min value = -1.5f. - Max value = 1.0f. - - - - - Sets the Fling2AngleMinR setting for this . - Min fling angle for right arm. - - - Default value = -1.5f. - Min value = -1.5f. - Max value = 1.0f. - - - - - Sets the Fling2AngleMaxR setting for this . - Max fling angle for right arm. - - - Default value = 1.0f. - Min value = -1.5f. - Max value = 1.0f. - - - - - Sets the Fling2LengthMinL setting for this . - Min left arm length. Armlength is random in the range fling2LengthMin:fling2LengthMax. Armlength maps one to one with elbow angle. (These values are scaled internally for the female character). - - - Default value = 0.3f. - Min value = 0.3f. - Max value = 0.6f. - - - - - Sets the Fling2LengthMaxL setting for this . - Max left arm length. - - - Default value = 0.6f. - Min value = 0.3f. - Max value = 0.6f. - - - - - Sets the Fling2LengthMinR setting for this . - Min right arm length. - - - Default value = 0.3f. - Min value = 0.3f. - Max value = 0.6f. - - - - - Sets the Fling2LengthMaxR setting for this . - Max right arm length. - - - Default value = 0.6f. - Min value = 0.3f. - Max value = 0.6f. - - - - - Sets the Bust setting for this . - Has the character got a bust. If so then cupBust (move bust reach targets below bust) or bustElbowLift and cupSize (stop upperArm penetrating bust and move bust targets to surface of bust) are implemented. - - - Default value = False. - - - - - Sets the BustElbowLift setting for this . - Lift the elbows up this much extra to avoid upper arm penetrating the bust (when target hits spine2 or spine3). - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the CupSize setting for this . - Amount reach target to bust (spine2) will be offset forward by. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the CupBust setting for this . - All reach targets above or on the bust will cause a reach below the bust. (specifically moves spine3 and spine2 targets to spine1). bustElbowLift and cupSize are ignored. - - - Default value = False. - - - - - Clone of High Fall with a wider range of operating conditions. - - - - - Creates a new Instance of the SmartFallHelper for sending a SmartFall to a given . - - The to send the SmartFall to. - - Clone of High Fall with a wider range of operating conditions. - - - - - Sets the BodyStiffness setting for this . - stiffness of body. Value feeds through to bodyBalance (synched with defaults), to armsWindmill (14 for this value at default ), legs pedal, head look and roll down stairs directly. - - - Default value = 11.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the Bodydamping setting for this . - The damping of the joints. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 3.0f. - - - - - Sets the Catchfalltime setting for this . - The length of time before the impact that the character transitions to the landing. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the CrashOrLandCutOff setting for this . - 0.52angle is 0.868 dot//A threshold for deciding how far away from upright the character needs to be before bailing out (going into a foetal) instead of trying to land (keeping stretched out). NB: never does bailout if ignorWorldCollisions true. - - - Default value = 0.9f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the PdStrength setting for this . - Strength of the controller to keep the character at angle aimAngleBase from vertical. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the PdDamping setting for this . - Damping multiplier of the controller to keep the character at angle aimAngleBase from vertical. The actual damping is pdDamping*pdStrength*constant*angVel. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 5.0f. - - - - - Sets the ArmAngSpeed setting for this . - arm circling speed in armWindMillAdaptive. - - - Default value = 7.9f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the ArmAmplitude setting for this . - in armWindMillAdaptive. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the ArmPhase setting for this . - in armWindMillAdaptive 3.1 opposite for stuntman. 1.0 old default. 0.0 in phase. - - - Default value = 3.1f. - Min value = 0.0f. - Max value = 6.3f. - - - - - Sets the ArmBendElbows setting for this . - in armWindMillAdaptive bend the elbows as a function of armAngle. For stuntman true otherwise false. - - - Default value = True. - - - - - Sets the LegRadius setting for this . - radius of legs on pedal. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 0.5f. - - - - - Sets the LegAngSpeed setting for this . - in pedal. - - - Default value = 7.9f. - Min value = 0.0f. - Max value = 15.0f. - - - - - Sets the LegAsymmetry setting for this . - 0.0 for stuntman. Random offset applied per leg to the angular speed to desynchronise the pedaling - set to 0 to disable, otherwise should be set to less than the angularSpeed value. - - - Default value = 4.0f. - Min value = -10.0f. - Max value = 10.0f. - - - - - Sets the Arms2LegsPhase setting for this . - phase angle between the arms and legs circling angle. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 6.5f. - - - - - Sets the Arms2LegsSync setting for this . - Syncs the arms angle to what the leg angle is. - - - Default value = . - All speed/direction parameters of armswindmill are overwritten if = . - If and you want synced arms/legs then armAngSpeed=legAngSpeed, legAsymmetry = 0.0 (to stop randomizations of the leg cicle speed). - - - - - Sets the ArmsUp setting for this . - Where to put the arms when preparing to land. Approx 1 = above head, 0 = head height, -1 = down. LT -2.0 use catchFall arms, LT -3.0 use prepare for landing pose if Agent is due to land vertically, feet first. - - - Default value = -3.1f. - Min value = -4.0f. - Max value = 2.0f. - - - - - Sets the OrientateBodyToFallDirection setting for this . - toggle to orientate to fall direction. i.e. orientate so that the character faces the horizontal velocity direction. - - - Default value = False. - - - - - Sets the OrientateTwist setting for this . - If false don't worry about the twist angle of the character when orientating the character. If false this allows the twist axis of the character to be free (You can get a nice twisting highFall like the one in dieHard 4 when the car goes into the helicopter). - - - Default value = True. - - - - - Sets the OrientateMax setting for this . - DEVEL parameter - suggest you don't edit it. Maximum torque the orientation controller can apply. If 0 then no helper torques will be used. 300 will orientate the character soflty for all but extreme angles away from aimAngleBase. If abs (current -aimAngleBase) is getting near 3.0 then this can be reduced to give a softer feel. - - - Default value = 300.0f. - Min value = 0.0f. - Max value = 2000.0f. - - - - - Sets the AlanRickman setting for this . - If true then orientate the character to face the point from where it started falling. HighFall like the one in dieHard with Alan Rickman. - - - Default value = False. - - - - - Sets the FowardRoll setting for this . - Try to execute a forward Roll on landing. - - - Default value = False. - - - - - Sets the UseZeroPose_withFowardRoll setting for this . - Blend to a zero pose when forward roll is attempted. - - - Default value = False. - - - - - Sets the AimAngleBase setting for this . - Angle from vertical the pdController is driving to ( positive = forwards). - - - Default value = 0.2f. - Min value = -3.1f. - Max value = 3.1f. - - - - - Sets the FowardVelRotation setting for this . - scale to add/subtract from aimAngle based on forward speed (Internal). - - - Default value = 0.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the FootVelCompScale setting for this . - Scale to change to amount of vel that is added to the foot ik from the velocity (Internal). - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the SideD setting for this . - sideoffset for the feet during prepareForLanding. +ve = right. - - - Default value = 0.2f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the FowardOffsetOfLegIK setting for this . - Forward offset for the feet during prepareForLanding. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LegL setting for this . - Leg Length for ik (Internal)//unused. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the CatchFallCutOff setting for this . - 0.5angle is 0.878 dot. Cutoff to go to the catchFall ( internal) //mmmtodo do like crashOrLandCutOff. - - - Default value = 0.9f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the LegStrength setting for this . - Strength of the legs at landing. - - - Default value = 12.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the Balance setting for this . - If true have enough strength to balance. If false not enough strength in legs to balance (even though bodyBlance called). - - - Default value = True. - - - - - Sets the IgnorWorldCollisions setting for this . - Never go into bailout (foetal). - - - Default value = False. - - - - - Sets the AdaptiveCircling setting for this . - stuntman type fall. Arm and legs circling direction controlled by angmom and orientation. - - - Default value = True. - - - - - Sets the Hula setting for this . - With stuntman type fall. Hula reaction if can't see floor and not rotating fast. - - - Default value = True. - - - - - Sets the MaxSpeedForRecoverableFall setting for this . - Character needs to be moving less than this speed to consider fall as a recoverable one. - - - Default value = 15.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the MinSpeedForBrace setting for this . - Character needs to be moving at least this fast horizontally to start bracing for impact if there is an object along its trajectory. - - - Default value = 10.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the LandingNormal setting for this . - Ray-cast normal doted with up direction has to be greater than this number to consider object flat enough to land on it. - - - Default value = 0.6f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the RdsForceMag setting for this . - - - Default value = 0.8f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the RdsTargetLinVeDecayTime setting for this . - RDS: Time for the targetlinearVelocity to decay to zero. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the RdsTargetLinearVelocity setting for this . - RDS: Helper torques are applied to match the spin of the character to the max of targetLinearVelocity and COMVelMag. -1 to use initial character velocity. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 30.0f. - - - - - Sets the RdsUseStartingFriction setting for this . - Start Catch Fall/RDS state with specified friction. Catch fall will overwrite based on setFallingReaction. - - - Default value = False. - - - - - Sets the RdsStartingFriction setting for this . - Catch Fall/RDS starting friction. Catch fall will overwrite based on setFallingReaction. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the RdsStartingFrictionMin setting for this . - Catch Fall/RDS starting friction minimum. Catch fall will overwrite based on setFallingReaction. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the RdsForceVelThreshold setting for this . - Velocity threshold under which RDS force mag will be applied. - - - Default value = 10.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the InitialState setting for this . - Force initial state (used in vehicle bail out to start SF_CatchFall (6) earlier. - - - Default value = 0. - Min value = 0. - Max value = 7. - - - - - Sets the ChangeExtremityFriction setting for this . - Allow friction changes to be applied to the hands and feet. - - - Default value = False. - - - - - Sets the Teeter setting for this . - Set up an immediate teeter in the direction of trave if initial state is SF_Balance. - - - Default value = False. - - - - - Sets the TeeterOffset setting for this . - Offset the default Teeter edge in the direction of travel. Will need to be tweaked depending on how close to the real edge AI tends to trigger the behaviour. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the StopRollingTime setting for this . - Time in seconds before ped should start actively trying to stop rolling. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the ReboundScale setting for this . - Scale for rebound assistance. 0=off, 1=very bouncy, 2=jbone crazy Try 0.5?. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the ReboundMask setting for this . - Part mask to apply rebound assistance. - - - Default value = uk. - - - - - Sets the ForceHeadAvoid setting for this . - Force head avoid to be active during Catch Fall even when character is not on the ground. - - - Default value = False. - - - - - Sets the CfZAxisSpinReduction setting for this . - Pass-through parameter for Catch Fall spin reduction. Increase to stop more spin. 0..1. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the SplatWhenStopped setting for this . - Transition to splat state when com vel is below value, regardless of character health or fall velocity. Set to zero to disable. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the BlendHeadWhenStopped setting for this . - Blend head to neutral pose com vel approaches zero. Linear between zero and value. Set to zero to disable. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the SpreadLegs setting for this . - Spread legs amount for Pedal during fall. - - - Default value = 0.1f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Creates a new Instance of the StaggerFallHelper for sending a StaggerFall to a given . - - The to send the StaggerFall to. - - - - Sets the ArmStiffness setting for this . - stiffness of arms. catch_fall's stiffness scales with this value, but has default values when this is default. - - - Default value = 12.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the ArmDamping setting for this . - Sets damping value for the arms. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the SpineDamping setting for this . - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the SpineStiffness setting for this . - - - Default value = 10.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the ArmStiffnessStart setting for this . - armStiffness during the yanked timescale ie timeAtStartValues. - - - Default value = 3.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the ArmDampingStart setting for this . - armDamping during the yanked timescale ie timeAtStartValues. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the SpineDampingStart setting for this . - spineDamping during the yanked timescale ie timeAtStartValues. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the SpineStiffnessStart setting for this . - spineStiffness during the yanked timescale ie timeAtStartValues. - - - Default value = 3.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the TimeAtStartValues setting for this . - time spent with Start values for arms and spine stiffness and damping ie for whiplash efffect. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the RampTimeFromStartValues setting for this . - time spent ramping from Start to end values for arms and spine stiffness and damping ie for whiplash efffect (occurs after timeAtStartValues). - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the StaggerStepProb setting for this . - Probability per step of time spent in a stagger step. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the StepsTillStartEnd setting for this . - steps taken before lowerBodyStiffness starts ramping down by perStepReduction1. - - - Default value = 2. - Min value = 0. - Max value = 100. - - - - - Sets the TimeStartEnd setting for this . - time from start of behaviour before lowerBodyStiffness starts ramping down for rampTimeToEndValues to endValues. - - - Default value = 100.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the RampTimeToEndValues setting for this . - time spent ramping from lowerBodyStiffness to lowerBodyStiffnessEnd. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the LowerBodyStiffness setting for this . - lowerBodyStiffness should be 12. - - - Default value = 13.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the LowerBodyStiffnessEnd setting for this . - lowerBodyStiffness at end. - - - Default value = 8.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the PredictionTime setting for this . - amount of time (seconds) into the future that the character tries to step to. bigger values try to recover with fewer, bigger steps. smaller values recover with smaller steps, and generally recover less. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the PerStepReduction1 setting for this . - LowerBody stiffness will be reduced every step to make the character fallover. - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the LeanInDirRate setting for this . - leanInDirection will be increased from 0 to leanInDirMax linearly at this rate. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the LeanInDirMaxF setting for this . - Max of leanInDirection magnitude when going forwards. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LeanInDirMaxB setting for this . - Max of leanInDirection magnitude when going backwards. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LeanHipsMaxF setting for this . - Max of leanInDirectionHips magnitude when going forwards. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the LeanHipsMaxB setting for this . - Max of leanInDirectionHips magnitude when going backwards. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Lean2multF setting for this . - Lean of spine to side in side velocity direction when going forwards. - - - Default value = -1.0f. - Min value = -5.0f. - Max value = 5.0f. - - - - - Sets the Lean2multB setting for this . - Lean of spine to side in side velocity direction when going backwards. - - - Default value = -2.0f. - Min value = -5.0f. - Max value = 5.0f. - - - - - Sets the PushOffDist setting for this . - amount stance foot is behind com in the direction of velocity before the leg tries to pushOff to increase momentum. Increase to lower the probability of the pushOff making the character bouncy. - - - Default value = 0.2f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the MaxPushoffVel setting for this . - stance leg will only pushOff to increase momentum if the vertical hip velocity is less than this value. 0.4 seems like a good value. The higher it is the the less this functionality is applied. If it is very low or negative this can stop the pushOff altogether. - - - Default value = 20.0f. - Min value = -20.0f. - Max value = 20.0f. - - - - - Sets the HipBendMult setting for this . - hipBend scaled with velocity. - - - Default value = 0.0f. - Min value = -10.0f. - Max value = 10.0f. - - - - - Sets the AlwaysBendForwards setting for this . - bend forwards at the hip (hipBendMult) whether moving backwards or forwards. - - - Default value = False. - - - - - Sets the SpineBendMult setting for this . - spine bend scaled with velocity. - - - Default value = 0.4f. - Min value = -10.0f. - Max value = 10.0f. - - - - - Sets the UseHeadLook setting for this . - enable and provide a look-at target to make the character's head turn to face it while balancing, balancer default is 0.2. - - - Default value = True. - - - - - Sets the HeadLookPos setting for this . - position of thing to look at. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the HeadLookInstanceIndex setting for this . - level index of thing to look at. - - - Default value = -1. - Min value = -1. - - - - - Sets the HeadLookAtVelProb setting for this . - Probability [0-1] that headLook will be looking in the direction of velocity when stepping. - - - Default value = 1.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the TurnOffProb setting for this . - Weighted Probability that turn will be off. This is one of six turn type weights. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Turn2TargetProb setting for this . - Weighted Probability of turning towards headLook target. This is one of six turn type weights. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the Turn2VelProb setting for this . - Weighted Probability of turning towards velocity. This is one of six turn type weights. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TurnAwayProb setting for this . - Weighted Probability of turning away from headLook target. This is one of six turn type weights. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TurnLeftProb setting for this . - Weighted Probability of turning left. This is one of six turn type weights. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TurnRightProb setting for this . - Weighted Probability of turning right. This is one of six turn type weights. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the UseBodyTurn setting for this . - enable and provide a positive bodyTurnTimeout and provide a look-at target to make the character turn to face it while balancing. - - - Default value = False. - - - - - Sets the UpperBodyReaction setting for this . - enable upper body reaction ie blindBrace and armswindmill. - - - Default value = True. - - - - - Creates a new Instance of the TeeterHelper for sending a Teeter to a given . - - The to send the Teeter to. - - - - Sets the EdgeLeft setting for this . - Defines the left edge point (left of character facing edge). - - - Default value = Vector3(39.5f, 38.9f, 21.1f). - Min value = 0.0f. - - - - - Sets the EdgeRight setting for this . - Defines the right edge point (right of character facing edge). - - - Default value = Vector3(39.5f, 39.9f, 21.1f). - Min value = 0.0f. - - - - - Sets the UseExclusionZone setting for this . - stop stepping across the line defined by edgeLeft and edgeRight. - - - Default value = True. - - - - - Sets the UseHeadLook setting for this . - - - Default value = True. - - - - - Sets the CallHighFall setting for this . - call highFall if fallen over the edge. If false just call blended writhe (to go over the top of the fall behaviour of the underlying behaviour e.g. bodyBalance). - - - Default value = True. - - - - - Sets the LeanAway setting for this . - lean away from the edge based on velocity towards the edge (if closer than 2m from edge). - - - Default value = True. - - - - - Sets the PreTeeterTime setting for this . - Time-to-edge threshold to start pre-teeter (windmilling, etc). - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the LeanAwayTime setting for this . - Time-to-edge threshold to start leaning away from a potential fall. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the LeanAwayScale setting for this . - Scales stay upright lean and hip pitch. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the TeeterTime setting for this . - Time-to-edge threshold to start full-on teeter (more aggressive lean, drop-and-twist, etc). - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Creates a new Instance of the UpperBodyFlinchHelper for sending a UpperBodyFlinch to a given . - - The to send the UpperBodyFlinch to. - - - - Sets the HandDistanceLeftRight setting for this . - Left-Right distance between the hands. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the HandDistanceFrontBack setting for this . - Front-Back distance between the hands. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the HandDistanceVertical setting for this . - Vertical distance between the hands. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the BodyStiffness setting for this . - stiffness of body. Value carries over to head look, spine twist. - - - Default value = 11.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the BodyDamping setting for this . - damping value used for upper body. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the BackBendAmount setting for this . - Amount to bend the back during the flinch. - - - Default value = -0.6f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the UseRightArm setting for this . - Toggle to use the right arm. - - - Default value = True. - - - - - Sets the UseLeftArm setting for this . - Toggle to Use the Left arm. - - - Default value = True. - - - - - Sets the NoiseScale setting for this . - Amplitude of the perlin noise applied to the arms positions in the flicnh to the front part of the behaviour. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the NewHit setting for this . - Relaxes the character for 1 frame if set. - - - Default value = True. - - - - - Sets the ProtectHeadToggle setting for this . - Always protect head. Note if false then character flinches if target is in front, protects head if target is behind. - - - Default value = False. - - - - - Sets the DontBraceHead setting for this . - don't protect head only brace from front. Turned on by bcr. - - - Default value = False. - - - - - Sets the ApplyStiffness setting for this . - Turned of by bcr. - - - Default value = True. - - - - - Sets the HeadLookAwayFromTarget setting for this . - Look away from target (unless protecting head then look between feet). - - - Default value = False. - - - - - Sets the UseHeadLook setting for this . - Use headlook. - - - Default value = True. - - - - - Sets the TurnTowards setting for this . - ve balancer turn Towards, negative balancer turn Away, 0 balancer won't turn. NB.There is a 50% chance that the character will not turn even if this parameter is set to turn. - - - Default value = 1. - Min value = -2. - Max value = 2. - - - - - Sets the Pos setting for this . - position in world-space of object to flinch from. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Creates a new Instance of the YankedHelper for sending a Yanked to a given . - - The to send the Yanked to. - - - - Sets the ArmStiffness setting for this . - stiffness of arms when upright. - - - Default value = 11.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the ArmDamping setting for this . - Sets damping value for the arms when upright. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the SpineDamping setting for this . - Spine Damping when upright. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the SpineStiffness setting for this . - Spine Stiffness when upright... - - - Default value = 10.0f. - Min value = 6.0f. - Max value = 16.0f. - - - - - Sets the ArmStiffnessStart setting for this . - armStiffness during the yanked timescale ie timeAtStartValues. - - - Default value = 3.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the ArmDampingStart setting for this . - armDamping during the yanked timescale ie timeAtStartValues. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the SpineDampingStart setting for this . - spineDamping during the yanked timescale ie timeAtStartValues. - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the SpineStiffnessStart setting for this . - spineStiffness during the yanked timescale ie timeAtStartValues. - - - Default value = 3.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the TimeAtStartValues setting for this . - time spent with Start values for arms and spine stiffness and damping ie for whiplash efffect. - - - Default value = 0.4f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the RampTimeFromStartValues setting for this . - time spent ramping from Start to end values for arms and spine stiffness and damping ie for whiplash efffect (occurs after timeAtStartValues). - - - Default value = 0.1f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the StepsTillStartEnd setting for this . - steps taken before lowerBodyStiffness starts ramping down. - - - Default value = 2. - Min value = 0. - Max value = 100. - - - - - Sets the TimeStartEnd setting for this . - time from start of behaviour before lowerBodyStiffness starts ramping down by perStepReduction1. - - - Default value = 100.0f. - Min value = 0.0f. - Max value = 100.0f. - - - - - Sets the RampTimeToEndValues setting for this . - time spent ramping from lowerBodyStiffness to lowerBodyStiffnessEnd. - - - Default value = 0.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the LowerBodyStiffness setting for this . - lowerBodyStiffness should be 12. - - - Default value = 12.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the LowerBodyStiffnessEnd setting for this . - lowerBodyStiffness at end. - - - Default value = 8.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the PerStepReduction setting for this . - LowerBody stiffness will be reduced every step to make the character fallover. - - - Default value = 1.5f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the HipPitchForward setting for this . - Amount to bend forward at the hips (+ve forward, -ve backwards). Behaviour switches between hipPitchForward and hipPitchBack. - - - Default value = 0.6f. - Min value = -1.3f. - Max value = 1.3f. - - - - - Sets the HipPitchBack setting for this . - Amount to bend backwards at the hips (+ve backwards, -ve forwards). Behaviour switches between hipPitchForward and hipPitchBack. - - - Default value = 1.0f. - Min value = -1.3f. - Max value = 1.3f. - - - - - Sets the SpineBend setting for this . - Bend/Twist the spine amount. - - - Default value = 0.7f. - Min value = 0.0f. - Max value = 1.0f. - - - - - Sets the FootFriction setting for this . - Foot friction when standing/stepping. 0.5 gives a good slide sometimes. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Sets the TurnThresholdMin setting for this . - min angle at which the turn with toggle to the other direction (actual toggle angle is chosen randomly in range min to max). If it is 1 then it will never toggle. If negative then no turn is applied. - - - Default value = 0.6f. - Min value = -0.1f. - Max value = 1.0f. - - - - - Sets the TurnThresholdMax setting for this . - max angle at which the turn with toggle to the other direction (actual toggle angle is chosen randomly in range min to max). If it is 1 then it will never toggle. If negative then no turn is applied. - - - Default value = 0.6f. - Min value = -0.1f. - Max value = 1.0f. - - - - - Sets the UseHeadLook setting for this . - enable and provide a look-at target to make the character's head turn to face it while balancing. - - - Default value = False. - - - - - Sets the HeadLookPos setting for this . - position of thing to look at. - - - Default value = Vector3(0.0f, 0.0f, 0.0f). - - - - - Sets the HeadLookInstanceIndex setting for this . - level index of thing to look at. - - - Default value = -1. - Min value = -1. - - - - - Sets the HeadLookAtVelProb setting for this . - Probability [0-1] that headLook will be looking in the direction of velocity when stepping. - - - Default value = -1.0f. - Min value = -1.0f. - Max value = 1.0f. - - - - - Sets the ComVelRDSThresh setting for this . - for handsAndKnees catchfall ONLY: comVel above which rollDownstairs will start. - - - Default value = 2.0f. - Min value = 0.0f. - Max value = 20.0f. - - - - - Sets the HulaPeriod setting for this . - 0.25 A complete wiggle will take 4*hulaPeriod. - - - Default value = 0.3f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the HipAmplitude setting for this . - Amount of hip movement. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the SpineAmplitude setting for this . - Amount of spine movement. - - - Default value = 1.0f. - Min value = 0.0f. - Max value = 4.0f. - - - - - Sets the MinRelaxPeriod setting for this . - wriggle relaxes for a minimum of minRelaxPeriod (if it is negative it is a multiplier on the time previously spent wriggling). - - - Default value = 0.3f. - Min value = -5.0f. - Max value = 5.0f. - - - - - Sets the MaxRelaxPeriod setting for this . - wriggle relaxes for a maximum of maxRelaxPeriod (if it is negative it is a multiplier on the time previously spent wriggling). - - - Default value = 1.5f. - Min value = -5.0f. - Max value = 5.0f. - - - - - Sets the RollHelp setting for this . - Amount of cheat torque applied to turn the character over. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the GroundLegStiffness setting for this . - Leg Stiffness when on the ground. - - - Default value = 11.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the GroundArmStiffness setting for this . - Arm Stiffness when on the ground. - - - Default value = 11.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the GroundSpineStiffness setting for this . - Spine Stiffness when on the ground. - - - Default value = 14.0f. - Min value = 0.0f. - Max value = 16.0f. - - - - - Sets the GroundLegDamping setting for this . - Leg Damping when on the ground. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the GroundArmDamping setting for this . - Arm Damping when on the ground. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the GroundSpineDamping setting for this . - Spine Damping when on the ground. - - - Default value = 0.5f. - Min value = 0.0f. - Max value = 2.0f. - - - - - Sets the GroundFriction setting for this . - Friction multiplier on bodyParts when on ground. Character can look too slidy with groundFriction = 1. Higher values give a more jerky reation but this seems timestep dependent especially for dragged by the feet. - - - Default value = 8.0f. - Min value = 0.0f. - Max value = 10.0f. - - - - - Gets the current GameVersion. - - - - - Gets the game Language. - - - - - Gets how many milliseconds the game has been open in this session - - - - - Sets the time scale of the Game. - - - The Time Scale, only accepts values in range 0.0f to 1.0f - - - - - Gets the total number of frames that's been rendered in this session. - - - - - Gets the current frame rate per second. - - - - - Gets the time it currently takes to render a frame, in seconds. - - - - - Gets or sets the maximum wanted level a can receive. - - - The maximum wanted level, only accepts values 0 to 5 - - - - - Sets the wanted level multiplier - - - The multiplier to apply to a players wanted level - - - - - Sets a value indicating whether Police s should be visible on the Minimap - - - - - Gets or sets the radio station. - - - - - Gets the that you are controling - - - - - Gets the that you are controling - - - - - Gets or sets a value indicating whether to render the world with a night vision filter - - - - - Gets or sets a value indicating whether to render the world with a thermal vision filter - - - - - Gets or sets a value informing the Game Engine if a mission is in progress - - - if true a mission is currently active; otherwise, false - - - - - Gets or sets a value informing the Game Engine if a random event is in progress. - - - if true a random event is currently active; otherwise, false - - - - - Gets or a value indicating whether the cutscene is active. - - - if true a cutscene is currently active; otherwise, false - - - - - Gets a value indicating whether there is a Waypoint set - - - - - Gets or sets a value indicating whether the game is paused - - - - - Gets a value indicating whether there is a loading screen being displayed - - - - - Gets whether the last input was made with a GamePad or Keyboard and Mouse - - - - - Gets whether a was entered. - - The to check against. - true if the was just entered; otherwise, false - - Only works for Gamepad inputs - Cheat combinations use the same system - - - - - Gets whether a cheat code was entered into the cheat text box - - The name of the cheat to check. - true if the cheat was just entered; otherwise, false - - - - Gets whether a is currently pressed - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - true if the is pressed; otherwise, false - - - - Gets whether a was just pressed this frame - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - true if the was just pressed this frame; otherwise, false - - - - Gets whether a was just released this frame - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - true if the was just released this frame; otherwise, false - - - - Gets whether a is Enabled this frame and is currently pressed - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - true if the is pressed; otherwise, false - - - - Gets whether a is Enabled and was just pressed this frame - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - true if the was just pressed this frame; otherwise, false - - - - Gets whether a is Enabled and was just released this frame - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - true if the was just released this frame; otherwise, false - - - - Gets whether a is Disabled this frame and is currently pressed - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - true if the is pressed; otherwise, false - - - - Gets whether a is Disabled and was just pressed this frame - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - true if the was just pressed this frame; otherwise, false - - - - Gets whether a is Disabled and was just released this frame - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - true if the was just released this frame; otherwise, false - - - - Gets whether a is Enabled ot Disabled this frame - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - true if the is Enabled; otherwise, false - - - - Makes the Game Engine respond to the given Control this frame - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - - - - Makes the Game Engine ignore to the given Control this frame - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - - - - Disables all s this frame. - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - - - - Enables all s this frame. - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - - - - Gets an Analog value of a input between -1.0f and 1.0f - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - The normalised value - - - - Gets an Analog value of a Disabled input between -1.0f and 1.0f - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - The normalised value - - - - Gets an value of a input. - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - The value - - - - Override a by giving it a user defined value this frame. - - The Input Method (0 = Mouse and Keyboard, 2 = GamePad). - The . - the value to set the control to. - - - - Pauses or Resumes the game - - if set to true Pause the game; otherwise, resume the game. - - - - Pauses or Resumes the game clock - - if set to true Pause the game clock; otherwise, resume the game clock. - - - - Performs and automative game save - - - - - Shows the save menu enabling the user to perform a manual game save. - - - - - Determines the game language files contain a entry for the specified GXT key - - The GXT key. - true if GXT entry exists; otherwise, false - - - - Returns a localised from the games language files with a specified GXT key - - The GXT key. - The localised if the key exists; otherwise, - - - - Calculates a Jenkins One At A Time hash from the given which can then be used by any native function that takes a hash - - The input to hash. - The Jenkins hash of the - - - - Plays a sound from the games sound files - - The file the sound is stored in. - The name of the sound inside the file. - - - - Plays music from the games music files - - The music file to play. - - - - Stops playing a music file - - The music file to stop. - - - - Creates an input box for enabling a user to input text using the keyboard - - The maximum length of input allowed. - The of what the user entered, If the user cancelled is returned - - - - Creates an input box for enabling a user to input text using the keyboard - - The default text. - The maximum length of input allowed. - The of what the user entered, If the user cancelled is returned - - - - Creates an input box for enabling a user to input text using the keyboard - - The Title of the Window. - The maximum length of input allowed. - The of what the user entered, If the user cancelled is returned - - - - Creates an input box for enabling a user to input text using the keyboard - - The Title of the Window. - The default text. - The maximum length of input allowed. - The of what the user entered, If the user cancelled is returned - - - - Private unsafe version of - - - - - - - - Returns a struct containing information about a specific tattoo. - Currently only the , - and are known. It's still unkown what the other values are used for or if - they're even correctly offset in the byte array. - - Character types 0 = Michael, 1 = Franklin, 2 = Trevor, 3 = MPMale, 4 = MPFemale - Tattoo index, value between 0 and - - - - - Private (unsafe) version of - - - - - - - - Gets the alternate prop index data for a specific prop on a specific ped. - This is used to check for the 'alternate' version of a helmet with a visor for example (open/closed visor variants). - - - - - - - - Get the hud stats for this weapon. - - - - - - - - Get the hud stats for this weapon component. - - - - - - - - Gets the hash for this . - - - - - Returns true if this is valid. - - - true if this is valid; otherwise, false. - - - - - Gets a value indicating whether this is in the cd image. - - - true if this is in the cd image; otherwise, false. - - - - - Gets a value indicating whether this is loaded so it can be spawned. - - - true if this is loaded; otherwise, false. - - - - - Gets a value indicating whether the collision for this is loaded. - - - true if the collision is loaded; otherwise, false. - - - - - Gets a value indicating whether this is a bicycle. - - - true if this is a bicycle; otherwise, false. - - - - - Gets a value indicating whether this is a motorbike. - - - true if this is a motorbike; otherwise, false. - - - - - Gets a value indicating whether this is a boat. - - - true if this is a boat; otherwise, false. - - - - - Gets a value indicating whether this is a car. - - - true if this is a car; otherwise, false. - - - - - Gets a value indicating whether this is a cargobob. - - - true if this is a cargobob; otherwise, false. - - - - - Gets a value indicating whether this is a helicopter. - - - true if this is a helicopter; otherwise, false. - - - - - Gets a value indicating whether this is a ped. - - - true if this is a ped; otherwise, false. - - - - - Gets a value indicating whether this is a plane. - - - true if this is a plane; otherwise, false. - - - - - Gets a value indicating whether this is a prop. - - - true if this is a prop; otherwise, false. - - - - - Gets a value indicating whether this is a quadbike. - - - true if this is a quadbike; otherwise, false. - - - - - Gets a value indicating whether this is a train. - - - true if this is a train; otherwise, false. - - - - - Gets a value indicating whether this is a vehicle. - - - true if this is a vehicle; otherwise, false. - - - - - Gets the dimensions of this . - - - - - - Gets the dimensions of this . - - The minimum dimensions output . - The maximum dimensions output . - - - - Attempt to load this into memory. - - - - - Attempt to load this into memory for a given period of time. - - The time (in milliseconds) before giving up trying to load this - true if this is loaded; otherwise, false - - - - Frees this from memory. - - - - - This is used to GET the data. The GetData() function returns the data into a usable struct for scripts to use safely. - - - - - A struct containing all ped head blend data. Used for MP (freemode) characters. - - - - - This is used to GET the data. The GetData() function returns the data into a usable struct for scripts to use safely. - - - - - Creates a class used for loading s than can be used to start s from inside the Asset - - The name of the asset file which contains all the s you are wanting to start - The files have the extension *.ypt in OpenIV, use the file name withouth the extension for the - - - - Gets the name of the this file - - - - - Gets a value indicating whether this is Loaded - - Use or to load the asset - - - - Starts a Particle Effect that runs once at a given position then is destroyed. - - The name of the effect. - The World position where the effect is. - What rotation to apply to the effect. - How much to scale the size of the effect by. - Which axis to flip the effect in. - trueIf the effect was able to start; otherwise, false. - - - - Starts a Particle Effect on an that runs once then is destroyed. - - the name of the effect. - The the effect is attached to. - The offset from the to attach the effect. - The rotation, relative to the , the effect has. - How much to scale the size of the effect by. - Which axis to flip the effect in. For a car side exahust you may need to flip in the Y Axis - trueIf the effect was able to start; otherwise, false. - - - - Starts a Particle Effect on an that runs once then is destroyed. - - the name of the effect. - The the effect is attached to. - The offset from the to attach the effect. - The rotation, relative to the , the effect has. - How much to scale the size of the effect by. - Which axis to flip the effect in. For a car side exahust you may need to flip in the Y Axis - trueIf the effect was able to start; otherwise, false. - - - - Creates a on an that runs looped. - - The name of the Effect - The the effect is attached to. - The offset from the to attach the effect. - The rotation, relative to the , the effect has. - How much to scale the size of the effect by. - Which axis to flip the effect in. For a car side exahust you may need to flip in the Y Axis. - if true attempt to start this effect now; otherwise, the effect will start when is called. - The represented by this that can be used to start/stop/modify this effect - - - - Creates a on an that runs looped. - - The name of the Effect - The the effect is attached to. - The offset from the to attach the effect. - The rotation, relative to the , the effect has. - How much to scale the size of the effect by. - Which axis to flip the effect in. For a car side exahust you may need to flip in the Y Axis. - if true attempt to start this effect now; otherwise, the effect will start when is called. - The represented by this that can be used to start/stop/modify this effect - - - - Creates a at a position that runs looped. - - The name of the effect. - The World position where the effect is. - What rotation to apply to the effect. - How much to scale the size of the effect by. - Which axis to flip the effect in. - if true attempt to start this effect now; otherwise, the effect will start when is called. - The represented by this that can be used to start/stop/modify this effect - - - - Sets the for all NonLooped Particle Effects - - - - - Attempts to load this into memory so it can be used for starting s. - - - - - Attempts to load this into memory so it can be used for starting s. - - How long in milli-seconds should the game wait while the model hasnt been loaded before giving up - true if the is Loaded; otherwise, false - - - - Tells the game we have finished using this and it can be freed from memory - - - - - Gets the Handle of this - - - The handle, will return -1 when the this is not active - - - - - Gets a value indicating whether this is active. - - - true if this is active; otherwise, false. - - - - - Deletes this . - - - - - Gets the memory address where this is located in game memory. - - - - - Gets or sets the offset. - If this is attached to an , this refers to the offset from the ; - otherwise, this refers to its position in World coords - - - - - Gets or Sets the rotation of this - - - - - Gets or sets the of this . - - - - - Gets or sets the size scaling factor of this - - - The scale, default = 1.0f; - To Decrease the size use a value less than 1.0f; - To Increase the size use a value greater than 1.0f; - - - - - Gets or sets which axis of this should be inverted. - - - - - Modifys parameters of this . - - Name of the parameter you want to modify, these are stored inside the effect files. - The new value for the parameter. - - - - Gets the name of the asset this effect is stored in. - - - - - Gets the name of this effect. - - - - - Gets or sets the this is attached to. - - - - - Gets or sets the that this is attached to. - - - - - Starts this . - - true if this was sucessfully started; otherwise, false. - - - - Creates a copy of this to another to simplify applying the same effect to many Entities. - - The to copy to. - An that has all the same properties as this instance, but for a different . - - - - Creates a copy of this to another to simplify applying the same effect to many Entities. - - The to copy to. - An that has all the same properties as this instance, but for a different . - - - - Starts this . - - true if this was sucessfully started; otherwise, false. - - - - Creates a copy of this to another position to simplify applying the same effect to many positions. - - The position to copy to. - A that has all the same properties as this instance, but for a different position. - - - - Get the headblend data from this . - - A struct containing all headblend data from a mp ped. - - - - Gets the unsafe headblend struct and converts it into a safe struct and returns that struct. - - A struct. - - - - Gets or sets how much money this is carrying. - - - - - Gets the gender of this . Note this does not seem to work correctly for all peds. - - - - - Gets or sets how much Armor this is wearing. - - if you need to get or set the value strictly, use instead. - - - - Gets or sets how much Armor this is wearing in float. - - - - - Gets or sets how accurate this s shooting ability is. - - - The accuracy from 0 to 100, 0 being very innacurate, 100 being perfectly accurate. - - - - - Opens a list of that this can carry out. - - - - - Gets the stage of the this is currently executing. - - - - - Opens a list of Helpers which can be applied to this . - - - - - Gets a collection of all this s s. - - - - - Opens a list of clothing and prop configurations that this can wear. - - - - - Gets the vehicle weapon this is using. - The vehicle weapon, returns if this isnt using a vehicle weapon. - - - - - Gets the last this used. - - returns null if the last vehicle doesn't exist. - - - - Gets the current this is using. - - returns null if this isn't in a . - - - - Gets the this is trying to enter. - - returns null if this isn't trying to enter a . - - - - Gets the PedGroup this is in. - - - - - Gets or sets the how much sweat should be rendered on this . - - - The sweat from 0 to 100, 0 being no sweat, 100 being saturated. - - - - - Sets how high up on this s body water should be visible. - - - The height ranges from 0.0f to 1.99f, 0.0f being no water visible, 1.99f being covered in water. - - - - - Sets the voice to use when this speaks. - - - - - Sets the rate this will shoot at. - - - The shoot rate from 0.0f to 1000.0f, 100.0f is the default value. - - - - - Gets a value indicating whether this was killed by a stealth attack. - - - true if this was killed by stealth; otherwise, false. - - - - - Gets a value indicating whether this was killed by a takedown. - - - true if this was killed by a takedown; otherwise, false. - - - - - Gets the this is in. - - - The this is in if this is in a ; otherwise, . - - - - - Gets a value indicating whether this is jumping out of their vehicle. - - - true if this is jumping out of their vehicle; otherwise, false. - - - - - Sets a value indicating whether this will stay in the vehicle when the driver gets jacked. - - - true if stays in vehicle when jacked; otherwise, false. - - - - - Sets the maximum driving speed this can drive at. - - - - - Gets or sets the injury health threshold for this . - The ped is considered injured when its health drops below this value. - - - The injury health threshold. Should be below . - - - - - Gets or sets the fatal injury health threshold for this . - The ped is considered dead when its health drops below this value. - - - The fatal injury health threshold. Should be below . - - - Note on player controlled peds: One of the game scripts will kill the player when their health drops below 100, regardless of this setting. - - - - - Gets a value indicating whether this is human. - - - true if this is human; otherwise, false. - - - - - Sets whether permanent events are blocked for this . - If permanent events are blocked, this will only do as it's told, and won't flee when shot at, etc. - - - true if permanent events are blocked; otherwise, false. - - - - - Determines whether this exists. - - true if this exists; otherwise, false - - - - Determines whether the exists. - - The to check. - true if the exists; otherwise, false - - - - Gets the with the specified bone name. - - Name of the bone. - - - - Gets the at the specified bone index. - - The bone index. - - - - Gets the with the specified boneId. - - The boneId. - - - - Gets the last damaged Bone for this . - - - - - Clears the last damage a bone on this received. - - - - - Gets the this is controling. - - - - - Gets the name of this . - - - - - Gets or sets how much money this has. - Only works if current player is , or - - - - - Gets or sets the wanted level for this . - - - - - Gets or sets the wanted center position for this . - - - The place in world coords where the police think this is. - - - - - Gets or sets the maximum amount of armor this can carry. - - - - - Gets or sets the primary parachute tint for this . - - - - - Gets or sets the reserve parachute tint for this . - - - - - Sets a value indicating whether this can leave a parachute smoke trail. - - - true if this can leave a parachute smoke trail; otherwise, false. - - - - - Gets or sets the color of the parachute smoke trail for this . - - - The color of the parachute smoke trail for this . - - - - - Gets a value indicating whether this is alive. - - - true if this is alive; otherwise, false. - - - - - Gets a value indicating whether this is dead. - - - true if this is dead; otherwise, false. - - - - - Gets a value indicating whether this is aiming. - - - true if this is aiming; otherwise, false. - - - - - Gets a value indicating whether this is climbing. - - - true if this is climbing; otherwise, false. - - - - - Gets a value indicating whether this is riding a train. - - - true if this is riding a train; otherwise, false. - - - - - Gets a value indicating whether this is pressing a horn. - - - true if this is pressing a horn; otherwise, false. - - - - - Gets a value indicating whether this is playing. - - - true if this is playing; otherwise, false. - - - - - Gets or sets a value indicating whether this is invincible. - - - true if this is invincible; otherwise, false. - - - - - Sets a value indicating whether this is ignored by the police. - - - true if this is ignored by the police; otherwise, false. - - - - - Sets a value indicating whether this is ignored by everyone. - - - true if this is ignored by everyone; otherwise, false. - - - - - Sets a value indicating whether cops will be dispatched for this - - - true if cops will be dispatched; otherwise, false. - - - - - Sets a value indicating whether this can use cover. - - - true if this can use cover; otherwise, false. - - - - - Gets a value indicating whether this can start a mission. - - - true if this can start a mission; otherwise, false. - - - - - Sets a value indicating whether this can control ragdoll. - - - true if this can control ragdoll; otherwise, false. - - - - - Gets or sets a value indicating whether this can control its . - - - true if this can control its ; otherwise, false. - - - - - Attempts to change the of this . - - The to change this to. - true if the change was sucessful; otherwise, false. - - - - Gets how long this can remain sprinting for. - - - - - Gets how much sprint stamina this currently has. - - - - - Gets how long this can stay underwater before they start losing health. - - - - - Gets a value indicating whether this is using their special ability. - - - true if this is using their special ability; otherwise, false. - - - - - Gets or sets a value indicating whether this can use their special ability. - - - true if this can use their special ability; otherwise, false. - - - - - Charges the special ability for this . - - The absolute amount. - - - - Charges the special ability for this . - - The amount between 0.0f and 1.0f - - - - Refills the special ability for this . - - - - - Depletes the special ability for this . - - - - - Gets the last this used. - - returns null if the last vehicle doesn't exist. - - - - Determines whether this is targetting the specified . - - The to check. - - true if this is targetting the specified ; otherwise, false. - - - - - Gets a value indicating whether this is targetting anything. - - - true if this is targetting anything; otherwise, false. - - - - - Gets the this is targetting. - - The if this is targetting any ; otherwise, null - - - - Sets a value indicating whether ths player is forced to aim. - - - true to make the player always be aiming; otherwise, false. - - - - - Prevents this firing this frame. - - - - - Sets the run speed mult for this this this frame. (THIS NAME IS WRONG, SHOULD NOT BE CALLED EVERY FRAME). - - The factor - min: 0.0f, default: 1.0f, max: 1.499f. - - - - Sets the swim speed mult for this this this frame. (THIS NAME IS WRONG, SHOULD NOT BE CALLED EVERY FRAME). - - The factor - min: 0.0f, default: 1.0f, max: 1.499f. - - - - Makes this shoot fire bullets this frame. - - - - - Makes this shoot explosive bullets this frame. - - - - - Makes this have an explosive melee attack this frame. - - - - - Lets this jump really high this frame. - - - - - Blocks this from entering any this frame. - - - - - Only lets this enter a specific this frame. - - The this is allowed to enter. - - - - Determines whether this exists. - - true if this exists; otherwise, false - - - - Determines whether the exists. - - The to check. - true if the exists; otherwise, false - - - - Gets the this raycast collided with. - Returns null if the raycast didnt collide with any . - - - - - Gets the world coordinates where this raycast collided. - Returns if the raycast didnt collide with anything. - - - - - Gets the normal of the surface where this raycast collided. - Returns if the raycast didnt collide with anything. - - - - - Gets a value indicating whether this raycast collided with anything. - - - - - Gets a value indicating whether this raycast collided with any . - - - - - Gets a value indicating the material type of the collision. - - - - - Looks at the specified . - - - Must be greater than 0 for the ped to actually move their head. - - - - Looks at the specified position. - - - Must be greater than 0 for the ped to actually move their head. - - - - Gets the display name of this . - Use to get the localized name. - - - - - Gets the localized name of this - - - - - Gets the display name of this s . - Use to get the localized class name. - - - - - Gets the localized name of this s . - - - - - Gets the class of this . - - - - - Gets or sets this s body health. - - - - - Gets or sets this engine health. - - - - - Gets or sets this petrol tank health. - - - - - Gets or sets this fuel level. - - - - - Gets or sets a value indicating whether this s engine is running. - - - true if this s engine is running; otherwise, false. - - - - - Gets or sets a value indicating whether this s engine is currently starting. - - - true if this s engine is starting; otherwise, false. - - - - - Turns this s radio on or off - - - - - Sets this s radio station. - - - - - Gets or sets this s speed. - - - The speed in m/s. - - - - - Gets the speed the drive wheels are turning at, This is the value used for the dashboard speedometers(after being converted to mph). - - - - - Gets the acceleration of this . - - - - - Gets or sets the current RPM of this . - - - The current RPM between 0.0f and 1.0f. - - - - - Gets the current gear this is using. - - - - - Gets the steering angle of this . - - - The steering angle in degrees. - - - - - Gets or sets the steering scale of this . - - - - - Gets a value indicating whether this has forks. - - - true if this has forks; otherwise, false. - - - - - Sets a value indicating whether this has an alarm set. - - - true if this has an alarm set; otherwise, false. - - - - - Gets a value indicating whether this is sounding its alarm. - - - true if this is sounding its alarm; otherwise, false. - - - - - Gets or sets time left before this alarm stops. - If greater than zero, the vehicle alarm will be sounding. - the value is up to 65534. - - - The time left before this alarm stops. - - - - - Starts sounding the alarm on this . - - - - - Gets a value indicating whether this has a siren. - - - true if this has a siren; otherwise, false. - - - - - Gets or sets a value indicating whether this has its siren turned on. - - - true if this has its siren turned on; otherwise, false. - - - - - Sets a value indicating whether the siren on this plays sounds. - - - true if the siren on this plays sounds; otherwise, false. - - - - - Sounds the horn on this . - - The duration to sound the horn for. - - - - Gets or sets a value indicating whether this is wanted by the police. - - - true if this is wanted by the police; otherwise, false. - - - - - Gets or sets a value indicating whether peds can use this for cover. - - - true if peds can use this for cover; otherwise, false. - - - - - Gets or sets a value indicating whether this drops money when destroyed. - - - true if this drops money when destroyed; otherwise, false. - - - - - Gets or sets a value indicating whether this was previously owned by a . - - - true if this was previously owned by a ; otherwise, false. - - - - - Gets or sets a value indicating whether this needs to be hotwired to start. - - - true if this needs to be hotwired to start; otherwise, false. - - - - - Gets or sets a value indicating whether this has its lights on. - - - true if this has its lights on; otherwise, false. - - - - - Gets or sets a value indicating whether this has its high beams on. - - - true if this has its high beams on; otherwise, false. - - - - - Gets or sets a value indicating whether this has its interior lights on. - - - true if this has its interior lights on; otherwise, false. - - - - - Gets or sets a value indicating whether this has its search light on. - - - true if this has its search light on; otherwise, false. - - - - - Gets or sets a value indicating whether this has its taxi light on. - - - true if this has its taxi light on; otherwise, false. - - - - - Gets or sets a value indicating whether this has its left indicator light on. - - - true if this has its left indicator light on; otherwise, false. - - - - - Gets or sets a value indicating whether this has its right indicator light on. - - - true if this has its right indicator light on; otherwise, false. - - - - - Sets a value indicating whether the Handbrake on this is forced on. - - - true if the Handbrake on this is forced on; otherwise, false. - - - - - Gets or sets a value indicating whether this has its brake light on. - - - true if this has its brake light on; otherwise, false. - - - - - Gets whether or not the engine is on fire and losing health rapdily. - - - - - Determines whether this exists. - - true if this exists; otherwise, false - - - - Determines whether the exists. - - The to check. - true if the exists; otherwise, false - - - - Gets the data from this . - - - - - Gets the data from this . - - - - - Gets or sets the current date and time in the GTA World. - - - The current date and time. - - - - - Gets or sets the current time of day in the GTA World. - - - The current time of day - - - - - Sets a value indicating whether lights in the should be rendered. - - - true if blackout; otherwise, false. - - - - - Gets or sets the current Cloud Hat. - - - - - Gets or sets the current Cloud Hat opacity. On a scale of 0.0 to 1.0. - - - - - Gets or sets the weather. - - - The weather. - - - - - Gets or sets the next weather. - - - The next weather. - - - - - Gets or sets the weather transition. - - - The weather transition. - - - - - Transitions to weather. Duration is 45f in most scripts. - - The weather. - The duration. - - - - Sets the gravity level for all objects. - - - The gravity level: - 9.8f - Default gravity. - 2.4f - Moon gravity. - 0.1f - Very low gravity. - 0.0f - No gravity. - - - - - Gets or sets the rendering camera. - - - The rendering . - - - Setting to null sets the rendering to . - - - - - Destroys all user created s. - - - - - Gets or sets the waypoint position. - - The coordinates of the Waypoint - - Returns an empty if a waypoint hasn't been set - If the game engine cant extract height information the Z component will be 0.0f - - - - - Gets the waypoint blip. - - The coordinates of the Waypoint - - Returns null if a waypoint hasn't been set - - - - - Removes the waypoint. - - - - - Gets the straight line distance between 2 positions. - - The origin. - The destination. - The distance - - - - Calculates the travel distance using roads and paths between 2 positions. - - The origin. - The destination. - The travel distance - - - - Gets the height of the ground at a given position. - - The position. - The height measured in meters - - - - Gets the height of the ground at a given position. - - The position. - The height measured in meters - - - - Gets an array of all the s on the map with a given . - - The blip types to include, leave blank to get all s. - - - - Gets an array of all the s on the map. - - - - - Gets an array of all the s on the map. - - - - - Gets an array of all the s on the map. - - - - - Gets an array of all the s on the map. - - - - - Gets the closest to a given position in the World. - - - The position to check against. - The spatials to check. - The closest to the - - - - Gets the closest to a given position in the World ignoring height. - - - The position to check against. - The spatials to check. - The closest to the - - - - Gets the nearest safe coordinate to position a . - - The position to check around. - if set to true Only find positions on the sidewalk. - The flags. - - - - Gets the next position on the street where a can be placed. - - The position to check around. - if set to true only find positions that dont already have a vehicle in them. - - - - Gets the next position on the street where a can be placed. - - The position to check around. - if set to true only find positions that dont already have a vehicle in them. - - - - Gets the next position on the street where a can be placed. - - The position to check around. - - - - Gets the next position on the street where a can be placed. - - The position to check around. - - - - Gets the localized name of the a zone in the map. - - The position on the map. - - - - Gets the localized name of the a zone in the map. - - The position on the map. - - - - Gets the display name of the a zone in the map. - Use to convert to the localized name. - - The position on the map. - - - - Gets the display name of the a zone in the map. - Use to convert to the localized name. - - The position on the map. - - - - Creates a at the given position on the map. - - The position of the blip on the map. - - - - Creates a for a circular area at the given position on the map. - - The position of the blip on the map. - The radius of the area on the map. - - - - Creates a , use to switch to this camera - - The position of the camera. - The rotation of the camera. - The field of view of the camera. - - - - Spawns a of the given at the position and heading specified. - - The of the . - The position to spawn the at. - The heading of the . - returns null if the could not be spawned - - - - Spawns a of a random at the position specified. - - The position to spawn the at. - - - - Spawns a of the given at the position and heading specified. - - The of the . - The position to spawn the at. - The heading of the . - returns null if the could not be spawned - - - - Spawns a of a random at the position specified. - - The position to spawn the at. - The heading of the . - returns null if the could not be spawned - - - - Spawns a of the given at the position specified. - - The of the . - The position to spawn the at. - if set to true the will have physics; otherwise, it will be static. - if set to true place the prop on the ground nearest to the . - returns null if the could not be spawned - - - - Spawns a of the given at the position specified. - - The of the . - The position to spawn the at. - The rotation of the . - if set to true the will have physics; otherwise, it will be static. - if set to true place the prop on the ground nearest to the . - returns null if the could not be spawned - - - - Spawns a of the given at the position specified without any offset. - - The of the . - The position to spawn the at. - if set to true the will have physics; otherwise, it will be static. - returns null if the could not be spawned - - - - Spawns a of the given at the position specified without any offset. - - The of the . - The position to spawn the at. - The rotation of the . - if set to true the will have physics; otherwise, it will be static. - returns null if the could not be spawned - - - - Creates a in the world. - - The to display inside the . - The position in the World. - The position in the world where this should point. - The radius of the . - The color of the . - returns null if the could not be created - - - - Creates a in the world. - - The to display inside the . - The position in the World. - The position in the world where this should point. - The radius of the . - The color of the . - returns null if the could not be created - - - - Spawns a . - - The type of . - The position of the . - The rotation of the . - The length of the . - The minimum length of the . - if set to true the will break if shot. - - - - Fires a single bullet in the world - - Where the bullet is fired from. - Where the bullet is fired to. - The who fired the bullet, leave null for no one. - The weapon that the bullet is fired from. - The damage the bullet will cause. - The speed, only affects projectile weapons, leave -1 for default. - - - - Creates an explosion in the world - - The position of the explosion. - The type of explosion. - The radius of the explosion. - The amount of camera shake to apply to nearby cameras. - The who caused the explosion, leave null if no one caused the explosion. - if set to true explosion can be heard. - if set to true explosion is invisible. - - - - Creates a with the given name. - - The name of the relationship group. - - - - Creates a raycast between 2 points. - - The source of the raycast. - The target of the raycast. - What type of objects the raycast should intersect with. - Specify an that the raycast should ignore, leave null for no entities ignored. - - - - Creates a raycast between 2 points. - - The source of the raycast. - The direction of the raycast. - How far the raycast should go out to. - What type of objects the raycast should intersect with. - Specify an that the raycast should ignore, leave null for no entities ignored. - - - - Creates a 3D raycast between 2 points. - - The source of the raycast. - The target of the raycast. - The radius of the raycast. - What type of objects the raycast should intersect with. - Specify an that the raycast should ignore, leave null for no entities ignored. - - - - Creates a 3D raycast between 2 points. - - The source of the raycast. - The direction of the raycast. - The radius of the raycast. - How far the raycast should go out to. - What type of objects the raycast should intersect with. - Specify an that the raycast should ignore, leave null for no entities ignored. - - - - Determines where the crosshair intersects with the world. - - A containing information about where the crosshair intersects with the world. - - - - Determines where the crosshair intersects with the world. - - Prevent the raycast detecting a specific . - A containing information about where the crosshair intersects with the world. - - - - Draws a marker in the world, this needs to be done on a per frame basis - - The type of marker. - The position of the marker. - The direction the marker points in. - The rotation of the marker. - The amount to scale the marker by. - The color of the marker. - if set to true the marker will bob up and down. - if set to true the marker will always face the camera, regardless of its rotation. - if set to true rotates only on the y axis(heading). - Name of texture dictionary to load the texture from, leave null for no texture in the marker. - Name of texture inside the dictionary to load the texture from, leave null for no texture in the marker. - if set to true draw on any that intersects the marker. - - - - Draws light around a region. - - The position to center the light around. - The color of the light. - How far the light should extend to. - The intensity: 0.0f being no intensity, 1.0f being full intensity. - - - - Stops all particle effects in a range. - - The position in the world to stop particle effects. - The maximum distance from the to stop particle effects. - - - - Provides fast reading and writing of generic structures to a memory location using IL emitted functions. - - - - - Retrieve a pointer to the passed generic structure type. This is achieved by emitting a to retrieve a pointer to the structure. - - - - A pointer to the provided structure in memory. - - - - - Loads the generic value type from a pointer. This is achieved by emitting a that returns the value in the memory location as a . - The equivalent non-generic C# code: - - unsafe MyStruct ReadFromPointer(byte* pointer) - { - return *(MyStruct*)pointer; - } - - - Any value/structure type - Unsafe pointer to memory to load the value from - The newly loaded value - - - - Writes the generic value type to the location specified by a pointer. This is achieved by emitting a that copies the value from the referenced structure into the specified memory location. - There is no exact equivalent possible in C#, the closest possible (generates the same IL) is the following code: - - unsafe void WriteToPointer(ref SharedHeader dest, ref SharedHeader src) - { - dest = src; - } - - - - - - - - - Retrieve the cached size of a structure - - - - Caches the size by type - - - - - Reads a number of elements from a memory location into the provided buffer starting at the specified index. - - The structure type - The destination buffer. - The source memory location. - The start index within . - The number of elements to read. - - - - Writes a number of elements to a memory location from the provided buffer starting at the specified index. - - The structure type - The destination memory location. - The source buffer. - The start index within . - The number of elements to write. - - - - Emits optimized IL for the reading and writing of structures to/from memory. - For a 32-byte structure with 1 million iterations: - The method performs approx. 20x faster than - (8ms vs 160ms), and about 1.6x slower than the non-generic equivalent (8ms vs 5ms) - The method performs approx. 8x faster than - (4ms vs 34ms). - - - - - - Delegate that returns a pointer to the provided structure. Use with extreme caution. - - - - - - - Delegate for loading a structure from the specified memory address - - - - - - - Delegate for writing a structure to the specified memory address - - - - - - - The delegate for the generated IL to retrieve a pointer to the structure - - - - - The delegate for the generated IL to retrieve a structure from a specified memory address. - - - - - The delegate for the generated IL to store a structure at the specified memory address. - - - - - Cached size of T as determined by . - - - - - Performs once of type compatibility check. - - Thrown if the type T is incompatible - - - - The value for which all absolute numbers smaller than are considered equal to zero. - - - - - A value specifying the approximation of π which is 180 degrees. - - - - - A value specifying the approximation of 2π which is 360 degrees. - - - - - A value specifying the approximation of π/2 which is 90 degrees. - - - - - A value specifying the approximation of π/4 which is 45 degrees. - - - - - Checks if a and b are almost equals, taking into account the magnitude of floating point numbers (unlike method). See Remarks. - See remarks. - - The left value to compare. - The right value to compare. - true if a almost equal to b, false otherwise - - The code is using the technique described by Bruce Dawson in - Comparing Floating point numbers 2012 edition. - - - - - Determines whether the specified value is close to zero (0.0f). - - The floating value. - true if the specified value is close to zero (0.0f); otherwise, false. - - - - Determines whether the specified value is close to one (1.0f). - - The floating value. - true if the specified value is close to one (1.0f); otherwise, false. - - - - Checks if a - b are almost equals within a float epsilon. - - The left value to compare. - The right value to compare. - Epsilon value - true if a almost equal to b within a float epsilon, false otherwise - - - - Converts revolutions to degrees. - - The value to convert. - The converted value. - - - - Converts revolutions to radians. - - The value to convert. - The converted value. - - - - Converts revolutions to gradians. - - The value to convert. - The converted value. - - - - Converts degrees to revolutions. - - The value to convert. - The converted value. - - - - Converts degrees to radians. - - The value to convert. - The converted value. - - - - Converts radians to revolutions. - - The value to convert. - The converted value. - - - - Converts radians to gradians. - - The value to convert. - The converted value. - - - - Converts gradians to revolutions. - - The value to convert. - The converted value. - - - - Converts gradians to degrees. - - The value to convert. - The converted value. - - - - Converts gradians to radians. - - The value to convert. - The converted value. - - - - Converts radians to degrees. - - The value to convert. - The converted value. - - - - Clamps the specified value. - - The value. - The min. - The max. - The result of clamping a value between min and max - - - - Clamps the specified value. - - The value. - The min. - The max. - The result of clamping a value between min and max - - - - Interpolates between two values using a linear function by a given amount. - - - See http://www.encyclopediaofmath.org/index.php/Linear_interpolation and - http://fgiesen.wordpress.com/2012/08/15/linear-interpolation-past-present-and-future/ - - Value to interpolate from. - Value to interpolate to. - Interpolation amount. - The result of linear interpolation of values based on the amount. - - - - Interpolates between two values using a linear function by a given amount. - - - See http://www.encyclopediaofmath.org/index.php/Linear_interpolation and - http://fgiesen.wordpress.com/2012/08/15/linear-interpolation-past-present-and-future/ - - Value to interpolate from. - Value to interpolate to. - Interpolation amount. - The result of linear interpolation of values based on the amount. - - - - Interpolates between two values using a linear function by a given amount. - - - See http://www.encyclopediaofmath.org/index.php/Linear_interpolation and - http://fgiesen.wordpress.com/2012/08/15/linear-interpolation-past-present-and-future/ - - Value to interpolate from. - Value to interpolate to. - Interpolation amount. - The result of linear interpolation of values based on the amount. - - - - Performs smooth (cubic Hermite) interpolation between 0 and 1. - - - See https://en.wikipedia.org/wiki/Smoothstep - - Value between 0 and 1 indicating interpolation amount. - - - - Performs a smooth(er) interpolation between 0 and 1 with 1st and 2nd order derivatives of zero at endpoints. - - - See https://en.wikipedia.org/wiki/Smoothstep - - Value between 0 and 1 indicating interpolation amount. - - - - Calculates the modulo of the specified value. - - The value. - The modulo. - The result of the modulo applied to value - - - - Calculates the modulo 2*PI of the specified value. - - The value. - The result of the modulo applied to value - - - - Wraps the specified value into a range [min, max] - - The value to wrap. - The min. - The max. - Result of the wrapping. - Is thrown when is greater than . - - - - Wraps the specified value into a range [min, max[ - - The value. - The min. - The max. - Result of the wrapping. - Is thrown when is greater than . - - - - Gauss function. - - Curve amplitude. - Position X. - Position Y - Radius X. - Radius Y. - Curve sigma X. - Curve sigma Y. - The result of Gaussian function. - - - - Gauss function. - - Curve amplitude. - Position X. - Position Y - Radius X. - Radius Y. - Curve sigma X. - Curve sigma Y. - The result of Gaussian function. - - - - Represents a 4x4 mathematical matrix. - - - - - A with all of its components set to zero. - - - - - The identity . - - - - - Value at row 1 column 1 of the matrix. - - - - - Value at row 1 column 2 of the matrix. - - - - - Value at row 1 column 3 of the matrix. - - - - - Value at row 1 column 4 of the matrix. - - - - - Value at row 2 column 1 of the matrix. - - - - - Value at row 2 column 2 of the matrix. - - - - - Value at row 2 column 3 of the matrix. - - - - - Value at row 2 column 4 of the matrix. - - - - - Value at row 3 column 1 of the matrix. - - - - - Value at row 3 column 2 of the matrix. - - - - - Value at row 3 column 3 of the matrix. - - - - - Value at row 3 column 4 of the matrix. - - - - - Value at row 4 column 1 of the matrix. - - - - - Value at row 4 column 2 of the matrix. - - - - - Value at row 4 column 3 of the matrix. - - - - - Value at row 4 column 4 of the matrix. - - - - - Gets or sets the up of the matrix; that is M21, M22, and M23. - - - - - Gets or sets the down of the matrix; that is -M21, -M22, and -M23. - - - - - Gets or sets the right of the matrix; that is M11, M12, and M13. - - - - - Gets or sets the left of the matrix; that is -M11, -M12, and -M13. - - - - - Gets or sets the forward of the matrix; that is -M31, -M32, and -M33. - - - - - Gets or sets the backward of the matrix; that is M31, M32, and M33. - - - - - Initializes a new instance of the struct. - - The value that will be assigned to all components. - - - - Initializes a new instance of the struct. - - The value to assign at row 1 column 1 of the matrix. - The value to assign at row 1 column 2 of the matrix. - The value to assign at row 1 column 3 of the matrix. - The value to assign at row 1 column 4 of the matrix. - The value to assign at row 2 column 1 of the matrix. - The value to assign at row 2 column 2 of the matrix. - The value to assign at row 2 column 3 of the matrix. - The value to assign at row 2 column 4 of the matrix. - The value to assign at row 3 column 1 of the matrix. - The value to assign at row 3 column 2 of the matrix. - The value to assign at row 3 column 3 of the matrix. - The value to assign at row 3 column 4 of the matrix. - The value to assign at row 4 column 1 of the matrix. - The value to assign at row 4 column 2 of the matrix. - The value to assign at row 4 column 3 of the matrix. - The value to assign at row 4 column 4 of the matrix. - - - - Initializes a new instance of the struct. - - The values to assign to the components of the matrix. This must be an array with sixteen elements. - Thrown when is null. - Thrown when contains more or less than sixteen elements. - - - - Gets or sets the first row in the matrix; that is M11, M12, M13, and M14. - - - - - Gets or sets the second row in the matrix; that is M21, M22, M23, and M24. - - - - - Gets or sets the third row in the matrix; that is M31, M32, M33, and M34. - - - - - Gets or sets the fourth row in the matrix; that is M41, M42, M43, and M44. - - - - - Gets or sets the first column in the matrix; that is M11, M21, M31, and M41. - - - - - Gets or sets the second column in the matrix; that is M12, M22, M32, and M42. - - - - - Gets or sets the third column in the matrix; that is M13, M23, M33, and M43. - - - - - Gets or sets the fourth column in the matrix; that is M14, M24, M34, and M44. - - - - - Gets or sets the translation of the matrix; that is M41, M42, and M43. - - - - - Gets or sets the scale of the matrix; that is M11, M22, and M33. - - - - - Gets a value indicating whether this instance is an identity matrix. - - - true if this instance is an identity matrix; otherwise, false. - - - - - Gets or sets the component at the specified index. - - The value of the matrix component, depending on the index. - The zero-based index of the component to access. - The value of the component at the specified index. - Thrown when the is out of the range [0, 15]. - - - - Gets or sets the component at the specified index. - - The value of the matrix component, depending on the index. - The row of the matrix to access. - The column of the matrix to access. - The value of the component at the specified index. - Thrown when the or is out of the range [0, 3]. - - - - Calculates the determinant of the matrix. - - The determinant of the matrix. - - - - Inverts the matrix. - - - - - Transposes the matrix. - - - - - Orthogonalizes the specified matrix. - - - Orthogonalization is the process of making all rows orthogonal to each other. This - means that any given row in the matrix will be orthogonal to any other given row in the - matrix. - Because this method uses the modified Gram-Schmidt process, the resulting matrix - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the matrix rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthonormalizes the specified matrix. - - - Orthonormalization is the process of making all rows and columns orthogonal to each - other and making all rows and columns of unit length. This means that any given row will - be orthogonal to any other given row and any given column will be orthogonal to any other - given column. Any given row will not be orthogonal to any given column. Every row and every - column will be of unit length. - Because this method uses the modified Gram-Schmidt process, the resulting matrix - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the matrix rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Decomposes a matrix into an orthonormalized matrix Q and a right triangular matrix R. - - When the method completes, contains the orthonormalized matrix of the decomposition. - When the method completes, contains the right triangular matrix of the decomposition. - - - - Decomposes a matrix into a lower triangular matrix L and an orthonormalized matrix Q. - - When the method completes, contains the lower triangular matrix of the decomposition. - When the method completes, contains the orthonormalized matrix of the decomposition. - - - - Decomposes a matrix into a scale, rotation, and translation. - - When the method completes, contains the scaling component of the decomposed matrix. - When the method completes, contains the rotation component of the decomposed matrix. - When the method completes, contains the translation component of the decomposed matrix. - - This method is designed to decompose an SRT transformation matrix only. - - - - - Decomposes a uniform scale matrix into a scale, rotation, and translation. - A uniform scale matrix has the same scale in every axis. - - When the method completes, contains the scaling component of the decomposed matrix. - When the method completes, contains the rotation component of the decomposed matrix. - When the method completes, contains the translation component of the decomposed matrix. - - This method is designed to decompose only an SRT transformation matrix that has the same scale in every axis. - - - - - Exchanges two rows in the matrix. - - The first row to exchange. This is an index of the row starting at zero. - The second row to exchange. This is an index of the row starting at zero. - - - - Exchanges two columns in the matrix. - - The first column to exchange. This is an index of the column starting at zero. - The second column to exchange. This is an index of the column starting at zero. - - - - Creates an array containing the elements of the matrix. - - A sixteen-element array containing the components of the matrix. - - - - Determines the sum of two matrices. - - The first matrix to add. - The second matrix to add. - When the method completes, contains the sum of the two matrices. - - - - Determines the sum of two matrices. - - The first matrix to add. - The second matrix to add. - The sum of the two matrices. - - - - Determines the difference between two matrices. - - The first matrix to subtract. - The second matrix to subtract. - When the method completes, contains the difference between the two matrices. - - - - Determines the difference between two matrices. - - The first matrix to subtract. - The second matrix to subtract. - The difference between the two matrices. - - - - Scales a matrix by the given value. - - The matrix to scale. - The amount by which to scale. - When the method completes, contains the scaled matrix. - - - - Scales a matrix by the given value. - - The matrix to scale. - The amount by which to scale. - The scaled matrix. - - - - Determines the product of two matrices. - - The first matrix to multiply. - The second matrix to multiply. - The product of the two matrices. - - - - Determines the product of two matrices. - - The first matrix to multiply. - The second matrix to multiply. - The product of the two matrices. - - - - Scales a matrix by the given value. - - The matrix to scale. - The amount by which to scale. - When the method completes, contains the scaled matrix. - - - - Scales a matrix by the given value. - - The matrix to scale. - The amount by which to scale. - The scaled matrix. - - - - Determines the quotient of two matrices. - - The first matrix to divide. - The second matrix to divide. - When the method completes, contains the quotient of the two matrices. - - - - Determines the quotient of two matrices. - - The first matrix to divide. - The second matrix to divide. - The quotient of the two matrices. - - - - Performs the exponential operation on a matrix. - - The matrix to perform the operation on. - The exponent to raise the matrix to. - When the method completes, contains the exponential matrix. - Thrown when the is negative. - - - - Performs the exponential operation on a matrix. - - The matrix to perform the operation on. - The exponent to raise the matrix to. - The exponential matrix. - Thrown when the is negative. - - - - Negates a matrix. - - The matrix to be negated. - When the method completes, contains the negated matrix. - - - - Negates a matrix. - - The matrix to be negated. - The negated matrix. - - - - Performs a linear interpolation between two matrices. - - Start matrix. - End matrix. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the linear interpolation of the two matrices. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a linear interpolation between two matrices. - - Start matrix. - End matrix. - Value between 0 and 1 indicating the weight of . - The linear interpolation of the two matrices. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a cubic interpolation between two matrices. - - Start matrix. - End matrix. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the cubic interpolation of the two matrices. - - - - Performs a cubic interpolation between two matrices. - - Start matrix. - End matrix. - Value between 0 and 1 indicating the weight of . - The cubic interpolation of the two matrices. - - - - Calculates the transpose of the specified matrix. - - The matrix whose transpose is to be calculated. - When the method completes, contains the transpose of the specified matrix. - - - - Calculates the transpose of the specified matrix. - - The matrix whose transpose is to be calculated. - When the method completes, contains the transpose of the specified matrix. - - - - Calculates the transpose of the specified matrix. - - The matrix whose transpose is to be calculated. - The transpose of the specified matrix. - - - - Calculates the inverse of the specified matrix. - - The matrix whose inverse is to be calculated. - When the method completes, contains the inverse of the specified matrix. - - - - Calculates the inverse of the specified matrix. - - The matrix whose inverse is to be calculated. - The inverse of the specified matrix. - - - - Orthogonalizes the specified matrix. - - The matrix to orthogonalize. - When the method completes, contains the orthogonalized matrix. - - Orthogonalization is the process of making all rows orthogonal to each other. This - means that any given row in the matrix will be orthogonal to any other given row in the - matrix. - Because this method uses the modified Gram-Schmidt process, the resulting matrix - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the matrix rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthogonalizes the specified matrix. - - The matrix to orthogonalize. - The orthogonalized matrix. - - Orthogonalization is the process of making all rows orthogonal to each other. This - means that any given row in the matrix will be orthogonal to any other given row in the - matrix. - Because this method uses the modified Gram-Schmidt process, the resulting matrix - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the matrix rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthonormalizes the specified matrix. - - The matrix to orthonormalize. - When the method completes, contains the orthonormalized matrix. - - Orthonormalization is the process of making all rows and columns orthogonal to each - other and making all rows and columns of unit length. This means that any given row will - be orthogonal to any other given row and any given column will be orthogonal to any other - given column. Any given row will not be orthogonal to any given column. Every row and every - column will be of unit length. - Because this method uses the modified Gram-Schmidt process, the resulting matrix - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the matrix rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthonormalizes the specified matrix. - - The matrix to orthonormalize. - The orthonormalized matrix. - - Orthonormalization is the process of making all rows and columns orthogonal to each - other and making all rows and columns of unit length. This means that any given row will - be orthogonal to any other given row and any given column will be orthogonal to any other - given column. Any given row will not be orthogonal to any given column. Every row and every - column will be of unit length. - Because this method uses the modified Gram-Schmidt process, the resulting matrix - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the matrix rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Brings the matrix into upper triangular form using elementary row operations. - - The matrix to put into upper triangular form. - When the method completes, contains the upper triangular matrix. - - If the matrix is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the matrix represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the matrix into upper triangular form using elementary row operations. - - The matrix to put into upper triangular form. - The upper triangular matrix. - - If the matrix is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the matrix represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the matrix into lower triangular form using elementary row operations. - - The matrix to put into lower triangular form. - When the method completes, contains the lower triangular matrix. - - If the matrix is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the matrix represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the matrix into lower triangular form using elementary row operations. - - The matrix to put into lower triangular form. - The lower triangular matrix. - - If the matrix is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the matrix represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the matrix into row echelon form using elementary row operations; - - The matrix to put into row echelon form. - When the method completes, contains the row echelon form of the matrix. - - - - Brings the matrix into row echelon form using elementary row operations; - - The matrix to put into row echelon form. - When the method completes, contains the row echelon form of the matrix. - - - - Brings the matrix into reduced row echelon form using elementary row operations. - - The matrix to put into reduced row echelon form. - The fifth column of the matrix. - When the method completes, contains the resultant matrix after the operation. - When the method completes, contains the resultant fifth column of the matrix. - - The fifth column is often called the augmented part of the matrix. This is because the fifth - column is really just an extension of the matrix so that there is a place to put all of the - non-zero components after the operation is complete. - Often times the resultant matrix will the identity matrix or a matrix similar to the identity - matrix. Sometimes, however, that is not possible and numbers other than zero and one may appear. - This method can be used to solve systems of linear equations. Upon completion of this method, - the will contain the solution for the system. It is up to the user - to analyze both the input and the result to determine if a solution really exists. - - - - - Creates a left-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - When the method completes, contains the created billboard matrix. - - - - Creates a left-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - The created billboard matrix. - - - - Creates a right-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - When the method completes, contains the created billboard matrix. - - - - Creates a right-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - The created billboard matrix. - - - - Creates a left-handed, look-at matrix. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - When the method completes, contains the created look-at matrix. - - - - Creates a left-handed, look-at matrix. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - The created look-at matrix. - - - - Creates a right-handed, look-at matrix. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - When the method completes, contains the created look-at matrix. - - - - Creates a right-handed, look-at matrix. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - The created look-at matrix. - - - - Creates a left-handed, orthographic projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a left-handed, orthographic projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a right-handed, orthographic projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a right-handed, orthographic projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a left-handed, customized orthographic projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a left-handed, customized orthographic projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a right-handed, customized orthographic projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a right-handed, customized orthographic projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a left-handed, perspective projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a left-handed, perspective projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a right-handed, perspective projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a right-handed, perspective projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a left-handed, perspective projection matrix based on a field of view. - - Field of view in the y direction, in radians. - Aspect ratio, defined as view space width divided by height. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a left-handed, perspective projection matrix based on a field of view. - - Field of view in the y direction, in radians. - Aspect ratio, defined as view space width divided by height. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a right-handed, perspective projection matrix based on a field of view. - - Field of view in the y direction, in radians. - Aspect ratio, defined as view space width divided by height. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a right-handed, perspective projection matrix based on a field of view. - - Field of view in the y direction, in radians. - Aspect ratio, defined as view space width divided by height. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a left-handed, customized perspective projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a left-handed, customized perspective projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a right-handed, customized perspective projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a right-handed, customized perspective projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a matrix that scales along the x-axis, y-axis, and y-axis. - - Scaling factor for all three axes. - When the method completes, contains the created scaling matrix. - - - - Creates a matrix that scales along the x-axis, y-axis, and y-axis. - - Scaling factor for all three axes. - The created scaling matrix. - - - - Creates a matrix that scales along the x-axis, y-axis, and y-axis. - - Scaling factor that is applied along the x-axis. - Scaling factor that is applied along the y-axis. - Scaling factor that is applied along the z-axis. - When the method completes, contains the created scaling matrix. - - - - Creates a matrix that scales along the x-axis, y-axis, and y-axis. - - Scaling factor that is applied along the x-axis. - Scaling factor that is applied along the y-axis. - Scaling factor that is applied along the z-axis. - The created scaling matrix. - - - - Creates a matrix that uniformly scales along all three axis. - - The uniform scale that is applied along all axis. - When the method completes, contains the created scaling matrix. - - - - Creates a matrix that uniformly scales along all three axis. - - The uniform scale that is applied along all axis. - The created scaling matrix. - - - - Creates a matrix that rotates around the x-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation matrix. - - - - Creates a matrix that rotates around the x-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation matrix. - - - - Creates a matrix that rotates around the y-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation matrix. - - - - Creates a matrix that rotates around the y-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation matrix. - - - - Creates a matrix that rotates around the z-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation matrix. - - - - Creates a matrix that rotates around the z-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation matrix. - - - - Creates a matrix that rotates around an arbitrary axis. - - The axis around which to rotate. This parameter is assumed to be normalized. - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation matrix. - - - - Creates a matrix that rotates around an arbitrary axis. - - The axis around which to rotate. This parameter is assumed to be normalized. - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation matrix. - - - - Creates a rotation matrix from a quaternion. - - The quaternion to use to build the matrix. - The created rotation matrix. - - - - Creates a rotation matrix from a quaternion. - - The quaternion to use to build the matrix. - The created rotation matrix. - - - - Creates a rotation matrix with a specified yaw, pitch, and roll. - - Yaw around the y-axis, in radians. - Pitch around the x-axis, in radians. - Roll around the z-axis, in radians. - When the method completes, contains the created rotation matrix. - - - - Creates a rotation matrix with a specified yaw, pitch, and roll. - - Yaw around the y-axis, in radians. - Pitch around the x-axis, in radians. - Roll around the z-axis, in radians. - The created rotation matrix. - - - - Creates a translation matrix using the specified offsets. - - The offset for all three coordinate planes. - When the method completes, contains the created translation matrix. - - - - Creates a translation matrix using the specified offsets. - - The offset for all three coordinate planes. - The created translation matrix. - - - - Creates a translation matrix using the specified offsets. - - X-coordinate offset. - Y-coordinate offset. - Z-coordinate offset. - When the method completes, contains the created translation matrix. - - - - Creates a translation matrix using the specified offsets. - - X-coordinate offset. - Y-coordinate offset. - Z-coordinate offset. - The created translation matrix. - - - - Creates a skew/shear matrix by means of a translation vector, a rotation vector, and a rotation angle. - shearing is performed in the direction of translation vector, where translation vector and rotation vector define the shearing plane. - The effect is such that the skewed rotation vector has the specified angle with rotation itself. - - The rotation angle. - The rotation vector - The translation vector - Contains the created skew/shear matrix. - - - - Creates a 3D affine transformation matrix. - - Scaling factor. - The rotation of the transformation. - The translation factor of the transformation. - When the method completes, contains the created affine transformation matrix. - - - - Creates a 3D affine transformation matrix. - - Scaling factor. - The rotation of the transformation. - The translation factor of the transformation. - The created affine transformation matrix. - - - - Creates a 3D affine transformation matrix. - - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - When the method completes, contains the created affine transformation matrix. - - - - Creates a 3D affine transformation matrix. - - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - The created affine transformation matrix. - - - - Creates a 2D affine transformation matrix. - - Scaling factor. - The rotation of the transformation. - The translation factor of the transformation. - When the method completes, contains the created affine transformation matrix. - - - - Creates a 2D affine transformation matrix. - - Scaling factor. - The rotation of the transformation. - The translation factor of the transformation. - The created affine transformation matrix. - - - - Creates a 2D affine transformation matrix. - - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - When the method completes, contains the created affine transformation matrix. - - - - Creates a 2D affine transformation matrix. - - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - The created affine transformation matrix. - - - - Creates a transformation matrix. - - Center point of the scaling operation. - Scaling rotation amount. - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - When the method completes, contains the created transformation matrix. - - - - Creates a transformation matrix. - - Center point of the scaling operation. - Scaling rotation amount. - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - The created transformation matrix. - - - - Creates a 2D transformation matrix. - - Center point of the scaling operation. - Scaling rotation amount. - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - When the method completes, contains the created transformation matrix. - - - - Creates a 2D transformation matrix. - - Center point of the scaling operation. - Scaling rotation amount. - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - The created transformation matrix. - - - - Adds two matrices. - - The first matrix to add. - The second matrix to add. - The sum of the two matrices. - - - - Assert a matrix (return it unchanged). - - The matrix to assert (unchanged). - The asserted (unchanged) matrix. - - - - Subtracts two matrices. - - The first matrix to subtract. - The second matrix to subtract. - The difference between the two matrices. - - - - Negates a matrix. - - The matrix to negate. - The negated matrix. - - - - Scales a matrix by a given value. - - The matrix to scale. - The amount by which to scale. - The scaled matrix. - - - - Scales a matrix by a given value. - - The matrix to scale. - The amount by which to scale. - The scaled matrix. - - - - Multiplies two matrices. - - The first matrix to multiply. - The second matrix to multiply. - The product of the two matrices. - - - - Scales a matrix by a given value. - - The matrix to scale. - The amount by which to scale. - The scaled matrix. - - - - Divides two matrices. - - The first matrix to divide. - The second matrix to divide. - The quotient of the two matrices. - - - - Tests for equality between two objects. - - The first value to compare. - The second value to compare. - true if has the same value as ; otherwise, false. - - - - Tests for inequality between two objects. - - The first value to compare. - The second value to compare. - true if has a different value than ; otherwise, false. - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Represents a 3x3 Matrix ( contains only Scale and Rotation ). - - - - - A with all of its components set to zero. - - - - - The identity . - - - - - Value at row 1 column 1 of the Matrix3x3. - - - - - Value at row 1 column 2 of the Matrix3x3. - - - - - Value at row 1 column 3 of the Matrix3x3. - - - - - Value at row 2 column 1 of the Matrix3x3. - - - - - Value at row 2 column 2 of the Matrix3x3. - - - - - Value at row 2 column 3 of the Matrix3x3. - - - - - Value at row 3 column 1 of the Matrix3x3. - - - - - Value at row 3 column 2 of the Matrix3x3. - - - - - Value at row 3 column 3 of the Matrix3x3. - - - - - Initializes a new instance of the struct. - - The value that will be assigned to all components. - - - - Initializes a new instance of the struct. - - The value to assign at row 1 column 1 of the Matrix3x3. - The value to assign at row 1 column 2 of the Matrix3x3. - The value to assign at row 1 column 3 of the Matrix3x3. - The value to assign at row 2 column 1 of the Matrix3x3. - The value to assign at row 2 column 2 of the Matrix3x3. - The value to assign at row 2 column 3 of the Matrix3x3. - The value to assign at row 3 column 1 of the Matrix3x3. - The value to assign at row 3 column 2 of the Matrix3x3. - The value to assign at row 3 column 3 of the Matrix3x3. - - - - Initializes a new instance of the struct. - - The values to assign to the components of the Matrix3x3. This must be an array with sixteen elements. - Thrown when is null. - Thrown when contains more or less than sixteen elements. - - - - Gets or sets the first row in the Matrix3x3; that is M11, M12, M13 - - - - - Gets or sets the second row in the Matrix3x3; that is M21, M22, M23 - - - - - Gets or sets the third row in the Matrix3x3; that is M31, M32, M33 - - - - - Gets or sets the first column in the Matrix3x3; that is M11, M21, M31 - - - - - Gets or sets the second column in the Matrix3x3; that is M12, M22, M32 - - - - - Gets or sets the third column in the Matrix3x3; that is M13, M23, M33 - - - - - Gets or sets the scale of the Matrix3x3; that is M11, M22, and M33. - - - - - Gets a value indicating whether this instance is an identity Matrix3x3. - - - true if this instance is an identity Matrix3x3; otherwise, false. - - - - - Gets or sets the component at the specified index. - - The value of the Matrix3x3 component, depending on the index. - The zero-based index of the component to access. - The value of the component at the specified index. - Thrown when the is out of the range [0, 15]. - - - - Gets or sets the component at the specified index. - - The value of the Matrix3x3 component, depending on the index. - The row of the Matrix3x3 to access. - The column of the Matrix3x3 to access. - The value of the component at the specified index. - Thrown when the or is out of the range [0, 3]. - - - - Calculates the determinant of the Matrix3x3. - - The determinant of the Matrix3x3. - - - - Inverts the Matrix3x3. - - - - - Transposes the Matrix3x3. - - - - - Orthogonalizes the specified Matrix3x3. - - - Orthogonalization is the process of making all rows orthogonal to each other. This - means that any given row in the Matrix3x3 will be orthogonal to any other given row in the - Matrix3x3. - Because this method uses the modified Gram-Schmidt process, the resulting Matrix3x3 - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the Matrix3x3 rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthonormalizes the specified Matrix3x3. - - - Orthonormalization is the process of making all rows and columns orthogonal to each - other and making all rows and columns of unit length. This means that any given row will - be orthogonal to any other given row and any given column will be orthogonal to any other - given column. Any given row will not be orthogonal to any given column. Every row and every - column will be of unit length. - Because this method uses the modified Gram-Schmidt process, the resulting Matrix3x3 - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the Matrix3x3 rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Decomposes a Matrix3x3 into an orthonormalized Matrix3x3 Q and a right triangular Matrix3x3 R. - - When the method completes, contains the orthonormalized Matrix3x3 of the decomposition. - When the method completes, contains the right triangular Matrix3x3 of the decomposition. - - - - Decomposes a Matrix3x3 into a lower triangular Matrix3x3 L and an orthonormalized Matrix3x3 Q. - - When the method completes, contains the lower triangular Matrix3x3 of the decomposition. - When the method completes, contains the orthonormalized Matrix3x3 of the decomposition. - - - - Decomposes a Matrix3x3 into a scale, rotation, and translation. - - When the method completes, contains the scaling component of the decomposed Matrix3x3. - When the method completes, contains the rotation component of the decomposed Matrix3x3. - - This method is designed to decompose an SRT transformation Matrix3x3 only. - - - - - Decomposes a uniform scale matrix into a scale, rotation, and translation. - A uniform scale matrix has the same scale in every axis. - - When the method completes, contains the scaling component of the decomposed matrix. - When the method completes, contains the rotation component of the decomposed matrix. - - This method is designed to decompose only an SRT transformation matrix that has the same scale in every axis. - - - - - Exchanges two rows in the Matrix3x3. - - The first row to exchange. This is an index of the row starting at zero. - The second row to exchange. This is an index of the row starting at zero. - - - - Exchanges two columns in the Matrix3x3. - - The first column to exchange. This is an index of the column starting at zero. - The second column to exchange. This is an index of the column starting at zero. - - - - Creates an array containing the elements of the Matrix3x3. - - A 9-element array containing the components of the Matrix3x3. - - - - Determines the sum of two matrices. - - The first Matrix3x3 to add. - The second Matrix3x3 to add. - When the method completes, contains the sum of the two matrices. - - - - Determines the sum of two matrices. - - The first Matrix3x3 to add. - The second Matrix3x3 to add. - The sum of the two matrices. - - - - Determines the difference between two matrices. - - The first Matrix3x3 to subtract. - The second Matrix3x3 to subtract. - When the method completes, contains the difference between the two matrices. - - - - Determines the difference between two matrices. - - The first Matrix3x3 to subtract. - The second Matrix3x3 to subtract. - The difference between the two matrices. - - - - Scales a Matrix3x3 by the given value. - - The Matrix3x3 to scale. - The amount by which to scale. - When the method completes, contains the scaled Matrix3x3. - - - - Scales a Matrix3x3 by the given value. - - The Matrix3x3 to scale. - The amount by which to scale. - The scaled Matrix3x3. - - - - Determines the product of two matrices. - - The first Matrix3x3 to multiply. - The second Matrix3x3 to multiply. - The product of the two matrices. - - - - Determines the product of two matrices. - - The first Matrix3x3 to multiply. - The second Matrix3x3 to multiply. - The product of the two matrices. - - - - Scales a Matrix3x3 by the given value. - - The Matrix3x3 to scale. - The amount by which to scale. - When the method completes, contains the scaled Matrix3x3. - - - - Scales a Matrix3x3 by the given value. - - The Matrix3x3 to scale. - The amount by which to scale. - The scaled Matrix3x3. - - - - Determines the quotient of two matrices. - - The first Matrix3x3 to divide. - The second Matrix3x3 to divide. - When the method completes, contains the quotient of the two matrices. - - - - Determines the quotient of two matrices. - - The first Matrix3x3 to divide. - The second Matrix3x3 to divide. - The quotient of the two matrices. - - - - Performs the exponential operation on a Matrix3x3. - - The Matrix3x3 to perform the operation on. - The exponent to raise the Matrix3x3 to. - When the method completes, contains the exponential Matrix3x3. - Thrown when the is negative. - - - - Performs the exponential operation on a Matrix3x3. - - The Matrix3x3 to perform the operation on. - The exponent to raise the Matrix3x3 to. - The exponential Matrix3x3. - Thrown when the is negative. - - - - Negates a Matrix3x3. - - The Matrix3x3 to be negated. - When the method completes, contains the negated Matrix3x3. - - - - Negates a Matrix3x3. - - The Matrix3x3 to be negated. - The negated Matrix3x3. - - - - Performs a linear interpolation between two matrices. - - Start Matrix3x3. - End Matrix3x3. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the linear interpolation of the two matrices. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a linear interpolation between two matrices. - - Start Matrix3x3. - End Matrix3x3. - Value between 0 and 1 indicating the weight of . - The linear interpolation of the two matrices. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a cubic interpolation between two matrices. - - Start Matrix3x3. - End Matrix3x3. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the cubic interpolation of the two matrices. - - - - Performs a cubic interpolation between two matrices. - - Start Matrix3x3. - End Matrix3x3. - Value between 0 and 1 indicating the weight of . - The cubic interpolation of the two matrices. - - - - Calculates the transpose of the specified Matrix3x3. - - The Matrix3x3 whose transpose is to be calculated. - When the method completes, contains the transpose of the specified Matrix3x3. - - - - Calculates the transpose of the specified Matrix3x3. - - The Matrix3x3 whose transpose is to be calculated. - When the method completes, contains the transpose of the specified Matrix3x3. - - - - Calculates the transpose of the specified Matrix3x3. - - The Matrix3x3 whose transpose is to be calculated. - The transpose of the specified Matrix3x3. - - - - Calculates the inverse of the specified Matrix3x3. - - The Matrix3x3 whose inverse is to be calculated. - When the method completes, contains the inverse of the specified Matrix3x3. - - - - Calculates the inverse of the specified Matrix3x3. - - The Matrix3x3 whose inverse is to be calculated. - The inverse of the specified Matrix3x3. - - - - Orthogonalizes the specified Matrix3x3. - - The Matrix3x3 to orthogonalize. - When the method completes, contains the orthogonalized Matrix3x3. - - Orthogonalization is the process of making all rows orthogonal to each other. This - means that any given row in the Matrix3x3 will be orthogonal to any other given row in the - Matrix3x3. - Because this method uses the modified Gram-Schmidt process, the resulting Matrix3x3 - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the Matrix3x3 rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthogonalizes the specified Matrix3x3. - - The Matrix3x3 to orthogonalize. - The orthogonalized Matrix3x3. - - Orthogonalization is the process of making all rows orthogonal to each other. This - means that any given row in the Matrix3x3 will be orthogonal to any other given row in the - Matrix3x3. - Because this method uses the modified Gram-Schmidt process, the resulting Matrix3x3 - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the Matrix3x3 rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthonormalizes the specified Matrix3x3. - - The Matrix3x3 to orthonormalize. - When the method completes, contains the orthonormalized Matrix3x3. - - Orthonormalization is the process of making all rows and columns orthogonal to each - other and making all rows and columns of unit length. This means that any given row will - be orthogonal to any other given row and any given column will be orthogonal to any other - given column. Any given row will not be orthogonal to any given column. Every row and every - column will be of unit length. - Because this method uses the modified Gram-Schmidt process, the resulting Matrix3x3 - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the Matrix3x3 rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthonormalizes the specified Matrix3x3. - - The Matrix3x3 to orthonormalize. - The orthonormalized Matrix3x3. - - Orthonormalization is the process of making all rows and columns orthogonal to each - other and making all rows and columns of unit length. This means that any given row will - be orthogonal to any other given row and any given column will be orthogonal to any other - given column. Any given row will not be orthogonal to any given column. Every row and every - column will be of unit length. - Because this method uses the modified Gram-Schmidt process, the resulting Matrix3x3 - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the Matrix3x3 rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Brings the Matrix3x3 into upper triangular form using elementary row operations. - - The Matrix3x3 to put into upper triangular form. - When the method completes, contains the upper triangular Matrix3x3. - - If the Matrix3x3 is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the Matrix3x3 represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the Matrix3x3 into upper triangular form using elementary row operations. - - The Matrix3x3 to put into upper triangular form. - The upper triangular Matrix3x3. - - If the Matrix3x3 is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the Matrix3x3 represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the Matrix3x3 into lower triangular form using elementary row operations. - - The Matrix3x3 to put into lower triangular form. - When the method completes, contains the lower triangular Matrix3x3. - - If the Matrix3x3 is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the Matrix3x3 represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the Matrix3x3 into lower triangular form using elementary row operations. - - The Matrix3x3 to put into lower triangular form. - The lower triangular Matrix3x3. - - If the Matrix3x3 is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the Matrix3x3 represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the Matrix3x3 into row echelon form using elementary row operations; - - The Matrix3x3 to put into row echelon form. - When the method completes, contains the row echelon form of the Matrix3x3. - - - - Brings the Matrix3x3 into row echelon form using elementary row operations; - - The Matrix3x3 to put into row echelon form. - When the method completes, contains the row echelon form of the Matrix3x3. - - - - Creates a left-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - When the method completes, contains the created billboard Matrix3x3. - - - - Creates a left-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - The created billboard Matrix3x3. - - - - Creates a right-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - When the method completes, contains the created billboard Matrix3x3. - - - - Creates a right-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - The created billboard Matrix3x3. - - - - Creates a left-handed, look-at Matrix3x3. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - When the method completes, contains the created look-at Matrix3x3. - - - - Creates a left-handed, look-at Matrix3x3. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - The created look-at Matrix3x3. - - - - Creates a right-handed, look-at Matrix3x3. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - When the method completes, contains the created look-at Matrix3x3. - - - - Creates a right-handed, look-at Matrix3x3. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - The created look-at Matrix3x3. - - - - Creates a Matrix3x3 that scales along the x-axis, y-axis, and y-axis. - - Scaling factor for all three axes. - When the method completes, contains the created scaling Matrix3x3. - - - - Creates a Matrix3x3 that scales along the x-axis, y-axis, and y-axis. - - Scaling factor for all three axes. - The created scaling Matrix3x3. - - - - Creates a Matrix3x3 that scales along the x-axis, y-axis, and y-axis. - - Scaling factor that is applied along the x-axis. - Scaling factor that is applied along the y-axis. - Scaling factor that is applied along the z-axis. - When the method completes, contains the created scaling Matrix3x3. - - - - Creates a Matrix3x3 that scales along the x-axis, y-axis, and y-axis. - - Scaling factor that is applied along the x-axis. - Scaling factor that is applied along the y-axis. - Scaling factor that is applied along the z-axis. - The created scaling Matrix3x3. - - - - Creates a Matrix3x3 that uniformly scales along all three axis. - - The uniform scale that is applied along all axis. - When the method completes, contains the created scaling Matrix3x3. - - - - Creates a Matrix3x3 that uniformly scales along all three axis. - - The uniform scale that is applied along all axis. - The created scaling Matrix3x3. - - - - Creates a Matrix3x3 that rotates around the x-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation Matrix3x3. - - - - Creates a Matrix3x3 that rotates around the x-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation Matrix3x3. - - - - Creates a Matrix3x3 that rotates around the y-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation Matrix3x3. - - - - Creates a Matrix3x3 that rotates around the y-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation Matrix3x3. - - - - Creates a Matrix3x3 that rotates around the z-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation Matrix3x3. - - - - Creates a Matrix3x3 that rotates around the z-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation Matrix3x3. - - - - Creates a Matrix3x3 that rotates around an arbitrary axis. - - The axis around which to rotate. This parameter is assumed to be normalized. - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation Matrix3x3. - - - - Creates a Matrix3x3 that rotates around an arbitrary axis. - - The axis around which to rotate. This parameter is assumed to be normalized. - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation Matrix3x3. - - - - Creates a rotation Matrix3x3 from a quaternion. - - The quaternion to use to build the Matrix3x3. - The created rotation Matrix3x3. - - - - Creates a rotation Matrix3x3 from a quaternion. - - The quaternion to use to build the Matrix3x3. - The created rotation Matrix3x3. - - - - Creates a rotation Matrix3x3 with a specified yaw, pitch, and roll. - - Yaw around the y-axis, in radians. - Pitch around the x-axis, in radians. - Roll around the z-axis, in radians. - When the method completes, contains the created rotation Matrix3x3. - - - - Creates a rotation Matrix3x3 with a specified yaw, pitch, and roll. - - Yaw around the y-axis, in radians. - Pitch around the x-axis, in radians. - Roll around the z-axis, in radians. - The created rotation Matrix3x3. - - - - Adds two matrices. - - The first Matrix3x3 to add. - The second Matrix3x3 to add. - The sum of the two matrices. - - - - Assert a Matrix3x3 (return it unchanged). - - The Matrix3x3 to assert (unchanged). - The asserted (unchanged) Matrix3x3. - - - - Subtracts two matrices. - - The first Matrix3x3 to subtract. - The second Matrix3x3 to subtract. - The difference between the two matrices. - - - - Negates a Matrix3x3. - - The Matrix3x3 to negate. - The negated Matrix3x3. - - - - Scales a Matrix3x3 by a given value. - - The Matrix3x3 to scale. - The amount by which to scale. - The scaled Matrix3x3. - - - - Scales a Matrix3x3 by a given value. - - The Matrix3x3 to scale. - The amount by which to scale. - The scaled Matrix3x3. - - - - Multiplies two matrices. - - The first Matrix3x3 to multiply. - The second Matrix3x3 to multiply. - The product of the two matrices. - - - - Scales a Matrix3x3 by a given value. - - The Matrix3x3 to scale. - The amount by which to scale. - The scaled Matrix3x3. - - - - Divides two matrices. - - The first Matrix3x3 to divide. - The second Matrix3x3 to divide. - The quotient of the two matrices. - - - - Tests for equality between two objects. - - The first value to compare. - The second value to compare. - true if has the same value as ; otherwise, false. - - - - Tests for inequality between two objects. - - The first value to compare. - The second value to compare. - true if has a different value than ; otherwise, false. - - - - Convert the 3x3 Matrix to a 4x4 Matrix. - - A 4x4 Matrix with zero translation and M44=1 - - - - Convert the 4x4 Matrix to a 3x3 Matrix. - - A 3x3 Matrix - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified are equal. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Represents a four dimensional mathematical quaternion. - - - - - A with all of its components set to zero. - - - - - A with all of its components set to one. - - - - - The identity (0, 0, 0, 1). - - - - - The X component of the quaternion. - - - - - The Y component of the quaternion. - - - - - The Z component of the quaternion. - - - - - The W component of the quaternion. - - - - - Initializes a new instance of the struct. - - The value that will be assigned to all components. - - - - Initializes a new instance of the struct. - - A vector containing the values with which to initialize the components. - - - - Initializes a new instance of the struct. - - A vector containing the values with which to initialize the X, Y, and Z components. - Initial value for the W component of the quaternion. - - - - Initializes a new instance of the struct. - - A vector containing the values with which to initialize the X and Y components. - Initial value for the Z component of the quaternion. - Initial value for the W component of the quaternion. - - - - Initializes a new instance of the struct. - - Initial value for the X component of the quaternion. - Initial value for the Y component of the quaternion. - Initial value for the Z component of the quaternion. - Initial value for the W component of the quaternion. - - - - Initializes a new instance of the struct. - - The values to assign to the X, Y, Z, and W components of the quaternion. This must be an array with four elements. - Thrown when is null. - Thrown when contains more or less than four elements. - - - - Gets a value indicating whether this instance is equivalent to the identity quaternion. - - - true if this instance is an identity quaternion; otherwise, false. - - - - - Gets a value indicting whether this instance is normalized. - - - - - Gets the angle of the quaternion. - - The quaternion's angle. - - - - Gets the axis components of the quaternion. - - The axis components of the quaternion. - - - - Gets or sets the component at the specified index. - - The value of the X, Y, Z, or W component, depending on the index. - The index of the component to access. Use 0 for the X component, 1 for the Y component, 2 for the Z component, and 3 for the W component. - The value of the component at the specified index. - Thrown when the is out of the range [0, 3]. - - - - Conjugates the quaternion. - - - - - Conjugates and renormalizes the quaternion. - - - - - Calculates the length of the quaternion. - - The length of the quaternion. - - may be preferred when only the relative length is needed - and speed is of the essence. - - - - - Calculates the squared length of the quaternion. - - The squared length of the quaternion. - - This method may be preferred to when only a relative length is needed - and speed is of the essence. - - - - - Converts the quaternion into a unit quaternion. - - - - - Creates an array containing the elements of the quaternion. - - A four-element array containing the components of the quaternion. - - - - Adds two quaternions. - - The first quaternion to add. - The second quaternion to add. - When the method completes, contains the sum of the two quaternions. - - - - Adds two quaternions. - - The first quaternion to add. - The second quaternion to add. - The sum of the two quaternions. - - - - Subtracts two quaternions. - - The first quaternion to subtract. - The second quaternion to subtract. - When the method completes, contains the difference of the two quaternions. - - - - Subtracts two quaternions. - - The first quaternion to subtract. - The second quaternion to subtract. - The difference of the two quaternions. - - - - Scales a quaternion by the given value. - - The quaternion to scale. - The amount by which to scale the quaternion. - When the method completes, contains the scaled quaternion. - - - - Scales a quaternion by the given value. - - The quaternion to scale. - The amount by which to scale the quaternion. - The scaled quaternion. - - - - Multiplies a quaternion by another. - - The first quaternion to multiply. - The second quaternion to multiply. - When the method completes, contains the multiplied quaternion. - - - - Multiplies a quaternion by another. - - The first quaternion to multiply. - The second quaternion to multiply. - The multiplied quaternion. - - - - Reverses the direction of a given quaternion. - - The quaternion to negate. - When the method completes, contains a quaternion facing in the opposite direction. - - - - Reverses the direction of a given quaternion. - - The quaternion to negate. - A quaternion facing in the opposite direction. - - - - Returns a containing the 4D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 2D triangle. - - A containing the 4D Cartesian coordinates of vertex 1 of the triangle. - A containing the 4D Cartesian coordinates of vertex 2 of the triangle. - A containing the 4D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - When the method completes, contains a new containing the 4D Cartesian coordinates of the specified point. - - - - Returns a containing the 4D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 2D triangle. - - A containing the 4D Cartesian coordinates of vertex 1 of the triangle. - A containing the 4D Cartesian coordinates of vertex 2 of the triangle. - A containing the 4D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - A new containing the 4D Cartesian coordinates of the specified point. - - - - Conjugates a quaternion. - - The quaternion to conjugate. - When the method completes, contains the conjugated quaternion. - - - - Conjugates a quaternion. - - The quaternion to conjugate. - The conjugated quaternion. - - - - Calculates the dot product of two quaternions. - - First source quaternion. - Second source quaternion. - When the method completes, contains the dot product of the two quaternions. - - - - Calculates the dot product of two quaternions. - - First source quaternion. - Second source quaternion. - The dot product of the two quaternions. - - - - Exponentiates a quaternion. - - The quaternion to exponentiate. - When the method completes, contains the exponentiated quaternion. - - - - Exponentiates a quaternion. - - The quaternion to exponentiate. - The exponentiated quaternion. - - - - Conjugates and renormalizes the quaternion. - - The quaternion to conjugate and renormalize. - When the method completes, contains the conjugated and renormalized quaternion. - - - - Conjugates and renormalizes the quaternion. - - The quaternion to conjugate and renormalize. - The conjugated and renormalized quaternion. - - - - Performs a linear interpolation between two quaternions. - - Start quaternion. - End quaternion. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the linear interpolation of the two quaternions. - - This method performs the linear interpolation based on the following formula. - start + (end - start) * amount - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a linear interpolation between two quaternion. - - Start quaternion. - End quaternion. - Value between 0 and 1 indicating the weight of . - The linear interpolation of the two quaternions. - - This method performs the linear interpolation based on the following formula. - start + (end - start) * amount - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Calculates the natural logarithm of the specified quaternion. - - The quaternion whose logarithm will be calculated. - When the method completes, contains the natural logarithm of the quaternion. - - - - Calculates the natural logarithm of the specified quaternion. - - The quaternion whose logarithm will be calculated. - The natural logarithm of the quaternion. - - - - Converts the quaternion into a unit quaternion. - - The quaternion to normalize. - When the method completes, contains the normalized quaternion. - - - - Converts the quaternion into a unit quaternion. - - The quaternion to normalize. - The normalized quaternion. - - - - Creates a quaternion given a rotation and an axis. - - The axis of rotation. - The angle of rotation. - When the method completes, contains the newly created quaternion. - - - - Creates a quaternion given a rotation and an axis. - - The axis of rotation. - The angle of rotation. - The newly created quaternion. - - - - Creates a quaternion given a rotation matrix. - - The rotation matrix. - When the method completes, contains the newly created quaternion. - - - - Creates a quaternion given a rotation matrix. - - The rotation matrix. - When the method completes, contains the newly created quaternion. - - - - Creates a left-handed, look-at quaternion. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - When the method completes, contains the created look-at quaternion. - - - - Creates a left-handed, look-at quaternion. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - The created look-at quaternion. - - - - Creates a left-handed, look-at quaternion. - - The camera's forward direction. - The camera's up vector. - When the method completes, contains the created look-at quaternion. - - - - Creates a left-handed, look-at quaternion. - - The camera's forward direction. - The camera's up vector. - The created look-at quaternion. - - - - Creates a right-handed, look-at quaternion. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - When the method completes, contains the created look-at quaternion. - - - - Creates a right-handed, look-at quaternion. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - The created look-at quaternion. - - - - Creates a right-handed, look-at quaternion. - - The camera's forward direction. - The camera's up vector. - When the method completes, contains the created look-at quaternion. - - - - Creates a right-handed, look-at quaternion. - - The camera's forward direction. - The camera's up vector. - The created look-at quaternion. - - - - Creates a left-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - When the method completes, contains the created billboard quaternion. - - - - Creates a left-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - The created billboard quaternion. - - - - Creates a right-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - When the method completes, contains the created billboard quaternion. - - - - Creates a right-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - The created billboard quaternion. - - - - Creates a quaternion given a rotation matrix. - - The rotation matrix. - The newly created quaternion. - - - - Creates a quaternion given a yaw, pitch, and roll value. - - The yaw of rotation. - The pitch of rotation. - The roll of rotation. - When the method completes, contains the newly created quaternion. - - - - Creates a quaternion given a yaw, pitch, and roll value. - - The yaw of rotation. - The pitch of rotation. - The roll of rotation. - The newly created quaternion. - - - - Interpolates between two quaternions, using spherical linear interpolation. - - Start quaternion. - End quaternion. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the spherical linear interpolation of the two quaternions. - - - - Interpolates between two quaternions, using spherical linear interpolation. - - Start quaternion. - End quaternion. - Value between 0 and 1 indicating the weight of . - The spherical linear interpolation of the two quaternions. - - - - Interpolates between quaternions, using spherical quadrangle interpolation. - - First source quaternion. - Second source quaternion. - Third source quaternion. - Fourth source quaternion. - Value between 0 and 1 indicating the weight of interpolation. - When the method completes, contains the spherical quadrangle interpolation of the quaternions. - - - - Interpolates between quaternions, using spherical quadrangle interpolation. - - First source quaternion. - Second source quaternion. - Third source quaternion. - Fourth source quaternion. - Value between 0 and 1 indicating the weight of interpolation. - The spherical quadrangle interpolation of the quaternions. - - - - Sets up control points for spherical quadrangle interpolation. - - First source quaternion. - Second source quaternion. - Third source quaternion. - Fourth source quaternion. - An array of three quaternions that represent control points for spherical quadrangle interpolation. - - - - Adds two quaternions. - - The first quaternion to add. - The second quaternion to add. - The sum of the two quaternions. - - - - Subtracts two quaternions. - - The first quaternion to subtract. - The second quaternion to subtract. - The difference of the two quaternions. - - - - Reverses the direction of a given quaternion. - - The quaternion to negate. - A quaternion facing in the opposite direction. - - - - Scales a quaternion by the given value. - - The quaternion to scale. - The amount by which to scale the quaternion. - The scaled quaternion. - - - - Scales a quaternion by the given value. - - The quaternion to scale. - The amount by which to scale the quaternion. - The scaled quaternion. - - - - Multiplies a quaternion by another. - - The first quaternion to multiply. - The second quaternion to multiply. - The multiplied quaternion. - - - - Tests for equality between two objects. - - The first value to compare. - The second value to compare. - true if has the same value as ; otherwise, false. - - - - Tests for inequality between two objects. - - The first value to compare. - The second value to compare. - true if has a different value than ; otherwise, false. - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Represents a two dimensional mathematical vector. - - - - - A with all of its components set to zero. - - - - - The X unit (1, 0). - - - - - The Y unit (0, 1). - - - - - A with all of its components set to one. - - - - - The X component of the vector. - - - - - The Y component of the vector. - - - - - Initializes a new instance of the struct. - - The value that will be assigned to all components. - - - - Initializes a new instance of the struct. - - Initial value for the X component of the vector. - Initial value for the Y component of the vector. - - - - Initializes a new instance of the struct. - - The values to assign to the X and Y components of the vector. This must be an array with two elements. - Thrown when is null. - Thrown when contains more or less than two elements. - - - - Gets a value indicting whether this instance is normalized. - - - - - Gets a value indicting whether this vector is zero - - - - - Gets or sets the component at the specified index. - - The value of the X or Y component, depending on the index. - The index of the component to access. Use 0 for the X component and 1 for the Y component. - The value of the component at the specified index. - Thrown when the is out of the range [0, 1]. - - - - Calculates the length of the vector. - - The length of the vector. - - may be preferred when only the relative length is needed - and speed is of the essence. - - - - - Calculates the squared length of the vector. - - The squared length of the vector. - - This method may be preferred to when only a relative length is needed - and speed is of the essence. - - - - - Converts the vector into a unit vector. - - - - - Creates an array containing the elements of the vector. - - A two-element array containing the components of the vector. - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - When the method completes, contains the sum of the two vectors. - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - The sum of the two vectors. - - - - Perform a component-wise addition - - The input vector - The scalar value to be added to elements - The vector with added scalar for each element. - - - - Perform a component-wise addition - - The input vector - The scalar value to be added to elements - The vector with added scalar for each element. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - When the method completes, contains the difference of the two vectors. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - The difference of the two vectors. - - - - Perform a component-wise subtraction - - The input vector - The scalar value to be subtraced from elements - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The input vector - The scalar value to be subtraced from elements - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The scalar value to be subtraced from elements - The input vector - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The scalar value to be subtraced from elements - The input vector - The vector with subtracted scalar for each element. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Multiplies a vector with another by performing component-wise multiplication. - - The first vector to multiply. - The second vector to multiply. - When the method completes, contains the multiplied vector. - - - - Multiplies a vector with another by performing component-wise multiplication. - - The first vector to multiply. - The second vector to multiply. - The multiplied vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The amount by which to scale the vector. - The vector to scale. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Reverses the direction of a given vector. - - The vector to negate. - When the method completes, contains a vector facing in the opposite direction. - - - - Reverses the direction of a given vector. - - The vector to negate. - A vector facing in the opposite direction. - - - - Returns a containing the 2D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 2D triangle. - - A containing the 2D Cartesian coordinates of vertex 1 of the triangle. - A containing the 2D Cartesian coordinates of vertex 2 of the triangle. - A containing the 2D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - When the method completes, contains the 2D Cartesian coordinates of the specified point. - - - - Returns a containing the 2D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 2D triangle. - - A containing the 2D Cartesian coordinates of vertex 1 of the triangle. - A containing the 2D Cartesian coordinates of vertex 2 of the triangle. - A containing the 2D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - A new containing the 2D Cartesian coordinates of the specified point. - - - - Restricts a value to be within a specified range. - - The value to clamp. - The minimum value. - The maximum value. - When the method completes, contains the clamped value. - - - - Restricts a value to be within a specified range. - - The value to clamp. - The minimum value. - The maximum value. - The clamped value. - - - - Saturates this instance in the range [0,1] - - - - - Calculates the distance between two vectors. - - The first vector. - The second vector. - When the method completes, contains the distance between the two vectors. - - may be preferred when only the relative distance is needed - and speed is of the essence. - - - - - Calculates the distance between two vectors. - - The first vector. - The second vector. - The distance between the two vectors. - - may be preferred when only the relative distance is needed - and speed is of the essence. - - - - - Calculates the squared distance between two vectors. - - The first vector. - The second vector - When the method completes, contains the squared distance between the two vectors. - Distance squared is the value before taking the square root. - Distance squared can often be used in place of distance if relative comparisons are being made. - For example, consider three points A, B, and C. To determine whether B or C is further from A, - compare the distance between A and B to the distance between A and C. Calculating the two distances - involves two square roots, which are computationally expensive. However, using distance squared - provides the same information and avoids calculating two square roots. - - - - - Calculates the squared distance between two vectors. - - The first vector. - The second vector. - The squared distance between the two vectors. - Distance squared is the value before taking the square root. - Distance squared can often be used in place of distance if relative comparisons are being made. - For example, consider three points A, B, and C. To determine whether B or C is further from A, - compare the distance between A and B to the distance between A and C. Calculating the two distances - involves two square roots, which are computationally expensive. However, using distance squared - provides the same information and avoids calculating two square roots. - - - - - Calculates the dot product of two vectors. - - First source vector. - Second source vector. - When the method completes, contains the dot product of the two vectors. - - - - Calculates the dot product of two vectors. - - First source vector. - Second source vector. - The dot product of the two vectors. - - - - Converts the vector into a unit vector. - - The vector to normalize. - When the method completes, contains the normalized vector. - - - - Converts the vector into a unit vector. - - The vector to normalize. - The normalized vector. - - - - Performs a linear interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the linear interpolation of the two vectors. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a linear interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - The linear interpolation of the two vectors. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a cubic interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the cubic interpolation of the two vectors. - - - - Performs a cubic interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - The cubic interpolation of the two vectors. - - - - Performs a Hermite spline interpolation. - - First source position vector. - First source tangent vector. - Second source position vector. - Second source tangent vector. - Weighting factor. - When the method completes, contains the result of the Hermite spline interpolation. - - - - Performs a Hermite spline interpolation. - - First source position vector. - First source tangent vector. - Second source position vector. - Second source tangent vector. - Weighting factor. - The result of the Hermite spline interpolation. - - - - Performs a Catmull-Rom interpolation using the specified positions. - - The first position in the interpolation. - The second position in the interpolation. - The third position in the interpolation. - The fourth position in the interpolation. - Weighting factor. - When the method completes, contains the result of the Catmull-Rom interpolation. - - - - Performs a Catmull-Rom interpolation using the specified positions. - - The first position in the interpolation. - The second position in the interpolation. - The third position in the interpolation. - The fourth position in the interpolation. - Weighting factor. - A vector that is the result of the Catmull-Rom interpolation. - - - - Returns a vector containing the largest components of the specified vectors. - - The first source vector. - The second source vector. - When the method completes, contains an new vector composed of the largest components of the source vectors. - - - - Returns a vector containing the largest components of the specified vectors. - - The first source vector. - The second source vector. - A vector containing the largest components of the source vectors. - - - - Returns a vector containing the smallest components of the specified vectors. - - The first source vector. - The second source vector. - When the method completes, contains an new vector composed of the smallest components of the source vectors. - - - - Returns a vector containing the smallest components of the specified vectors. - - The first source vector. - The second source vector. - A vector containing the smallest components of the source vectors. - - - - Returns the reflection of a vector off a surface that has the specified normal. - - The source vector. - Normal of the surface. - When the method completes, contains the reflected vector. - Reflect only gives the direction of a reflection off a surface, it does not determine - whether the original vector was close enough to the surface to hit it. - - - - Returns the reflection of a vector off a surface that has the specified normal. - - The source vector. - Normal of the surface. - The reflected vector. - Reflect only gives the direction of a reflection off a surface, it does not determine - whether the original vector was close enough to the surface to hit it. - - - - Orthogonalizes a list of vectors. - - The list of orthogonalized vectors. - The list of vectors to orthogonalize. - - Orthogonalization is the process of making all vectors orthogonal to each other. This - means that any given vector in the list will be orthogonal to any other given vector in the - list. - Because this method uses the modified Gram-Schmidt process, the resulting vectors - tend to be numerically unstable. The numeric stability decreases according to the vectors - position in the list so that the first vector is the most stable and the last vector is the - least stable. - - Thrown when or is null. - Thrown when is shorter in length than . - - - - Orthonormalizes a list of vectors. - - The list of orthonormalized vectors. - The list of vectors to orthonormalize. - - Orthonormalization is the process of making all vectors orthogonal to each - other and making all vectors of unit length. This means that any given vector will - be orthogonal to any other given vector in the list. - Because this method uses the modified Gram-Schmidt process, the resulting vectors - tend to be numerically unstable. The numeric stability decreases according to the vectors - position in the list so that the first vector is the most stable and the last vector is the - least stable. - - Thrown when or is null. - Thrown when is shorter in length than . - - - - Transforms a 2D vector by the given rotation. - - The vector to rotate. - The rotation to apply. - When the method completes, contains the transformed . - - - - Transforms a 2D vector by the given rotation. - - The vector to rotate. - The rotation to apply. - The transformed . - - - - Transforms an array of vectors by the given rotation. - - The array of vectors to transform. - The rotation to apply. - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - - - Transforms a 2D vector by the given . - - The source vector. - The transformation . - When the method completes, contains the transformed . - - - - Transforms a 2D vector by the given . - - The source vector. - The transformation . - The transformed . - - - - Transforms an array of 2D vectors by the given . - - The array of vectors to transform. - The transformation . - The array for which the transformed vectors are stored. - Thrown when or is null. - Thrown when is shorter in length than . - - - - Performs a coordinate transformation using the given . - - The coordinate vector to transform. - The transformation . - When the method completes, contains the transformed coordinates. - - A coordinate transform performs the transformation with the assumption that the w component - is one. The four dimensional vector obtained from the transformation operation has each - component in the vector divided by the w component. This forces the w component to be one and - therefore makes the vector homogeneous. The homogeneous vector is often preferred when working - with coordinates as the w component can safely be ignored. - - - - - Performs a coordinate transformation using the given . - - The coordinate vector to transform. - The transformation . - The transformed coordinates. - - A coordinate transform performs the transformation with the assumption that the w component - is one. The four dimensional vector obtained from the transformation operation has each - component in the vector divided by the w component. This forces the w component to be one and - therefore makes the vector homogeneous. The homogeneous vector is often preferred when working - with coordinates as the w component can safely be ignored. - - - - - Performs a coordinate transformation on an array of vectors using the given . - - The array of coordinate vectors to transform. - The transformation . - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - A coordinate transform performs the transformation with the assumption that the w component - is one. The four dimensional vector obtained from the transformation operation has each - component in the vector divided by the w component. This forces the w component to be one and - therefore makes the vector homogeneous. The homogeneous vector is often preferred when working - with coordinates as the w component can safely be ignored. - - - - - Performs a normal transformation using the given . - - The normal vector to transform. - The transformation . - When the method completes, contains the transformed normal. - - A normal transform performs the transformation with the assumption that the w component - is zero. This causes the fourth row and fourth column of the matrix to be unused. The - end result is a vector that is not translated, but all other transformation properties - apply. This is often preferred for normal vectors as normals purely represent direction - rather than location because normal vectors should not be translated. - - - - - Performs a normal transformation using the given . - - The normal vector to transform. - The transformation . - The transformed normal. - - A normal transform performs the transformation with the assumption that the w component - is zero. This causes the fourth row and fourth column of the matrix to be unused. The - end result is a vector that is not translated, but all other transformation properties - apply. This is often preferred for normal vectors as normals purely represent direction - rather than location because normal vectors should not be translated. - - - - - Performs a normal transformation on an array of vectors using the given . - - The array of normal vectors to transform. - The transformation . - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - A normal transform performs the transformation with the assumption that the w component - is zero. This causes the fourth row and fourth column of the matrix to be unused. The - end result is a vector that is not translated, but all other transformation properties - apply. This is often preferred for normal vectors as normals purely represent direction - rather than location because normal vectors should not be translated. - - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - The sum of the two vectors. - - - - Multiplies a vector with another by performing component-wise multiplication equivalent to . - - The first vector to multiply. - The second vector to multiply. - The multiplication of the two vectors. - - - - Assert a vector (return it unchanged). - - The vector to assert (unchanged). - The asserted (unchanged) vector. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - The difference of the two vectors. - - - - Reverses the direction of a given vector. - - The vector to negate. - A vector facing in the opposite direction. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The amount by which to scale the vector. - The vector to scale. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Perform a component-wise addition - - The input vector. - The scalar value to be added on elements - The vector with added scalar for each element. - - - - Perform a component-wise addition - - The input vector. - The scalar value to be added on elements - The vector with added scalar for each element. - - - - Perform a component-wise subtraction - - The input vector. - The scalar value to be subtraced from elements - The vector with subtraced scalar from each element. - - - - Perform a component-wise subtraction - - The input vector. - The scalar value to be subtraced from elements - The vector with subtraced scalar from each element. - - - - Tests for equality between two objects. - - The first value to compare. - The second value to compare. - true if has the same value as ; otherwise, false. - - - - Tests for inequality between two objects. - - The first value to compare. - The second value to compare. - true if has a different value than ; otherwise, false. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Represents a three dimensional mathematical vector. - - - - - A with all of its components set to zero. - - - - - The X unit (1, 0, 0). - - - - - The Y unit (0, 1, 0). - - - - - The Z unit (0, 0, 1). - - - - - A with all of its components set to one. - - - - - A unit designating up (0, 1, 0). - - - - - A unit designating down (0, -1, 0). - - - - - A unit designating left (-1, 0, 0). - - - - - A unit designating right (1, 0, 0). - - - - - A unit designating forward in a right-handed coordinate system (0, 0, -1). - - - - - A unit designating forward in a left-handed coordinate system (0, 0, 1). - - - - - A unit designating backward in a right-handed coordinate system (0, 0, 1). - - - - - A unit designating backward in a left-handed coordinate system (0, 0, -1). - - - - - The X component of the vector. - - - - - The Y component of the vector. - - - - - The Z component of the vector. - - - - - Initializes a new instance of the struct. - - The value that will be assigned to all components. - - - - Initializes a new instance of the struct. - - Initial value for the X component of the vector. - Initial value for the Y component of the vector. - Initial value for the Z component of the vector. - - - - Initializes a new instance of the struct. - - A vector containing the values with which to initialize the X and Y components. - Initial value for the Z component of the vector. - - - - Initializes a new instance of the struct. - - The values to assign to the X, Y, and Z components of the vector. This must be an array with three elements. - Thrown when is null. - Thrown when contains more or less than three elements. - - - - Gets a value indicting whether this instance is normalized. - - - - - Gets a value indicting whether this vector is zero - - - - - Gets or sets the component at the specified index. - - The value of the X, Y, or Z component, depending on the index. - The index of the component to access. Use 0 for the X component, 1 for the Y component, and 2 for the Z component. - The value of the component at the specified index. - Thrown when the is out of the range [0, 2]. - - - - Calculates the length of the vector. - - The length of the vector. - - may be preferred when only the relative length is needed - and speed is of the essence. - - - - - Calculates the squared length of the vector. - - The squared length of the vector. - - This method may be preferred to when only a relative length is needed - and speed is of the essence. - - - - - Converts the vector into a unit vector. - - - - - Creates an array containing the elements of the vector. - - A three-element array containing the components of the vector. - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - When the method completes, contains the sum of the two vectors. - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - The sum of the two vectors. - - - - Perform a component-wise addition - - The input vector - The scalar value to be added to elements - The vector with added scalar for each element. - - - - Perform a component-wise addition - - The input vector - The scalar value to be added to elements - The vector with added scalar for each element. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - When the method completes, contains the difference of the two vectors. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - The difference of the two vectors. - - - - Perform a component-wise subtraction - - The input vector - The scalar value to be subtraced from elements - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The input vector - The scalar value to be subtraced from elements - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The scalar value to be subtraced from elements - The input vector. - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The scalar value to be subtraced from elements - The input vector. - The vector with subtracted scalar for each element. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Multiply a vector with another by performing component-wise multiplication. - - The first vector to multiply. - The second vector to multiply. - When the method completes, contains the multiplied vector. - - - - Multiply a vector with another by performing component-wise multiplication. - - The first vector to Multiply. - The second vector to multiply. - The multiplied vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The amount by which to scale the vector. - The vector to scale. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Reverses the direction of a given vector. - - The vector to negate. - When the method completes, contains a vector facing in the opposite direction. - - - - Reverses the direction of a given vector. - - The vector to negate. - A vector facing in the opposite direction. - - - - Returns a containing the 3D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 3D triangle. - - A containing the 3D Cartesian coordinates of vertex 1 of the triangle. - A containing the 3D Cartesian coordinates of vertex 2 of the triangle. - A containing the 3D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - When the method completes, contains the 3D Cartesian coordinates of the specified point. - - - - Returns a containing the 3D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 3D triangle. - - A containing the 3D Cartesian coordinates of vertex 1 of the triangle. - A containing the 3D Cartesian coordinates of vertex 2 of the triangle. - A containing the 3D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - A new containing the 3D Cartesian coordinates of the specified point. - - - - Restricts a value to be within a specified range. - - The value to clamp. - The minimum value. - The maximum value. - When the method completes, contains the clamped value. - - - - Restricts a value to be within a specified range. - - The value to clamp. - The minimum value. - The maximum value. - The clamped value. - - - - Calculates the cross product of two vectors. - - First source vector. - Second source vector. - When the method completes, contains he cross product of the two vectors. - - - - Calculates the cross product of two vectors. - - First source vector. - Second source vector. - The cross product of the two vectors. - - - - Calculates the distance between two vectors. - - The first vector. - The second vector. - When the method completes, contains the distance between the two vectors. - - may be preferred when only the relative distance is needed - and speed is of the essence. - - - - - Calculates the distance between two vectors. - - The first vector. - The second vector. - The distance between the two vectors. - - may be preferred when only the relative distance is needed - and speed is of the essence. - - - - - Calculates the squared distance between two vectors. - - The first vector. - The second vector. - When the method completes, contains the squared distance between the two vectors. - Distance squared is the value before taking the square root. - Distance squared can often be used in place of distance if relative comparisons are being made. - For example, consider three points A, B, and C. To determine whether B or C is further from A, - compare the distance between A and B to the distance between A and C. Calculating the two distances - involves two square roots, which are computationally expensive. However, using distance squared - provides the same information and avoids calculating two square roots. - - - - - Calculates the squared distance between two vectors. - - The first vector. - The second vector. - The squared distance between the two vectors. - Distance squared is the value before taking the square root. - Distance squared can often be used in place of distance if relative comparisons are being made. - For example, consider three points A, B, and C. To determine whether B or C is further from A, - compare the distance between A and B to the distance between A and C. Calculating the two distances - involves two square roots, which are computationally expensive. However, using distance squared - provides the same information and avoids calculating two square roots. - - - - - Tests whether one 3D vector is near another 3D vector. - - The left vector. - The right vector. - The epsilon. - true if left and right are near another 3D, false otherwise - - - - Tests whether one 3D vector is near another 3D vector. - - The left vector. - The right vector. - The epsilon. - true if left and right are near another 3D, false otherwise - - - - Calculates the dot product of two vectors. - - First source vector. - Second source vector. - When the method completes, contains the dot product of the two vectors. - - - - Calculates the dot product of two vectors. - - First source vector. - Second source vector. - The dot product of the two vectors. - - - - Converts the vector into a unit vector. - - The vector to normalize. - When the method completes, contains the normalized vector. - - - - Converts the vector into a unit vector. - - The vector to normalize. - The normalized vector. - - - - Performs a linear interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the linear interpolation of the two vectors. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a linear interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - The linear interpolation of the two vectors. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a cubic interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the cubic interpolation of the two vectors. - - - - Performs a cubic interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - The cubic interpolation of the two vectors. - - - - Performs a Hermite spline interpolation. - - First source position vector. - First source tangent vector. - Second source position vector. - Second source tangent vector. - Weighting factor. - When the method completes, contains the result of the Hermite spline interpolation. - - - - Performs a Hermite spline interpolation. - - First source position vector. - First source tangent vector. - Second source position vector. - Second source tangent vector. - Weighting factor. - The result of the Hermite spline interpolation. - - - - Performs a Catmull-Rom interpolation using the specified positions. - - The first position in the interpolation. - The second position in the interpolation. - The third position in the interpolation. - The fourth position in the interpolation. - Weighting factor. - When the method completes, contains the result of the Catmull-Rom interpolation. - - - - Performs a Catmull-Rom interpolation using the specified positions. - - The first position in the interpolation. - The second position in the interpolation. - The third position in the interpolation. - The fourth position in the interpolation. - Weighting factor. - A vector that is the result of the Catmull-Rom interpolation. - - - - Returns a vector containing the largest components of the specified vectors. - - The first source vector. - The second source vector. - When the method completes, contains an new vector composed of the largest components of the source vectors. - - - - Returns a vector containing the largest components of the specified vectors. - - The first source vector. - The second source vector. - A vector containing the largest components of the source vectors. - - - - Returns a vector containing the smallest components of the specified vectors. - - The first source vector. - The second source vector. - When the method completes, contains an new vector composed of the smallest components of the source vectors. - - - - Returns a vector containing the smallest components of the specified vectors. - - The first source vector. - The second source vector. - A vector containing the smallest components of the source vectors. - - - - Projects a 3D vector from object space into screen space. - - The vector to project. - The X position of the viewport. - The Y position of the viewport. - The width of the viewport. - The height of the viewport. - The minimum depth of the viewport. - The maximum depth of the viewport. - The combined world-view-projection matrix. - When the method completes, contains the vector in screen space. - - - - Projects a 3D vector from object space into screen space. - - The vector to project. - The X position of the viewport. - The Y position of the viewport. - The width of the viewport. - The height of the viewport. - The minimum depth of the viewport. - The maximum depth of the viewport. - The combined world-view-projection matrix. - The vector in screen space. - - - - Projects a 3D vector from screen space into object space. - - The vector to project. - The X position of the viewport. - The Y position of the viewport. - The width of the viewport. - The height of the viewport. - The minimum depth of the viewport. - The maximum depth of the viewport. - The combined world-view-projection matrix. - When the method completes, contains the vector in object space. - - - - Projects a 3D vector from screen space into object space. - - The vector to project. - The X position of the viewport. - The Y position of the viewport. - The width of the viewport. - The height of the viewport. - The minimum depth of the viewport. - The maximum depth of the viewport. - The combined world-view-projection matrix. - The vector in object space. - - - - Returns the reflection of a vector off a surface that has the specified normal. - - The source vector. - Normal of the surface. - When the method completes, contains the reflected vector. - Reflect only gives the direction of a reflection off a surface, it does not determine - whether the original vector was close enough to the surface to hit it. - - - - Returns the reflection of a vector off a surface that has the specified normal. - - The source vector. - Normal of the surface. - The reflected vector. - Reflect only gives the direction of a reflection off a surface, it does not determine - whether the original vector was close enough to the surface to hit it. - - - - Orthogonalizes a list of vectors. - - The list of orthogonalized vectors. - The list of vectors to orthogonalize. - - Orthogonalization is the process of making all vectors orthogonal to each other. This - means that any given vector in the list will be orthogonal to any other given vector in the - list. - Because this method uses the modified Gram-Schmidt process, the resulting vectors - tend to be numerically unstable. The numeric stability decreases according to the vectors - position in the list so that the first vector is the most stable and the last vector is the - least stable. - - Thrown when or is null. - Thrown when is shorter in length than . - - - - Orthonormalizes a list of vectors. - - The list of orthonormalized vectors. - The list of vectors to orthonormalize. - - Orthonormalization is the process of making all vectors orthogonal to each - other and making all vectors of unit length. This means that any given vector will - be orthogonal to any other given vector in the list. - Because this method uses the modified Gram-Schmidt process, the resulting vectors - tend to be numerically unstable. The numeric stability decreases according to the vectors - position in the list so that the first vector is the most stable and the last vector is the - least stable. - - Thrown when or is null. - Thrown when is shorter in length than . - - - - Transforms a 3D vector by the given rotation. - - The vector to rotate. - The rotation to apply. - When the method completes, contains the transformed . - - - - Transforms a 3D vector by the given rotation. - - The vector to rotate. - The rotation to apply. - The transformed . - - - - Transforms an array of vectors by the given rotation. - - The array of vectors to transform. - The rotation to apply. - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - - - Transforms a 3D vector by the given . - - The source vector. - The transformation . - When the method completes, contains the transformed . - - - - Transforms a 3D vector by the given . - - The source vector. - The transformation . - The transformed . - - - - Transforms a 3D vector by the given . - - The source vector. - The transformation . - When the method completes, contains the transformed . - - - - Transforms a 3D vector by the given . - - The source vector. - The transformation . - When the method completes, contains the transformed . - - - - Transforms a 3D vector by the given . - - The source vector. - The transformation . - The transformed . - - - - Transforms an array of 3D vectors by the given . - - The array of vectors to transform. - The transformation . - The array for which the transformed vectors are stored. - Thrown when or is null. - Thrown when is shorter in length than . - - - - Performs a coordinate transformation using the given . - - The coordinate vector to transform. - The transformation . - When the method completes, contains the transformed coordinates. - - A coordinate transform performs the transformation with the assumption that the w component - is one. The four dimensional vector obtained from the transformation operation has each - component in the vector divided by the w component. This forces the w component to be one and - therefore makes the vector homogeneous. The homogeneous vector is often preferred when working - with coordinates as the w component can safely be ignored. - - - - - Performs a coordinate transformation using the given . - - The coordinate vector to transform. - The transformation . - The transformed coordinates. - - A coordinate transform performs the transformation with the assumption that the w component - is one. The four dimensional vector obtained from the transformation operation has each - component in the vector divided by the w component. This forces the w component to be one and - therefore makes the vector homogeneous. The homogeneous vector is often preferred when working - with coordinates as the w component can safely be ignored. - - - - - Performs a coordinate transformation on an array of vectors using the given . - - The array of coordinate vectors to transform. - The transformation . - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - A coordinate transform performs the transformation with the assumption that the w component - is one. The four dimensional vector obtained from the transformation operation has each - component in the vector divided by the w component. This forces the w component to be one and - therefore makes the vector homogeneous. The homogeneous vector is often preferred when working - with coordinates as the w component can safely be ignored. - - - - - Performs a normal transformation using the given . - - The normal vector to transform. - The transformation . - When the method completes, contains the transformed normal. - - A normal transform performs the transformation with the assumption that the w component - is zero. This causes the fourth row and fourth column of the matrix to be unused. The - end result is a vector that is not translated, but all other transformation properties - apply. This is often preferred for normal vectors as normals purely represent direction - rather than location because normal vectors should not be translated. - - - - - Performs a normal transformation using the given . - - The normal vector to transform. - The transformation . - The transformed normal. - - A normal transform performs the transformation with the assumption that the w component - is zero. This causes the fourth row and fourth column of the matrix to be unused. The - end result is a vector that is not translated, but all other transformation properties - apply. This is often preferred for normal vectors as normals purely represent direction - rather than location because normal vectors should not be translated. - - - - - Performs a normal transformation on an array of vectors using the given . - - The array of normal vectors to transform. - The transformation . - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - A normal transform performs the transformation with the assumption that the w component - is zero. This causes the fourth row and fourth column of the matrix to be unused. The - end result is a vector that is not translated, but all other transformation properties - apply. This is often preferred for normal vectors as normals purely represent direction - rather than location because normal vectors should not be translated. - - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - The sum of the two vectors. - - - - Multiplies a vector with another by performing component-wise multiplication equivalent to . - - The first vector to multiply. - The second vector to multiply. - The multiplication of the two vectors. - - - - Assert a vector (return it unchanged). - - The vector to assert (unchanged). - The asserted (unchanged) vector. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - The difference of the two vectors. - - - - Reverses the direction of a given vector. - - The vector to negate. - A vector facing in the opposite direction. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The amount by which to scale the vector. - The vector to scale. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Perform a component-wise addition - - The input vector. - The scalar value to be added on elements - The vector with added scalar for each element. - - - - Perform a component-wise addition - - The input vector. - The scalar value to be added on elements - The vector with added scalar for each element. - - - - Perform a component-wise subtraction - - The input vector. - The scalar value to be subtraced from elements - The vector with added scalar from each element. - - - - Perform a component-wise subtraction - - The input vector. - The scalar value to be subtraced from elements - The vector with subtraced scalar from each element. - - - - Tests for equality between two objects. - - The first value to compare. - The second value to compare. - true if has the same value as ; otherwise, false. - - - - Tests for inequality between two objects. - - The first value to compare. - The second value to compare. - true if has a different value than ; otherwise, false. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Represents a four dimensional mathematical vector. - - - - - A with all of its components set to zero. - - - - - The X unit (1, 0, 0, 0). - - - - - The Y unit (0, 1, 0, 0). - - - - - The Z unit (0, 0, 1, 0). - - - - - The W unit (0, 0, 0, 1). - - - - - A with all of its components set to one. - - - - - The X component of the vector. - - - - - The Y component of the vector. - - - - - The Z component of the vector. - - - - - The W component of the vector. - - - - - Initializes a new instance of the struct. - - The value that will be assigned to all components. - - - - Initializes a new instance of the struct. - - Initial value for the X component of the vector. - Initial value for the Y component of the vector. - Initial value for the Z component of the vector. - Initial value for the W component of the vector. - - - - Initializes a new instance of the struct. - - A vector containing the values with which to initialize the X, Y, and Z components. - Initial value for the W component of the vector. - - - - Initializes a new instance of the struct. - - A vector containing the values with which to initialize the X and Y components. - Initial value for the Z component of the vector. - Initial value for the W component of the vector. - - - - Initializes a new instance of the struct. - - The values to assign to the X, Y, Z, and W components of the vector. This must be an array with four elements. - Thrown when is null. - Thrown when contains more or less than four elements. - - - - Gets a value indicting whether this instance is normalized. - - - - - Gets a value indicting whether this vector is zero - - - - - Gets or sets the component at the specified index. - - The value of the X, Y, Z, or W component, depending on the index. - The index of the component to access. Use 0 for the X component, 1 for the Y component, 2 for the Z component, and 3 for the W component. - The value of the component at the specified index. - Thrown when the is out of the range [0, 3]. - - - - Calculates the length of the vector. - - The length of the vector. - - may be preferred when only the relative length is needed - and speed is of the essence. - - - - - Calculates the squared length of the vector. - - The squared length of the vector. - - This method may be preferred to when only a relative length is needed - and speed is of the essence. - - - - - Converts the vector into a unit vector. - - - - - Creates an array containing the elements of the vector. - - A four-element array containing the components of the vector. - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - When the method completes, contains the sum of the two vectors. - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - The sum of the two vectors. - - - - Perform a component-wise addition - - The input vector - The scalar value to be added to elements - The vector with added scalar for each element. - - - - Perform a component-wise addition - - The input vector - The scalar value to be added to elements - The vector with added scalar for each element. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - When the method completes, contains the difference of the two vectors. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - The difference of the two vectors. - - - - Perform a component-wise subtraction - - The input vector - The scalar value to be subtraced from elements - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The input vector - The scalar value to be subtraced from elements - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The scalar value to be subtraced from elements - The input vector. - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The scalar value to be subtraced from elements - The input vector. - The vector with subtracted scalar for each element. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Multiplies a vector with another by performing component-wise multiplication. - - The first vector to multiply. - The second vector to multiply. - When the method completes, contains the multiplied vector. - - - - Multiplies a vector with another by performing component-wise multiplication. - - The first vector to multiply. - The second vector to multiply. - The multiplied vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The amount by which to scale the vector. - The vector to scale. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Reverses the direction of a given vector. - - The vector to negate. - When the method completes, contains a vector facing in the opposite direction. - - - - Reverses the direction of a given vector. - - The vector to negate. - A vector facing in the opposite direction. - - - - Returns a containing the 4D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 4D triangle. - - A containing the 4D Cartesian coordinates of vertex 1 of the triangle. - A containing the 4D Cartesian coordinates of vertex 2 of the triangle. - A containing the 4D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - When the method completes, contains the 4D Cartesian coordinates of the specified point. - - - - Returns a containing the 4D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 4D triangle. - - A containing the 4D Cartesian coordinates of vertex 1 of the triangle. - A containing the 4D Cartesian coordinates of vertex 2 of the triangle. - A containing the 4D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - A new containing the 4D Cartesian coordinates of the specified point. - - - - Restricts a value to be within a specified range. - - The value to clamp. - The minimum value. - The maximum value. - When the method completes, contains the clamped value. - - - - Restricts a value to be within a specified range. - - The value to clamp. - The minimum value. - The maximum value. - The clamped value. - - - - Calculates the distance between two vectors. - - The first vector. - The second vector. - When the method completes, contains the distance between the two vectors. - - may be preferred when only the relative distance is needed - and speed is of the essence. - - - - - Calculates the distance between two vectors. - - The first vector. - The second vector. - The distance between the two vectors. - - may be preferred when only the relative distance is needed - and speed is of the essence. - - - - - Calculates the squared distance between two vectors. - - The first vector. - The second vector. - When the method completes, contains the squared distance between the two vectors. - Distance squared is the value before taking the square root. - Distance squared can often be used in place of distance if relative comparisons are being made. - For example, consider three points A, B, and C. To determine whether B or C is further from A, - compare the distance between A and B to the distance between A and C. Calculating the two distances - involves two square roots, which are computationally expensive. However, using distance squared - provides the same information and avoids calculating two square roots. - - - - - Calculates the squared distance between two vectors. - - The first vector. - The second vector. - The squared distance between the two vectors. - Distance squared is the value before taking the square root. - Distance squared can often be used in place of distance if relative comparisons are being made. - For example, consider three points A, B, and C. To determine whether B or C is further from A, - compare the distance between A and B to the distance between A and C. Calculating the two distances - involves two square roots, which are computationally expensive. However, using distance squared - provides the same information and avoids calculating two square roots. - - - - - Calculates the dot product of two vectors. - - First source vector - Second source vector. - When the method completes, contains the dot product of the two vectors. - - - - Calculates the dot product of two vectors. - - First source vector. - Second source vector. - The dot product of the two vectors. - - - - Converts the vector into a unit vector. - - The vector to normalize. - When the method completes, contains the normalized vector. - - - - Converts the vector into a unit vector. - - The vector to normalize. - The normalized vector. - - - - Performs a linear interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the linear interpolation of the two vectors. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a linear interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - The linear interpolation of the two vectors. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a cubic interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the cubic interpolation of the two vectors. - - - - Performs a cubic interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - The cubic interpolation of the two vectors. - - - - Performs a Hermite spline interpolation. - - First source position vector. - First source tangent vector. - Second source position vector. - Second source tangent vector. - Weighting factor. - When the method completes, contains the result of the Hermite spline interpolation. - - - - Performs a Hermite spline interpolation. - - First source position vector. - First source tangent vector. - Second source position vector. - Second source tangent vector. - Weighting factor. - The result of the Hermite spline interpolation. - - - - Performs a Catmull-Rom interpolation using the specified positions. - - The first position in the interpolation. - The second position in the interpolation. - The third position in the interpolation. - The fourth position in the interpolation. - Weighting factor. - When the method completes, contains the result of the Catmull-Rom interpolation. - - - - Performs a Catmull-Rom interpolation using the specified positions. - - The first position in the interpolation. - The second position in the interpolation. - The third position in the interpolation. - The fourth position in the interpolation. - Weighting factor. - A vector that is the result of the Catmull-Rom interpolation. - - - - Returns a vector containing the largest components of the specified vectors. - - The first source vector. - The second source vector. - When the method completes, contains an new vector composed of the largest components of the source vectors. - - - - Returns a vector containing the largest components of the specified vectors. - - The first source vector. - The second source vector. - A vector containing the largest components of the source vectors. - - - - Returns a vector containing the smallest components of the specified vectors. - - The first source vector. - The second source vector. - When the method completes, contains an new vector composed of the smallest components of the source vectors. - - - - Returns a vector containing the smallest components of the specified vectors. - - The first source vector. - The second source vector. - A vector containing the smallest components of the source vectors. - - - - Orthogonalizes a list of vectors. - - The list of orthogonalized vectors. - The list of vectors to orthogonalize. - - Orthogonalization is the process of making all vectors orthogonal to each other. This - means that any given vector in the list will be orthogonal to any other given vector in the - list. - Because this method uses the modified Gram-Schmidt process, the resulting vectors - tend to be numerically unstable. The numeric stability decreases according to the vectors - position in the list so that the first vector is the most stable and the last vector is the - least stable. - - Thrown when or is null. - Thrown when is shorter in length than . - - - - Orthonormalizes a list of vectors. - - The list of orthonormalized vectors. - The list of vectors to orthonormalize. - - Orthonormalization is the process of making all vectors orthogonal to each - other and making all vectors of unit length. This means that any given vector will - be orthogonal to any other given vector in the list. - Because this method uses the modified Gram-Schmidt process, the resulting vectors - tend to be numerically unstable. The numeric stability decreases according to the vectors - position in the list so that the first vector is the most stable and the last vector is the - least stable. - - Thrown when or is null. - Thrown when is shorter in length than . - - - - Transforms a 4D vector by the given rotation. - - The vector to rotate. - The rotation to apply. - When the method completes, contains the transformed . - - - - Transforms a 4D vector by the given rotation. - - The vector to rotate. - The rotation to apply. - The transformed . - - - - Transforms an array of vectors by the given rotation. - - The array of vectors to transform. - The rotation to apply. - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - - - Transforms a 4D vector by the given . - - The source vector. - The transformation . - When the method completes, contains the transformed . - - - - Transforms a 4D vector by the given . - - The source vector. - The transformation . - The transformed . - - - - Transforms an array of 4D vectors by the given . - - The array of vectors to transform. - The transformation . - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - The sum of the two vectors. - - - - Multiplies a vector with another by performing component-wise multiplication equivalent to . - - The first vector to multiply. - The second vector to multiply. - The multiplication of the two vectors. - - - - Assert a vector (return it unchanged). - - The vector to assert (unchanged). - The asserted (unchanged) vector. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - The difference of the two vectors. - - - - Reverses the direction of a given vector. - - The vector to negate. - A vector facing in the opposite direction. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The amount by which to scale the vector. - The vector to scale. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Perform a component-wise addition - - The input vector. - The scalar value to be added on elements - The vector with added scalar for each element. - - - - Perform a component-wise addition - - The input vector. - The scalar value to be added on elements - The vector with added scalar for each element. - - - - Perform a component-wise subtraction - - The input vector. - The scalar value to be subtraced from elements - The vector with subtraced scalar from each element. - - - - Perform a component-wise subtraction - - The input vector. - The scalar value to be subtraced from elements - The vector with subtraced scalar from each element. - - - - Tests for equality between two objects. - - The first value to compare. - The second value to compare. - true if has the same value as ; otherwise, false. - - - - Tests for inequality between two objects. - - The first value to compare. - The second value to compare. - true if has a different value than ; otherwise, false. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns arccos value of p0. - - - - - Does stuff like this: - gyazo.com/7fcb78ea3520e3dbc5b2c0c0f3712617 - Example: - int GetHash = GET_HASH_KEY("fe_menu_version_corona_lobby"); - ACTIVATE_FRONTEND_MENU(GetHash, 0, -1); - BOOL p1 is a toggle to define the game in pause. - int p2 is unknown but -1 always works, not sure why though. - [30/03/2017] ins1de : - the int p2 is actually a component variable. When the pause menu is visible, it opens the tab related to it. - Example : Function.Call(Hash.ACTIVATE_FRONTEND_MENU,-1171018317, 0, 42); - Result : Opens the "Online" tab without pausing the menu, with -1 it opens the map. - - - - - seems to be frequently used with the NETWORK::NET_TO_x natives, particularly with vehicles. It is often the only ROPE:: native in a script. - - - - - Same as SET_PED_ARMOUR, but ADDS 'amount' to the armor the Ped already has. - - - - - Creates a blip for the specified coordinates. You can use `SET_BLIP_` natives to change the blip. - - - - - Returns red ( default ) blip attached to entity. - Example: - Blip blip; //Put this outside your case or option - blip = UI::ADD_BLIP_FOR_ENTITY(YourPedOrBodyguardName); - UI::SET_BLIP_AS_FRIENDLY(blip, true); - - - - - I filled p1-p6 (the floats) as they are as other natives with 6 floats in a row are similar and I see no other method. So if a test from anyone proves them wrong please correct. - p7 (length) determines the length of the spline, affects camera path and duration of transition between previous node and this one - p8 big values ~100 will slow down the camera movement before reaching this node - p9 != 0 seems to override the rotation/pitch (bool?) - - - - - decal types: - public enum DecalTypes - { - splatters_blood = 1010, - splatters_blood_dir = 1015, - splatters_blood_mist = 1017, - splatters_mud = 1020, - splatters_paint = 1030, - splatters_water = 1040, - splatters_water_hydrant = 1050, - splatters_blood2 = 1110, - weapImpact_metal = 4010, - weapImpact_concrete = 4020, - weapImpact_mattress = 4030, - weapImpact_mud = 4032, - weapImpact_wood = 4050, - weapImpact_sand = 4053, - weapImpact_cardboard = 4040, - weapImpact_melee_glass = 4100, - weapImpact_glass_blood = 4102, - weapImpact_glass_blood2 = 4104, - weapImpact_shotgun_paper = 4200, - weapImpact_shotgun_mattress, - weapImpact_shotgun_metal, - weapImpact_shotgun_wood, - weapImpact_shotgun_dirt, - weapImpact_shotgun_tvscreen, - weapImpact_shotgun_tvscreen2, - weapImpact_shotgun_tvscreen3, - weapImpact_melee_concrete = 4310, - weapImpact_melee_wood = 4312, - weapImpact_melee_metal = 4314, - burn1 = 4421, - burn2, - burn3, - burn4, - burn5, - bang_concrete_bang = 5000, - bang_concrete_bang2, - bang_bullet_bang, - bang_bullet_bang2 = 5004, - bang_glass = 5031, - bang_glass2, - solidPool_water = 9000, - solidPool_blood, - solidPool_oil, - solidPool_petrol, - solidPool_mud, - porousPool_water, - porousPool_blood, - porousPool_oil, - porousPool_petrol, - porousPool_mud, - porousPool_water_ped_drip, - liquidTrail_water = 9050 - } - - - - - Example: - GRAPHICS::ADD_ENTITY_ICON(a_0, "MP_Arrow"); - I tried this and nothing happened... - - - - - BOOL isAudible = If explosion makes a sound. - BOOL isInvisible = If the explosion is invisible or not. - this native is missing a new argument: noDamage - nodamage = false: damage || nodamage = true: no damage - enum ExplosionTypes - { - EXPLOSION_GRENADE, - EXPLOSION_GRENADELAUNCHER, - EXPLOSION_STICKYBOMB, - EXPLOSION_MOLOTOV, - EXPLOSION_ROCKET, - EXPLOSION_TANKSHELL, - EXPLOSION_HI_OCTANE, - EXPLOSION_CAR, - EXPLOSION_PLANE, - EXPLOSION_PETROL_PUMP, - EXPLOSION_BIKE, - EXPLOSION_DIR_STEAM, - EXPLOSION_DIR_FLAME, - EXPLOSION_DIR_WATER_HYDRANT, - EXPLOSION_DIR_GAS_CANISTER, - EXPLOSION_BOAT, - EXPLOSION_SHIP_DESTROY, - EXPLOSION_TRUCK, - EXPLOSION_BULLET, - EXPLOSION_SMOKEGRENADELAUNCHER, - EXPLOSION_SMOKEGRENADE, - EXPLOSION_BZGAS, - EXPLOSION_FLARE, - EXPLOSION_GAS_CANISTER, - EXPLOSION_EXTINGUISHER, - EXPLOSION_PROGRAMMABLEAR, - EXPLOSION_TRAIN, - EXPLOSION_BARREL, - EXPLOSION_PROPANE, - EXPLOSION_BLIMP, - EXPLOSION_DIR_FLAME_EXPLODE, - EXPLOSION_TANKER, - EXPLOSION_PLANE_ROCKET, - EXPLOSION_VEHICLE_BULLET, - EXPLOSION_GAS_TANK, - EXPLOSION_BIRD_CRAP - }; - - - - - - - - - - Returns the index of the newly created hospital spawn point. - p3 might be radius? - - - - - NOTE: ones that are -1, 0 - 35 are determined by a function where it gets a TextLabel from a global then runs, - _GET_TEXT_SUBSTRING and depending on what the result is it goes in check order of 0 - 9 then A - Z then z (lowercase). So it will then return 0 - 35 or -1 if it's 'z'. The func to handle that ^^ is func_67 in dialog_handler.c atleast in TU27 Xbox360 scripts. - p0 is -1, 0 - p1 is a char or string (whatever you wanna call it) - p2 is Global 10597 + i * 6. 'i' is a while(i < 70) loop - p3 is again -1, 0 - 35 - p4 is again -1, 0 - 35 - p5 is either 0 or 1 (bool ?) - p6 is either 0 or 1 (The func to determine this is bool) - p7 is either 0 or 1 (The func to determine this is bool) - p8 is either 0 or 1 (The func to determine this is bool) - p9 is 0 - 3 (Determined by func_60 in dialogue_handler.c) - p10 is either 0 or 1 (The func to determine this is bool) - p11 is either 0 or 1 (The func to determine this is bool) - p12 is unknown as in TU27 X360 scripts it only goes to p11. - - - - - Loads a minimap overlay from a GFx file in the current resource. - - - - - hash collision? - - - - - enum ExplosionTypes - { - EXPLOSION_GRENADE, - EXPLOSION_GRENADELAUNCHER, - EXPLOSION_STICKYBOMB, - EXPLOSION_MOLOTOV, - EXPLOSION_ROCKET, - EXPLOSION_TANKSHELL, - EXPLOSION_HI_OCTANE, - EXPLOSION_CAR, - EXPLOSION_PLANE, - EXPLOSION_PETROL_PUMP, - EXPLOSION_BIKE, - EXPLOSION_DIR_STEAM, - EXPLOSION_DIR_FLAME, - EXPLOSION_DIR_WATER_HYDRANT, - EXPLOSION_DIR_GAS_CANISTER, - EXPLOSION_BOAT, - EXPLOSION_SHIP_DESTROY, - EXPLOSION_TRUCK, - EXPLOSION_BULLET, - EXPLOSION_SMOKEGRENADELAUNCHER, - EXPLOSION_SMOKEGRENADE, - EXPLOSION_BZGAS, - EXPLOSION_FLARE, - EXPLOSION_GAS_CANISTER, - EXPLOSION_EXTINGUISHER, - EXPLOSION_PROGRAMMABLEAR, - EXPLOSION_TRAIN, - EXPLOSION_BARREL, - EXPLOSION_PROPANE, - EXPLOSION_BLIMP, - EXPLOSION_DIR_FLAME_EXPLODE, - EXPLOSION_TANKER, - EXPLOSION_PLANE_ROCKET, - EXPLOSION_VEHICLE_BULLET, - EXPLOSION_GAS_TANK, - EXPLOSION_BIRD_CRAP - }; - BOOL isAudible = If explosion makes a sound. - BOOL isInvisible = If the explosion is invisible or not. - - - - - Example: - AI::ADD_PATROL_ROUTE_NODE(2, "WORLD_HUMAN_GUARD_STAND", -193.4915, -2378.864990234375, 10.9719, -193.4915, -2378.864990234375, 10.9719, 3000); - p0 is between 0 and 4 in the scripts. - p1 is "WORLD_HUMAN_GUARD_STAND" or "StandGuard". - p2, p3 and p4 is only one parameter sometimes in the scripts. Most likely a Vector3 hence p2, p3 and p4 are coordinates. - Examples: - AI::ADD_PATROL_ROUTE_NODE(1, "WORLD_HUMAN_GUARD_STAND", l_739[7 -- [[3]] ], 0.0, 0.0, 0.0, 0); - AI::ADD_PATROL_ROUTE_NODE(1, "WORLD_HUMAN_GUARD_STAND", l_B0[17 -- [[44]] ]._f3, l_B0[17 -- [[44]] ]._f3, 2000); - p5, p6 and p7 are for example set to: 1599.0406494140625, 2713.392578125, 44.4309. - p8 is an int, often random set to for example: GAMEPLAY::GET_RANDOM_INT_IN_RANGE(5000, 10000). - - - - - 4 calls in the b617d scripts. The only one with p0 and p2 in clear text: - AUDIO::ADD_PED_TO_CONVERSATION(5, l_AF, "DINAPOLI"); - ================================================= - One of the 2 calls in dialogue_handler.c p0 is in a while-loop, and so is determined to also possibly be 0 - 15. - Based on it asking if does_entity_exist for the global I have determined that p1 is, in fact, the ped, but could be wrong. - - - - - Can't select void. This function returns nothing. The hash of the created relationship group is output in the second parameter. - - - - - Experimental natives, please do not use in a live environment. - - - - - Creates a rope at the specific position, that extends in the specified direction when not attached to any entities. - __ - Add_Rope(pos.x,pos.y,pos.z,0.0,0.0,0.0,20.0,4,20.0,1.0,0.0,false,false,false,5.0,false,NULL) - When attached, Position<vector> does not matter - When attached, Angle<vector> does not matter - Rope Type: - 4 and bellow is a thick rope - 5 and up are small metal wires - 0 crashes the game - Max_length - Rope is forced to this length, generally best to keep this the same as your rope length. - Rigid - If max length is zero, and this is set to false the rope will become rigid (it will force a specific distance, what ever length is, between the objects). - breakable - Whether or not shooting the rope will break it. - unkPtr - unknown ptr, always 0 in orig scripts - __ - Lengths can be calculated like so: - float distance = abs(x1 - x2) + abs(y1 - y2) + abs(z1 - z2); // Rope length - NOTES: - Rope does NOT interact with anything you attach it to, in some cases it make interact with the world AFTER it breaks (seems to occur if you set the type to -1). - Rope will sometimes contract and fall to the ground like you'd expect it to, but since it doesn't interact with the world the effect is just jaring. - - - - - BRAIN::ADD_SCRIPT_TO_RANDOM_PED("pb_prostitute", ${s_f_y_hooker_01}, 100, 0); - ----- - Hardcoded to not work in Multiplayer. - ------ - Which I'm sure can easily be bypassed by nop'ing the branch preventing it from working if you are in multiplayer lol. Which would still be pointless since you don't need this to make peds do what you wish. - - - - - duration is float here - Event types- camx.me/gtav/tasks/shockingevents.txt - - - - - duration is float here - Event types - camx.me/gtav/tasks/shockingevents.txt - - - - - See description of [`ADD_STUNT_JUMP_ANGLED`](#_0xBBE5D803A5360CBF) for detailed info. The only difference really is this one does not have the radius (or angle, not sure) floats parameters for entry and landing zones. - - - - - Creates a new stunt jump. - - The radius1 and radius2 might actually not be a radius at all, but that's what it seems to me testing them in-game. But they may be 'angle' floats instead, considering this native is named ADD_STUNT_JUMP\_**ANGLED**. - - Info about the specific 'parameter sections': - - **x1, y1, z1, x2, y2, z2 and radius1:** - - First coordinates are for the jump entry area, and the radius that will be checked around that area. So if you're not exactly within the coordinates, but you are within the outter radius limit then it will still register as entering the stunt jump. Note as mentioned above, the radius is just a guess, I'm not really sure about it's exact purpose. - - **x3, y3, z3, x4, y4, z4 and radius2:** - - Next part is the landing area, again starting with the left bottom (nearest to the stunt jump entry zone) coordinate, and the second one being the top right furthest away part of the landing area. Followed by another (most likely) radius float, this is usually slightly larger than the entry zone 'radius' float value, just because you have quite a lot of places where you can land (I'm guessing). - - **camX, camY and camZ:** - - The final coordinate in this native is the Camera position. Rotation and zoom/FOV is managed by the game itself, you just need to provide the camera location. - - **unk1, unk2 and unk3:** - - Not sure what these are for, but they're always `150, 0, 0` in decompiled scripts. - - Visualized example in-game: - - ![](https://d.fivem.dev/2019-03-15_18-24_c7802_846.png) - - Here is a list of almost all of the stunt jumps from GTA V (taken from decompiled scripts): <https://pastebin.com/EW1jBPkY> - - - - - Adds an arbitrary string as a text component placeholder, replacing `~a~` in the current text command's text label. - - See the documentation on text formatting for more information. - - - - - It adds the localized text of the specified GXT entry name. Eg. if the argument is GET_HASH_KEY("ES_HELP"), adds "Continue". Just uses a text labels hash key - - - - - Adds a timer (e.g. "00:00:00:000"). The appearance of the timer depends on the flags, which needs more research. - - - - - This native (along with 0x5F68520888E69014 and 0x6C188BE134E074AA) do not actually filter anything. They simply add the provided text (as of 944) - - - - - Hash collision! - _IS_MP_GAMER_TAG_ACTIVE_2 - - - - - x, y, z: offset in world coords from some entity. - - - - - Example from michael2 script. - CAM::ANIMATED_SHAKE_CAM(l_5069, "shake_cam_all@", "light", "", 1f); - - - - - damages a ped with the given amount - ---- - armorFirst means it will damage/lower the armor first before damaging the player. - setting damageAmount to a negative amount will cause the player or the armor (depending on armorFirst) to be healed by damageAmount instead. - - - - - Documented here: - gtaforums.com/topic/885669-precisely-define-object-physics/ - gtaforums.com/topic/887362-apply-forces-and-momentums-to-entityobject/ - forceFlags: - First bit (lowest): Strong force flag, factor 100 - Second bit: Unkown flag - Third bit: Momentum flag=1 (vector (x,y,z) is a momentum, more research needed) - If higher bits are unequal 0 the function doesn't applay any forces at all. - (As integer possible values are 0-7) - 0: weak force - 1: strong force - 2: same as 0 (2nd bit?) - 3: same as 1 - 4: weak momentum - 5: strong momentum - 6: same as 4 - 7: same as 5 - isDirectionRel: vector defined in local (body-fixed) coordinate frame - isForceRel: if true the force gets multiplied with the objects mass (this is why it was known as highForce) and different objects will have the same acceleration. - - - - - Found one occurence in re_crashrescue.c4 - PED::APPLY_PED_BLOOD(l_4B, 3, 0.0, 0.0, 0.0, "wound_sheet"); - - - - - APPLY_PED_DAMAGE_DECAL(ped, 1, 0.5f, 0.513f, 0f, 1f, unk, 0, 0, "blushing"); - - - - - Damage Packs: - "SCR_TrevorTreeBang" - "HOSPITAL_0" - "HOSPITAL_1" - "HOSPITAL_2" - "HOSPITAL_3" - "HOSPITAL_4" - "HOSPITAL_5" - "HOSPITAL_6" - "HOSPITAL_7" - "HOSPITAL_8" - "HOSPITAL_9" - "SCR_Dumpster" - "BigHitByVehicle" - "SCR_Finale_Michael_Face" - "SCR_Franklin_finb" - "SCR_Finale_Michael" - "SCR_Franklin_finb2" - "Explosion_Med" - "SCR_Torture" - "SCR_TracySplash" - "Skin_Melee_0" - Additional damage packs: - gist.github.com/alexguirre/f3f47f75ddcf617f416f3c8a55ae2227 - - - - - Called in the gamescripts like: - APP::APP_SET_APP("car"); - APP::APP_SET_APP("dog"); - - - - - Appears to return false if any window is broken. - - - - - Returns false if every seat is occupied. - - - - - is this like strcmp?? - - - - - Returns arcsin value of p0. - - - - - Routes: "1_FIBStairs", "2_FIBStairs", "3_FIBStairs", "4_FIBStairs", "5_FIBStairs", "5_TowardsFire", "6a_FIBStairs", "7_FIBStairs", "8_FIBStairs", "Aprtmnt_1", "AssAfterLift", "ATM_1", "coroner2", "coroner_stairs", "f5_jimmy1", "fame1", "family5b", "family5c", "Family5d", "family5d", "FIB_Glass1", "FIB_Glass2", "FIB_Glass3", "finaBroute1A", "finalb1st", "finalB1sta", "finalbround", "finalbroute2", "Hairdresser1", "jan_foyet_ft_door", "Jo_3", "Lemar1", "Lemar2", "mansion_1", "Mansion_1", "pols_1", "pols_2", "pols_3", "pols_4", "pols_5", "pols_6", "pols_7", "pols_8", "Pro_S1", "Pro_S1a", "Pro_S2", "Towards_case", "trev_steps", "tunrs1", "tunrs2", "tunrs3", "Wave01457s" - - - - - Returns arctan value of p0. - - - - - Last param determines if its relative to the Entity - - - - - Attaches entity 1 to entity 2. - - - - - Attaches entity1 to bone (boneIndex) of entity2. - boneIndex - this is different to boneID, use GET_PED_BONE_INDEX to get the index from the ID. use the index for attaching to specific bones. entity1 will be attached to entity2's centre if bone index given doesn't correspond to bone indexes for that entity type. - useSoftPinning - when 2 entities with collision collide and form into a ball they will break the attachment of the entity that they were attached to. Or when an entity is attached far away and then the resets. - collision - controls collision between the two entities (FALSE disables collision). - isPed - pitch doesnt work when false and roll will only work on negative numbers (only peds) - vertexIndex - position of vertex - fixedRot - if false it ignores entity vector - - - - - breakForce is the amount of force required to break the bond. - fixedRot - if false it ignores entity vector - p15 - is 1 or 0 in scripts - unknoun what it does - collision - controls collision between the two entities (FALSE disables collision). - teleport - do not teleport entity to be attached to the position of the bone Index of the target entity (if 1, entity will not be teleported to target bone) - p18 - is always 2 in scripts. - ------------------------- - teleport is not exactly "doNotTeleport". What it actually does is the following: - if true, entities will be attached as if loosely tethered, up to the maximum offset position specified. Almost as if attached by an invisible rope. - if false, entities will be attached in a fixed position as specified in the offset position. - When p15 = true, it seems to force teleport to false. - It also lets the Rotation params actually work. - - - - - The position supplied can be anywhere, and the entity should anchor relative to that point from it's origin. - - - - - Might be more appropriate in AUDIO? - - - - - HookOffset defines where the hook is attached. leave at 0 for default attachment. - When using the tow truck online, this is not used (set a breakpoint and never called during tow truck attachment) - - - - - Push a function from the Scaleform onto the stack - - - - - Starts frontend (pause menu) scaleform movie methods. - This can be used when you want to make custom frontend menus, and customize things like images or text in the menus etc. - - Use [`BEGIN_SCALEFORM_MOVIE_METHOD_ON_FRONTEND_HEADER`](#_0xB9449845F73F5E9C) for header scaleform functions. - - - - - Starts frontend (pause menu) scaleform movie methods for header options. - - Use [`BEGIN_SCALEFORM_MOVIE_METHOD_ON_FRONTEND`](#_0xAB58C27C2E6123C6) to customize the content inside the frontend menus. - - - - - clears a print text command with this text - - - - - Used to be known as _SET_TEXT_COMPONENT_FORMAT - - - - - The following were found in the decompiled script files: - STRING, TWOSTRINGS, NUMBER, PERCENTAGE, FO_TWO_NUM, ESMINDOLLA, ESDOLLA, MTPHPER_XPNO, AHD_DIST, CMOD_STAT_0, CMOD_STAT_1, CMOD_STAT_2, CMOD_STAT_3, DFLT_MNU_OPT, F3A_TRAFDEST, ES_HELP_SOC3 - ESDOLLA - ESMINDOLLA - cash (negative) - Used to be known as _SET_TEXT_ENTRY - - - - - nothin doin. - BOOL Message(char* text) - { - BEGIN_TEXT_COMMAND_IS_MESSAGE_DISPLAYED("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - return END_TEXT_COMMAND_IS_MESSAGE_DISPLAYED(); - } - - - - - BOOL IsContextActive(char *ctx) - { - BEGIN_TEXT_COMMAND_IS_THIS_HELP_MESSAGE_BEING_DISPLAYED(ctx); - return END_TEXT_COMMAND_IS_THIS_HELP_MESSAGE_BEING_DISPLAYED(0); - } - - - - - Used to be known as _SET_TEXT_ENTRY_2 - void ShowSubtitle(char *text) - { - BEGIN_TEXT_COMMAND_PRINT("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - END_TEXT_COMMAND_PRINT(2000, 1); - } - - - - - Previously called _BEGIN_TEXT_COMPONENT - Called prior to adding a text component to the UI. After doing so, GRAPHICS::END_TEXT_COMMAND_SCALEFORM_STRING is called. - Examples: - GRAPHICS::BEGIN_TEXT_COMMAND_SCALEFORM_STRING("NUMBER"); - UI::ADD_TEXT_COMPONENT_INTEGER(GAMEPLAY::ABSI(a_1)); - GRAPHICS::END_TEXT_COMMAND_SCALEFORM_STRING(); - GRAPHICS::BEGIN_TEXT_COMMAND_SCALEFORM_STRING("STRING"); - UI::_ADD_TEXT_COMPONENT_STRING(a_2); - GRAPHICS::END_TEXT_COMMAND_SCALEFORM_STRING(); - GRAPHICS::BEGIN_TEXT_COMMAND_SCALEFORM_STRING("STRTNM2"); - UI::_0x17299B63C7683A2B(v_3); - UI::_0x17299B63C7683A2B(v_4); - GRAPHICS::END_TEXT_COMMAND_SCALEFORM_STRING(); - GRAPHICS::BEGIN_TEXT_COMMAND_SCALEFORM_STRING("STRTNM1"); - UI::_0x17299B63C7683A2B(v_3); - GRAPHICS::END_TEXT_COMMAND_SCALEFORM_STRING(); - - - - - Starts a text command to change the name of a blip displayed in the pause menu. - - This should be paired with [`END_TEXT_COMMAND_SET_BLIP_NAME`](#_0xBC38B49BCB83BC9B), once adding all required text components. - - - - - Plays the siren sound of a vehicle which is otherwise activated when fastly double-pressing the horn key. - Only works on vehicles with a police siren. - - - - - Calculates the travel distance between a set of points. - Doesn't seem to correlate with distance on gps sometimes. - - - - - This is similar to the PushScaleformMovieFunction natives, except it calls in the `TIMELINE` of a minimap overlay. - - - - - Calls the Scaleform function. - - - - - Cancels the currently executing event. - - - - - All music event names found in the b617d scripts: pastebin.com/GnYt0R3P - - - - - Prevents the ped from going limp. - [Example: Can prevent peds from falling when standing on moving vehicles.] - - - - - This one is weird and seems to return a TRUE state regardless of whether the phone is visible on screen or tucked away. - I can confirm the above. This function is hard-coded to always return 1. - - - - - if (CAN_REGISTER_MISSION_ENTITIES(20, 20, 20, 10)) - { - } - - - - - modelHash (p1) was always 0 in R* scripts - - - - - this returns if you can use the weapon while using a parachute - - - - - Does something similar to INTERIOR::DISABLE_INTERIOR - - - - - I'm guessing this rounds a float value up to the next whole number, and FLOOR rounds it down - - - - - hash collision??? - - - - - b2 and/or b3 maybe got something to do with keeping values from the last ped. Both of them set to 1 works great. <br/><br/>Examples from the decompiled scripts:<br/><br/>PLAYER::CHANGE_PLAYER_PED(PLAYER::PLAYER_ID(), l_5C0[4 -- [[14]] ], 0, 1);<br/>PLAYER::CHANGE_PLAYER_PED(PLAYER::PLAYER_ID(), a_0[a_0._f7 -- [[1]] ], a_2, 0);<br/><br/><br/>===========================================================<br/>The only way I ever got this to work in GTA Online once is by setting both to 0, 0. However, when you switch from your online character to whomever, your character will start walking away 'as if you left the game.' If from there you attempt to call this native once more to switch back to you online ped. You will freeze or if you try changing to another ped. I've tried all posibilities so far.<br/>1, 1 (Freeze), 0, 0(Works Once), 1, 0 & 0, 1 (Freeze). Note of course trying to call this on another online player will crash. Anyone have any idea if implementing a blr within the xex itself on a possible check if it would prevent this freezing?<br/>=========================================================== - - - - - Removes broken glass particles. - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - This function also has a p2, unknown. Signature AUDIO::CLEAR_AMBIENT_ZONE_STATE(char* zoneName, bool p1, Any p2); - Still needs more research. - Here are the names I've found: pastebin.com/AfA0Qjyv - New Ambient Zone List (Combind with old): pastebin.com/h8BsKgUD -DasChaos - - - - - Example: CLEAR_AREA(0, 0, 0, 30, true, false, false, false); - - - - - I looked through the PC scripts that this site provides you with a link to find. It shows the last param mainly uses, (0, 2, 6, 16, and 17) so I am going to assume it is a type of flag. - - - - - Example: CLEAR_AREA_OF_PEDS(0, 0, 0, 10000, 1); - - - - - Example: CLEAR_AREA_OF_VEHICLES(0, 0, 0, 10000, false, false, false, false, false); - - - - - This sets bit [offset] of [address] to off. - Example: - GAMEPLAY::CLEAR_BIT(&bitAddress, 1); - To check if this bit has been enabled: - GAMEPLAY::IS_BIT_SET(bitAddress, 1); // will return 0 afterwards - - - - - Resets the screen's draw-origin which was changed by the function GRAPHICS::SET_DRAW_ORIGIN(...) back to x=0,y=0. - See GRAPHICS::SET_DRAW_ORIGIN(...) for further information. - - - - - p0 looks like int in script - - - - - Clears the GPS flags. Only the script that originally called SET_GPS_FLAGS can clear them. - Doesn't seem like the flags are actually read by the game at all. - - - - - Somehow related to changing ped's clothes. - - - - - p1: from 0 to 5 in the b617d scripts. - p2: "blushing" and "ALL" found in the b617d scripts. - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - Removes the scubagear (for mp male: component id: 8, drawableId: 123, textureId: any) from peds. Does not play the 'remove scuba gear' animation, but instantly removes it. - - - - - Immediately stops the pedestrian from whatever it's doing. They stop fighting, animations, etc. they forget what they were doing. - - - - - It clears the wetness of the selected Ped/Player. Clothes have to be wet to notice the difference. - - - - - This executes at the same as speed as PLAYER::SET_PLAYER_WANTED_LEVEL(player, 0, false); - PLAYER::GET_PLAYER_WANTED_LEVEL(player); executes in less than half the time. Which means that it's worth first checking if the wanted level needs to be cleared before clearing. However, this is mostly about good code practice and can important in other situations. The difference in time in this example is negligible. - - - - - Only used once in the decompiled scripts. Seems to be related to scripted vehicle generators. - Modified example from "am_imp_exp.c4", line 6418: - -- [[ popSchedules[0] = ZONE::GET_ZONE_POPSCHEDULE(ZONE::GET_ZONE_AT_COORDS(891.3, 807.9, 188.1)); - etc. - ]] - STREAMING::SET_MODEL_AS_NO_LONGER_NEEDED(vehicleHash); - ZONE::CLEAR_POPSCHEDULE_OVERRIDE_VEHICLE_MODEL(popSchedules[index]); - - - - - Clears the relationship between two groups. This should be called twice (once for each group). - Relationship types: - 0 = Companion - 1 = Respect - 2 = Like - 3 = Neutral - 4 = Dislike - 5 = Hate - 255 = Pedestrians - (Credits: Inco) - Example: - PED::CLEAR_RELATIONSHIP_BETWEEN_GROUPS(2, l_1017, 0xA49E591C); - PED::CLEAR_RELATIONSHIP_BETWEEN_GROUPS(2, 0xA49E591C, l_1017); - - - - - **This native does absolutely nothing, just a nullsub** - - - - - p0: found arguments in the b617d scripts: pastebin.com/X5akCN7z - - - - - thisScriptCheck - can be destroyed if it belongs to the calling script. - Example of Cloning Your Player: - CLONE_PED(PLAYER_PED_ID(), GET_ENTITY_HEADING(PLAYER_PED_ID()), 0, 1); - - - - - What exactly is the difference? What does this exactly do by chance? - ^ Copies ped's components and props to targetPed. - --------------------------------------------------------------------------------- - | Internally has a 3rd param (bool) which is set to true by default | - - - - - Commits the backing pixels to the specified runtime texture. - - - - - Compares two strings up to a specified number of characters. - Parameters: - str1 - String to be compared. - str2 - String to be compared. - matchCase - Comparison will be case-sensitive. - maxLength - Maximum number of characters to compare. A value of -1 indicates an infinite length. - Returns: - A value indicating the relationship between the strings: - <0 - The first non-matching character in 'str1' is less than the one in 'str2'. (e.g. 'A' < 'B', so result = -1) - 0 - The contents of both strings are equal. - >0 - The first non-matching character in 'str1' is less than the one in 'str2'. (e.g. 'B' > 'A', so result = 1) - Examples: - GAMEPLAY::COMPARE_STRINGS("STRING", "string", false, -1); // 0; equal - GAMEPLAY::COMPARE_STRINGS("TESTING", "test", false, 4); // 0; equal - GAMEPLAY::COMPARE_STRINGS("R2D2", "R2xx", false, 2); // 0; equal - GAMEPLAY::COMPARE_STRINGS("foo", "bar", false, -1); // 4; 'f' > 'b' - GAMEPLAY::COMPARE_STRINGS("A", "A", true, 1); // 0; equal - When comparing case-sensitive strings, lower-case characters are greater than upper-case characters: - GAMEPLAY::COMPARE_STRINGS("A", "a", true, 1); // -1; 'A' < 'a' - GAMEPLAY::COMPARE_STRINGS("a", "A", true, 1); // 1; 'a' > 'A' - - - - - Works for vehicles with a retractable landing gear - landing gear states: - 0: Deployed - 1: Closing - 2: Opening - 3: Retracted - - - - - Forces the ped to use the mounted weapon. - Returns false if task is not possible. - - - - - Used for doing money drop - Pickup hashes: pastebin.com/8EuSv2r1 - - - - - "DEFAULT_SCRIPTED_CAMERA" - "DEFAULT_ANIMATED_CAMERA" - "DEFAULT_SPLINE_CAMERA" - "DEFAULT_SCRIPTED_FLY_CAMERA" - "TIMED_SPLINE_CAMERA" - - - - - CAM::_GET_GAMEPLAY_CAM_COORDS can be used instead of posX,Y,Z - CAM::_GET_GAMEPLAY_CAM_ROT can be used instead of rotX,Y,Z - CAM::_80EC114669DAEFF4() can be used instead of p7 (Possible p7 is FOV parameter. ) - p8 ??? - p9 uses 2 by default - - - - - camName is always set to "DEFAULT_SCRIPTED_CAMERA" in Rockstar's scripts. - ------------ - Camera names found in the b617d scripts: - "DEFAULT_ANIMATED_CAMERA" - "DEFAULT_SCRIPTED_CAMERA" - "DEFAULT_SCRIPTED_FLY_CAMERA" - "DEFAULT_SPLINE_CAMERA" - ------------ - Side Note: It seems p8 is basically to represent what would be the bool p1 within CREATE_CAM native. As well as the p9 since it's always 2 in scripts seems to represent what would be the last param within SET_CAM_ROT native which normally would be 2. - - - - - Creates a checkpoint. Returns the handle of the checkpoint. - 20/03/17 : Attention, checkpoints are already handled by the game itself, so you must not loop it like markers. - Parameters: - * type - The type of checkpoint to create. See below for a list of checkpoint types. - * pos1 - The position of the checkpoint. - * pos2 - The position of the next checkpoint to point to. - * radius - The radius of the checkpoint. - * color - The color of the checkpoint. - * reserved - Special parameter, see below for details. Usually set to 0 in the scripts. - Checkpoint types: - 0-4---------Cylinder: 1 arrow, 2 arrow, 3 arrows, CycleArrow, Checker - 5-9---------Cylinder: 1 arrow, 2 arrow, 3 arrows, CycleArrow, Checker - 10-14-------Ring: 1 arrow, 2 arrow, 3 arrows, CycleArrow, Checker - 15-19-------1 arrow, 2 arrow, 3 arrows, CycleArrow, Checker - 20-24-------Cylinder: 1 arrow, 2 arrow, 3 arrows, CycleArrow, Checker - 25-29-------Cylinder: 1 arrow, 2 arrow, 3 arrows, CycleArrow, Checker - 30-34-------Cylinder: 1 arrow, 2 arrow, 3 arrows, CycleArrow, Checker - 35-38-------Ring: Airplane Up, Left, Right, UpsideDown - 39----------? - 40----------Ring: just a ring - 41----------? - 42-44-------Cylinder w/ number (uses 'reserved' parameter) - 45-47-------Cylinder no arrow or number - If using type 42-44, reserved sets number / number and shape to display - 0-99------------Just numbers (0-99) - 100-109-----------------Arrow (0-9) - 110-119------------Two arrows (0-9) - 120-129----------Three arrows (0-9) - 130-139----------------Circle (0-9) - 140-149------------CycleArrow (0-9) - 150-159----------------Circle (0-9) - 160-169----Circle w/ pointer (0-9) - 170-179-------Perforated ring (0-9) - 180-189----------------Sphere (0-9) - - - - - Creates a DUI browser. This can be used to draw on a runtime texture using CREATE_RUNTIME_TEXTURE_FROM_DUI_HANDLE. - - - - - Creates a new ped group. - Groups can contain up to 8 peds. - The parameter is unused. - Returns a handle to the created group, or 0 if a group couldn't be created. - - - - - enum IncidentTypes - { - FireDepartment = 3, - Paramedics = 5, - Police = 7, - PedsInCavalcades = 11, - Merryweather = 14 - }; - As for the 'police' incident, it will call police cars to you, but unlike PedsInCavalcades & Merryweather they won't start shooting at you unless you shoot first or shoot at them. The top 2 however seem to cancel theirselves if there is noone dead around you or a fire. I only figured them out as I found out the 3rd param is definately the amountOfPeople and they called incident 3 in scripts with 4 people (which the firetruck has) and incident 5 with 2 people (which the ambulence has). The 4 param I cant say is radius, but for the pedsInCavalcades and Merryweather R* uses 0.0f and for the top 3 (Emergency Services) they use 3.0f. - Side Note: It seems calling the pedsInCavalcades or Merryweather then removing it seems to break you from calling the EmergencyEvents and I also believe pedsInCavalcades. (The V cavalcades of course not IV). - Side Note 2: I say it breaks as if you call this proper, - if(CREATE_INCIDENT) etc it will return false if you do as I said above. - ===================================================== - - - - - p0 could be type (valueused in scripts: 14, 7, 5, 3, 11) - p1 is a return from get_player_ped() in am_gang_call.c, but player_ped_id() in other (non am) scripts. - p3 is usually 0f or 3f - ===================================================== - enum IncidentTypes - { - FireDepartment = 3, - Paramedics = 5, - Police = 7, - PedsInCavalcades = 11, - Merryweather = 14 - }; - As for the 'police' incident, it will call police cars to you, but unlike PedsInCavalcades & Merryweather they won't start shooting at you unless you shoot first or shoot at them. The top 2 however seem to cancel theirselves if there is noone dead around you or a fire. I only figured them out as I found out the 3rd param is definately the amountOfPeople and they called incident 3 in scripts with 4 people (which the firetruck has) and incident 5 with 2 people (which the ambulence has). The 4 param I cant say is radius, but for the pedsInCavalcades and Merryweather R* uses 0.0f and for the top 3 (Emergency Services) they use 3.0f. - Side Note: It seems calling the pedsInCavalcades or Merryweather then removing it seems to break you from calling the EmergencyEvents and I also believe pedsInCavalcades. (The V cavalcades of course not IV). - Side Note 2: I say it breaks as if you call this proper, - if(CREATE_INCIDENT) etc it will return false if you do as I said above. - ===================================================== - - - - - Train models HAVE TO be loaded (requested) before you use this. - For variation 15 - request: - freight - freightcar - freightgrain - freightcont1 - freightcont2 - freighttrailer - - - - - Creates a mobile phone of the specified type. - Possible phone types: - 0 - Default phone / Michael's phone - 1 - Trevor's phone - 2 - Franklin's phone - 4 - Prologue phone - These values represent bit flags, so a value of '3' would toggle Trevor and Franklin's phones together, causing unexpected behavior and most likely crash the game. - - - - - p5 = sets as true in scripts - Same as the comment for CREATE_MODEL_SWAP unless for some reason p5 affects it this only works with objects as well. - Network players do not see changes done with this. - - - - - Only works with objects! - Network players do not see changes done with this. - - - - - Spawns one or more money pickups. - x: The X-component of the world position to spawn the money pickups at. - y: The Y-component of the world position to spawn the money pickups at. - z: The Z-component of the world position to spawn the money pickups at. - value: The combined value of the pickups (in dollars). - amount: The number of pickups to spawn. - model: The model to use, or 0 for default money model. - Example: - CREATE_MONEY_PICKUPS(x, y, z, 1000, 3, 0x684a97ae); - Spawns 3 spray cans that'll collectively give $1000 when picked up. (Three spray cans, each giving $334, $334, $332 = $1000). - ============================================== - Max is 2000 in MP. So if you put the amount to 20, but the value to $400,000 eg. They will only be able to pickup 20 - $2,000 bags. So, $40,000 - - - - - Creates a new NaturalMotion message. - startImmediately: If set to true, the character will perform the message the moment it receives it by GIVE_PED_NM_MESSAGE. If false, the Ped will get the message but won't perform it yet. While it's a boolean value, if negative, the message will not be initialized. - messageId: The ID of the NaturalMotion message. - If a message already exists, this function does nothing. A message exists until the point it has been successfully dispatched by GIVE_PED_NM_MESSAGE. - - - - - thisScriptCheck - can be destroyed if it belongs to the calling script. - p5 - last parameter does not mean object handle is returned - maybe a quick view in disassembly will tell us what is actually does - ---------- - prop_tt_screenstatic (0xE2E039BC) is handled different. Not sure how yet but it I know it is. - - - - - thisScriptCheck - can be destroyed if it belongs to the calling script. - p5 - does not mean object handle is returned - maybe a quick view in disassembly will tell us what is actually does - ---------- - prop_tt_screenstatic (0xE2E039BC) is handled different. Not sure how yet but it I know it is. - - - - - thisScriptCheck - can be destroyed if it belongs to the calling script. - p7 - last parameter does not mean ped handle is returned - maybe a quick view in disassembly will tell us what is actually does - *Heading*: 0.0 - *Heading* is the Z axis spawn rotation of the ped 0->5th parameter. - Ped Types: - enum PedTypes - { - PED_TYPE_PLAYER_0,// michael - PED_TYPE_PLAYER_1,// franklin - PED_TYPE_NETWORK_PLAYER, // mp character - PED_TYPE_PLAYER_2,// trevor - PED_TYPE_CIVMALE, - PED_TYPE_CIVFEMALE, - PED_TYPE_COP, - PED_TYPE_GANG_ALBANIAN, - PED_TYPE_GANG_BIKER_1, - PED_TYPE_GANG_BIKER_2, - PED_TYPE_GANG_ITALIAN, - PED_TYPE_GANG_RUSSIAN, - PED_TYPE_GANG_RUSSIAN_2, - PED_TYPE_GANG_IRISH, - PED_TYPE_GANG_JAMAICAN, - PED_TYPE_GANG_AFRICAN_AMERICAN, - PED_TYPE_GANG_KOREAN, - PED_TYPE_GANG_CHINESE_JAPANESE, - PED_TYPE_GANG_PUERTO_RICAN, - PED_TYPE_DEALER, - PED_TYPE_MEDIC, - PED_TYPE_FIREMAN, - PED_TYPE_CRIMINAL, - PED_TYPE_BUM, - PED_TYPE_PROSTITUTE, - PED_TYPE_SPECIAL, - PED_TYPE_MISSION, - PED_TYPE_SWAT, - PED_TYPE_ANIMAL, - PED_TYPE_ARMY - }; - - - - - thisScriptCheck - can be destroyed if it belongs to the calling script. - p5 - last parameter does not mean ped handle is returned - maybe a quick view in disassembly will tell us what is actually does - Ped Types: - enum ePedType - { - PED_TYPE_PLAYER_0 = 0, - PED_TYPE_PLAYER_1 = 1, - PED_TYPE_PLAYER_2 = 3, - PED_TYPE_CIVMALE = 4, - PED_TYPE_CIVFEMALE = 5, - PED_TYPE_COP = 6, - PED_TYPE_UNKNOWN_7 = 7, - PED_TYPE_UNKNOWN_12 = 12, // gang member? - PED_TYPE_UNKNOWN_19 = 19, - PED_TYPE_MEDIC = 20, - PED_TYPE_FIREMAN = 21, - PED_TYPE_UNKNOWN_22 = 22, - PED_TYPE_UNKNOWN_25 = 25, - PED_TYPE_UNKNOWN_26 = 26, - PED_TYPE_SWAT = 27, - PED_TYPE_ANIMAL = 28, - PED_TYPE_ARMY = 29 - }; - - - - - Pickup hashes: pastebin.com/8EuSv2r1 - - - - - Pickup hashes: pastebin.com/8EuSv2r1 - flags: - 8 (1 << 3): place on ground - 512 (1 << 9): spin around - - - - - Drops the Hook/Magnet on a cargobob - state - enum eCargobobHook - { - CARGOBOB_HOOK = 0, - CARGOBOB_MAGNET = 1, - }; - - - - - Pickup hashes: pastebin.com/8EuSv2r1 - - - - - vb.net - Dim ped_handle As Integer - With Game.Player.Character - Dim pos As Vector3 = .Position + .ForwardVector * 3 - ped_handle = Native.Function.Call(Of Integer)(Hash.CREATE_RANDOM_PED, pos.X, pos.Y, pos.Z) - End With - Creates a Ped at the specified location, returns the Ped Handle. - Ped will not act until SET_PED_AS_NO_LONGER_NEEDED is called. - - - - - Creates a blank runtime texture. - - - - - Creates a runtime texture from a DUI handle. - - - - - Creates a runtime texture from the specified file in the current resource. - - - - - Creates a runtime texture dictionary with the specified name. - Example: - - ```lua - local txd = CreateRuntimeTxd('meow') - ``` - - - - - Creates a script vehicle generator at the given coordinates. Most parameters after the model hash are unknown. - Parameters: - a/w/s - Generator position - heading - Generator heading - p4 - Unknown (always 5.0) - p5 - Unknown (always 3.0) - modelHash - Vehicle model hash - p7/8/9/10 - Unknown (always -1) - p11 - Unknown (usually TRUE, only one instance of FALSE) - p12/13 - Unknown (always FALSE) - p14 - Unknown (usally FALSE, only two instances of TRUE) - p15 - Unknown (always TRUE) - p16 - Unknown (always -1) - Vector3 coords = GET_ENTITY_COORDS(PLAYER_PED_ID(), 0); CREATE_SCRIPT_VEHICLE_GENERATOR(coords.x, coords.y, coords.z, 1.0f, 5.0f, 3.0f, GET_HASH_KEY("adder"), -1. -1, -1, -1, -1, true, false, false, false, true, -1); - - - - - p6 always 2 (but it doesnt seem to matter...) - roll and pitch 0 - yaw to Ped.rotation - - - - - Creates a tracked point, useful for checking the visibility of a 3D point on screen. - - - - - thisScriptCheck - can be destroyed if it belongs to the calling script. - - - - - Now has 8 params. - - - - - some camera effect that is used in the drunk-cheat, and turned off (by setting it to 0.0) along with the shaking effects once the drunk cheat is disabled. - - - - - Example: - if (!DATAFILE::_BEDB96A7584AA8CF()) - { - if (!g_109E3) - { - if (((sub_d4f() == 2) == 0) && (!NETWORK::NETWORK_IS_GAME_IN_PROGRESS())) - { - if (NETWORK::NETWORK_IS_CLOUD_AVAILABLE()) - { - g_17A8B = 0; - } - if (!g_D52C) - { - sub_730(); - } - } - } - } - - - - - Returns whether or not the specified property is set for the entity. - - - - - Is property of that type. - enum eDecorType - { - DECOR_TYPE_FLOAT = 1, - DECOR_TYPE_BOOL, - DECOR_TYPE_INT, - DECOR_TYPE_UNK, - DECOR_TYPE_TIME - }; - - - - - Found this in standard_global_init.c4 line 1898 - void sub_523a() { - DECORATOR::DECOR_REGISTER("Player_Vehicle", 3); - DECORATOR::DECOR_REGISTER("PV_Slot", 3); - DECORATOR::DECOR_REGISTER("Previous_Owner", 3); - DECORATOR::DECOR_REGISTER("Sprayed_Vehicle_Decorator", 2); - DECORATOR::DECOR_REGISTER("Sprayed_Vehicle_Timer_Dec", 5); - DECORATOR::DECOR_REGISTER("Vehicle_Reward", 3); - DECORATOR::DECOR_REGISTER("Vehicle_Reward_Teams", 3); - DECORATOR::DECOR_REGISTER("Skill_Blocker", 2); - DECORATOR::DECOR_REGISTER("TargetPlayerForTeam", 3); - DECORATOR::DECOR_REGISTER("XP_Blocker", 2); - DECORATOR::DECOR_REGISTER("CrowdControlSetUp", 3); - DECORATOR::DECOR_REGISTER("Bought_Drugs", 2); - DECORATOR::DECOR_REGISTER("HeroinInPossession", 1); - DECORATOR::DECOR_REGISTER("CokeInPossession", 1); - DECORATOR::DECOR_REGISTER("WeedInPossession", 1); - DECORATOR::DECOR_REGISTER("MethInPossession", 1); - DECORATOR::DECOR_REGISTER("bombdec", 3); - DECORATOR::DECOR_REGISTER("bombdec1", 3); - DECORATOR::DECOR_REGISTER("bombowner", 3); - DECORATOR::DECOR_REGISTER("noPlateScan", 2); - DECORATOR::DECOR_REGISTER("prisonBreakBoss", 2); - DECORATOR::DECOR_REGISTER("cashondeadbody", 3); - DECORATOR::DECOR_REGISTER("MissionType", 3); - DECORATOR::DECOR_REGISTER("MatchId", 3); - DECORATOR::DECOR_REGISTER("TeamId", 3); - DECORATOR::DECOR_REGISTER("Not_Allow_As_Saved_Veh", 3); - DECORATOR::DECOR_REGISTER("Veh_Modded_By_Player", 3); - DECORATOR::DECOR_REGISTER("MPBitset", 3); - DECORATOR::DECOR_REGISTER("MC_EntityID", 3); - DECORATOR::DECOR_REGISTER("MC_ChasePedID", 3); - DECORATOR::DECOR_REGISTER("MC_Team0_VehDeliveredRules", 3); - DECORATOR::DECOR_REGISTER("MC_Team1_VehDeliveredRules", 3); - DECORATOR::DECOR_REGISTER("MC_Team2_VehDeliveredRules", 3); - DECORATOR::DECOR_REGISTER("MC_Team3_VehDeliveredRules", 3); - DECORATOR::DECOR_REGISTER("AttributeDamage", 3); - DECORATOR::DECOR_REGISTER("GangBackup", 3); - DECORATOR::DECOR_REGISTER("CreatedByPegasus", 2); - DECORATOR::DECOR_REGISTER("BeforeCorona_0", 2); - } - ----------------------------------------------------------------------- - Defines type of property for property name. - enum eDecorType - { - DECOR_TYPE_FLOAT = 1, - DECOR_TYPE_BOOL, - DECOR_TYPE_INT, - DECOR_TYPE_UNK, - DECOR_TYPE_TIME - }; - - - - - Called after all decorator type initializations. - - - - - This function sets metadata of type bool to specified entity. - - - - - Sets property to int. - - - - - Deletes the specified entity, then sets the handle pointed to by the pointer to NULL. - - - - - Delete an incident with a given id. - ======================================================= - Correction, I have change this to int, instead of int* - as it doesn't use a pointer to the createdIncident. - If you try it you will crash (or) freeze. - ======================================================= - - - - - Deletes the specified object, then sets the handle pointed to by the pointer to NULL. - meme. - - - - - From the b617d scripts: - AI::DELETE_PATROL_ROUTE("miss_merc0"); - AI::DELETE_PATROL_ROUTE("miss_merc1"); - AI::DELETE_PATROL_ROUTE("miss_merc2"); - AI::DELETE_PATROL_ROUTE("miss_dock"); - - - - - Deletes the specified ped, then sets the handle pointed to by the pointer to NULL. - - - - - Deletes a vehicle. - The vehicle must be a mission entity to delete, so call this before deleting: SET_ENTITY_AS_MISSION_ENTITY(vehicle, true, true); - eg how to use: - SET_ENTITY_AS_MISSION_ENTITY(vehicle, true, true); - DELETE_VEHICLE(&vehicle); - Deletes the specified vehicle, then sets the handle pointed to by the pointer to NULL. - - - - - BOOL param indicates whether the cam should be destroyed if it belongs to the calling script. - - - - - BOOL param indicates whether the cam should be destroyed if it belongs to the calling script. - - - - - Destroys a DUI browser. - - - - - Destroys the currently active mobile phone. - - - - - Hash collision - - - - - p1 and p2 have no effect - maybe a quick disassembly will tell us what they do - the statement below seems to be false. when I tried it with 2 vehicles: - if p2 is set to true, the both entities won't collide with the other until the distance between them is above 4 meters. - - - - - First two parameters swapped. Scripts verify that towTruck is the first parameter, not the second. - - - - - Public Sub detatchTrailer(vh1 As Vehicle) - Native.Function.Call(Hash.DETACH_VEHICLE_FROM_TRAILER, vh1) - End Sub - - - - - Hash collision!!! - Returns a blip handle. - - - - - control values and meaning: github.com/crosire/scripthookvdotnet/blob/dev_v3/source/scripting/Controls.cs - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - Control values from the decompiled scripts: 0,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,53,5 - 4,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,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,105, - 107,108,109,110,111,112,113,114,115,116,117,118,119,123,126,129,130,131,132, - 133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152, - 153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,171,172 - ,177,187,188,189,190,195,196,199,200,201,202,203,205,207,208,209,211,212,213, 217,219,220,221,225,226,230,234,235,236,237,238,239,240,241,242,243,244,257, - 261,262,263,264,265,270,271,272,273,274,278,279,280,281,282,283,284,285,286, - 287,288,289,337. - Example: CONTROLS::DISABLE_CONTROL_ACTION(2, 19, true) disables the switching UI from appearing both when using a keyboard and Xbox 360 controller. Needs to be executed each frame. - Control group 1 and 0 gives the same results as 2. Same results for all players. - - - - - The game by default has 5 hospital respawn points. Disabling them all will cause the player to respawn at the last position they were. - Doesn't work.... - - - - - Example: - This removes the interior from the strip club and when trying to walk inside the player just falls: - INTERIOR::DISABLE_INTERIOR(118018, true); - - - - - hash collision??? - Don't think so. It fits alphabetically and it used with a plane in the scripts - Ailerons are responsible for the rolling motion of a plane. - - - - - Inhibits the player from using any method of combat including melee and firearms. - NOTE: Only disables the firing for one frame - - - - - Disables the spawn point at the police house on the specified index. - policeIndex: The police house index. - toggle: true to enable the spawn point, false to disable. - - - - - if set to true, prevents vehicle sirens from having sound, leaving only the lights. - HASH COLLISION !!! Please change to _SET_DISABLE_VEHICLE_SIREN_SOUND - ----- - SET_VEHICLE_HAS_* - - - - - how does this work? - - - - - "DISPLAY_CASH(false);" makes the cash amount render on the screen when appropriate - "DISPLAY_CASH(true);" disables cash amount rendering - - - - - The messages are localized strings. - Examples: - "No_bus_money" - "Enter_bus" - "Tour_help" - "LETTERS_HELP2" - "Dummy" - **The bool appears to always be false (if it even is a bool, as it's represented by a zero)** - -------- - p1 doesn't seem to make a difference, regardless of the state it's in. - picture of where on the screen this is displayed? - - - - - If Hud should be displayed - - - - - note, p0 is set to 6 for PC platform in at least 1 script, or to `unk::_get_ui_language_id() == 0` otherwise. - NOTE: windowTitle uses text labels, and an invalid value will display nothing. - Dr. Underscore: `UNK::_GET_UI_LANGUAGE_ID()` is now `UNK::_GET_CURRENT_LANGUAGE_ID()` - www.gtaforums.com/topic/788343-vrel-script-hook-v/?p=1067380474 - windowTitle's - ----------------- - CELL_EMAIL_BOD = "Enter your Eyefind message" - CELL_EMAIL_BODE = "Message too long. Try again" - CELL_EMAIL_BODF = "Forbidden message. Try again" - CELL_EMAIL_SOD = "Enter your Eyefind subject" - CELL_EMAIL_SODE = "Subject too long. Try again" - CELL_EMAIL_SODF = "Forbidden text. Try again" - CELL_EMASH_BOD = "Enter your Eyefind message" - CELL_EMASH_BODE = "Message too long. Try again" - CELL_EMASH_BODF = "Forbidden message. Try again" - CELL_EMASH_SOD = "Enter your Eyefind subject" - CELL_EMASH_SODE = "Subject too long. Try again" - CELL_EMASH_SODF = "Forbidden Text. Try again" - FMMC_KEY_TIP10 = "Enter Synopsis" - FMMC_KEY_TIP12 = "Enter Custom Team Name" - FMMC_KEY_TIP12F = "Forbidden Text. Try again" - FMMC_KEY_TIP12N = "Custom Team Name" - FMMC_KEY_TIP8 = "Enter Message" - FMMC_KEY_TIP8F = "Forbidden Text. Try again" - FMMC_KEY_TIP8FS = "Invalid Message. Try again" - FMMC_KEY_TIP8S = "Enter Message" - FMMC_KEY_TIP9 = "Enter Outfit Name" - FMMC_KEY_TIP9F = "Invalid Outfit Name. Try again" - FMMC_KEY_TIP9N = "Outfit Name" - PM_NAME_CHALL = "Enter Challenge Name" - - - - - If Minimap / Radar should be displayed. - - - - - Displays the crosshair for this frame. - - - - - Purpose of the BOOL currently unknown. - Both, true and false, work - - - - - Returns whether or not the passed camera handle exists. - - - - - Returns true only when the hook is active, will return false if the magnet is active - - - - - Checks via CVehicleModelInfo - - - - - p5 is usually 0. - - - - - Returns whether the ped's blip is controlled by the game. - It's the default blip you can see on enemies during freeroam in singleplayer (the one that fades out quickly). - - - - - Ptr is correct - - - - - Occurrences in the b617d scripts: - "ARMY_GUARD", - "ARMY_HELI", - "Cinema_Downtown", - "Cinema_Morningwood", - "Cinema_Textile", - "City_Banks", - "Countryside_Banks", - "DEALERSHIP", - "GRAPESEED_PLANES", - "KORTZ_SECURITY", - "LOST_BIKERS", - "LSA_Planes", - "LSA_Planes", - "MP_POLICE", - "Observatory_Bikers", - "POLICE_POUND1", - "POLICE_POUND2", - "POLICE_POUND3", - "POLICE_POUND4", - "POLICE_POUND5" - "QUARRY", - "SANDY_PLANES", - "SCRAP_SECURITY", - "SEW_MACHINE", - "SOLOMON_GATE", - "Triathlon_1_Start", - "Triathlon_2_Start", - "Triathlon_3_Start" - Sometimes used with IS_SCENARIO_GROUP_ENABLED: - if (AI::DOES_SCENARIO_GROUP_EXIST("Observatory_Bikers") && (!AI::IS_SCENARIO_GROUP_ENABLED("Observatory_Bikers"))) { - else if (AI::IS_SCENARIO_GROUP_ENABLED("BLIMP")) { - - - - - Checks if there is a cover point at position - - - - - For a full list, see here: pastebin.com/yLNWicUi - - - - - Checks if the passed gxt name exists in the game files. - - - - - Maximum amount of vehicles with vehicle stuck check appears to be 16. - - - - - Fades the screen in. - duration: The time the fade should take, in milliseconds. - - - - - Fades the screen out. - duration: The time the fade should take, in milliseconds. - - - - - x,y,z = start pos - x2,y2,z2 = end pos - Draw's a 3D Box between the two x,y,z coords. - -------------- - Keep in mind that the edges of the box do only align to the worlds base-vectors. Therefore something like rotation cannot be applied. That means this function is pretty much useless, unless you want a static unicolor box somewhere. - I recommend using a predefined function to call this. - [VB.NET] - Public Sub DrawBox(a As Vector3, b As Vector3, col As Color) - [Function].Call(Hash.DRAW_BOX,a.X, a.Y, a.Z,b.X, b.Y, b.Z,col.R, col.G, col.B, col.A) - End Sub - [C#] - public void DrawBox(Vector3 a, Vector3 b, Color col) - { - Function.Call(Hash.DRAW_BOX,a.X, a.Y, a.Z,b.X, b.Y, b.Z,col.R, col.G, col.B, col.A); - } - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - Draws a depth-tested line from one point to another. - ---------------- - x1, y1, z1 : Coordinates for the first point - x2, y2, z2 : Coordinates for the second point - r, g, b, alpha : Color with RGBA-Values - I recommend using a predefined function to call this. - [VB.NET] - Public Sub DrawLine(from As Vector3, [to] As Vector3, col As Color) - [Function].Call(Hash.DRAW_LINE, from.X, from.Y, from.Z, [to].X, [to].Y, [to].Z, col.R, col.G, col.B, col.A) - End Sub - [C#] - public void DrawLine(Vector3 from, Vector3 to, Color col) - { - Function.Call(Hash.DRAW_LINE, from.X, from.Y, from.Z, to.X, to.Y, to.Z, col.R, col.G, col.B, col.A); - } - - - - - Draws a marker with the specified appearance at the target location. This has to be called every frame, e.g. in a `Wait(0)` loop. - - There's a [list of markers](https://docs.fivem.net/game-references/markers/) on the FiveM documentation site. - - - - - x/y/z - Location of a vertex (in world coords), presumably. - ---------------- - x1, y1, z1 : Coordinates for the first point - x2, y2, z2 : Coordinates for the second point - x3, y3, z3 : Coordinates for the third point - r, g, b, alpha : Color with RGBA-Values - Keep in mind that only one side of the drawn triangle is visible: It's the side, in which the vector-product of the vectors heads to: (b-a)x(c-a) Or (b-a)x(c-b). - But be aware: The function seems to work somehow differently. I have trouble having them drawn in rotated orientation. Try it yourself and if you somehow succeed, please edit this and post your solution. - I recommend using a predefined function to call this. - [VB.NET] - Public Sub DrawPoly(a As Vector3, b As Vector3, c As Vector3, col As Color) - [Function].Call(Hash.DRAW_POLY, a.X, a.Y, a.Z, b.X, b.Y, b.Z, c.X, c.Y, c.Z, col.R, col.G, col.B, col.A) - End Sub - [C#] - public void DrawPoly(Vector3 a, Vector3 b, Vector3 c, Color col) - { - Function.Call(Hash.DRAW_POLY, a.X, a.Y, a.Z, b.X, b.Y, b.Z, c.X, c.Y, c.Z, col.R, col.G, col.B, col.A); - } - BTW: Intersecting triangles are not supported: They overlap in the order they were called. - - - - - Draws a rectangle on the screen. - -x: The relative X point of the center of the rectangle. (0.0-1.0, 0.0 is the left edge of the screen, 1.0 is the right edge of the screen) - -y: The relative Y point of the center of the rectangle. (0.0-1.0, 0.0 is the top edge of the screen, 1.0 is the bottom edge of the screen) - -width: The relative width of the rectangle. (0.0-1.0, 1.0 means the whole screen width) - -height: The relative height of the rectangle. (0.0-1.0, 1.0 means the whole screen height) - -R: Red part of the color. (0-255) - -G: Green part of the color. (0-255) - -B: Blue part of the color. (0-255) - -A: Alpha part of the color. (0-255, 0 means totally transparent, 255 means totally opaque) - The total number of rectangles to be drawn in one frame is apparently limited to 399. - - - - - GTA V Scaleforms Decompiled - pastebin.com/mmNdjX2k - - - - - sharpness goes from 0.0 to 1.0 - - - - - unk is not used so no need - - - - - Parameters: - * pos - coordinate where the spotlight is located - * dir - the direction vector the spotlight should aim at from its current position - * r,g,b - color of the spotlight - * distance - the maximum distance the light can reach - * brightness - the brightness of the light - * roundness - "smoothness" of the circle edge - * radius - the radius size of the spotlight - * falloff - the falloff size of the light's edge (example: www.i.imgur.com/DemAWeO.jpg) - Example in C# (spotlight aims at the closest vehicle): - Vector3 myPos = Game.Player.Character.Position; - Vehicle nearest = World.GetClosestVehicle(myPos , 1000f); - Vector3 destinationCoords = nearest.Position; - Vector3 dirVector = destinationCoords - myPos; - dirVector.Normalize(); - Function.Call(Hash.DRAW_SPOT_LIGHT, pos.X, pos.Y, pos.Z, dirVector.X, dirVector.Y, dirVector.Z, 255, 255, 255, 100.0f, 1f, 0.0f, 13.0f, 1f); - - - - - Draws a 2D sprite on the screen. - Parameters: - textureDict - Name of texture dictionary to load texture from (e.g. "CommonMenu", "MPWeaponsCommon", etc.) - textureName - Name of texture to load from texture dictionary (e.g. "last_team_standing_icon", "tennis_icon", etc.) - screenX/Y - Screen offset (0.5 = center) - scaleX/Y - Texture scaling. Negative values can be used to flip the texture on that axis. (0.5 = half) - heading - Texture rotation in degrees (default = 0.0) positive is clockwise, measured in degrees - red,green,blue - Sprite color (default = 255/255/255) - alpha - opacity level - - - - - All calls to this native are preceded by calls to GRAPHICS::_0x61BB1D9B3A95D802 and GRAPHICS::_0xC6372ECD45D73BCD, respectively. - "act_cinema.ysc", line 1483: - UI::SET_HUD_COMPONENT_POSITION(15, 0.0, -0.0375); - UI::SET_TEXT_RENDER_ID(l_AE); - GRAPHICS::_0x61BB1D9B3A95D802(4); - GRAPHICS::_0xC6372ECD45D73BCD(1); - if (GRAPHICS::_0x0AD973CA1E077B60(${movie_arthouse})) { - GRAPHICS::DRAW_TV_CHANNEL(0.5, 0.5, 0.7375, 1.0, 0.0, 255, 255, 255, 255); - } else { - GRAPHICS::DRAW_TV_CHANNEL(0.5, 0.5, 1.0, 1.0, 0.0, 255, 255, 255, 255); - } - "am_mp_property_int.ysc", line 102545: - if (ENTITY::DOES_ENTITY_EXIST(a_2._f3)) { - if (UI::IS_NAMED_RENDERTARGET_LINKED(ENTITY::GET_ENTITY_MODEL(a_2._f3))) { - UI::SET_TEXT_RENDER_ID(a_2._f1); - GRAPHICS::_0x61BB1D9B3A95D802(4); - GRAPHICS::_0xC6372ECD45D73BCD(1); - GRAPHICS::DRAW_TV_CHANNEL(0.5, 0.5, 1.0, 1.0, 0.0, 255, 255, 255, 255); - if (GRAPHICS::GET_TV_CHANNEL() == -1) { - sub_a8fa5(a_2, 1); - } else { - sub_a8fa5(a_2, 1); - GRAPHICS::ATTACH_TV_AUDIO_TO_ENTITY(a_2._f3); - } - UI::SET_TEXT_RENDER_ID(UI::GET_DEFAULT_SCRIPT_RENDERTARGET_RENDER_ID()); - } - } - - - - - Creates cartoon effect when Michel smokes the weed - - - - - control values and meaning: github.com/crosire/scripthookvdotnet/blob/dev_v3/source/scripting/Control.cs - and - wiki.fivem.net/wiki/Controls - 0, 1 and 2 used in the scripts. - Control values from the decompiled scripts: - 0,1,2,3,4,5,6,8,9,10,11,14,15,16,17,19,21,22,24,25,26,30,31,32,33,34,35,36, - 37,44,46,47,59,60,65,68,69,70,71,72,73,74,75,76,79,80,81,82,86,95,98,99,100 - ,101,114,140,141,143,172,173,174,175,176,177,178,179,180,181,187,188,189,19 - 0,195,196,197,198,199,201,202,203,204,205,206,207,208,209,210,217,218,219,2 - 20,221,225,228,229,230,231,234,235,236,237,238,239,240,241,242,245,246,257, - 261,262,263,264,286,287,288,289,337,338,339,340,341,342,343 - INPUTGROUP_MOVE - INPUTGROUP_LOOK - INPUTGROUP_WHEEL - INPUTGROUP_CELLPHONE_NAVIGATE - INPUTGROUP_CELLPHONE_NAVIGATE_UD - INPUTGROUP_CELLPHONE_NAVIGATE_LR - INPUTGROUP_FRONTEND_DPAD_ALL - INPUTGROUP_FRONTEND_DPAD_UD - INPUTGROUP_FRONTEND_DPAD_LR - INPUTGROUP_FRONTEND_LSTICK_ALL - INPUTGROUP_FRONTEND_RSTICK_ALL - INPUTGROUP_FRONTEND_GENERIC_UD - INPUTGROUP_FRONTEND_GENERIC_LR - INPUTGROUP_FRONTEND_GENERIC_ALL - INPUTGROUP_FRONTEND_BUMPERS - INPUTGROUP_FRONTEND_TRIGGERS - INPUTGROUP_FRONTEND_STICKS - INPUTGROUP_SCRIPT_DPAD_ALL - INPUTGROUP_SCRIPT_DPAD_UD - INPUTGROUP_SCRIPT_DPAD_LR - INPUTGROUP_SCRIPT_LSTICK_ALL - INPUTGROUP_SCRIPT_RSTICK_ALL - INPUTGROUP_SCRIPT_BUMPERS - INPUTGROUP_SCRIPT_TRIGGERS - INPUTGROUP_WEAPON_WHEEL_CYCLE - INPUTGROUP_FLY - INPUTGROUP_SUB - INPUTGROUP_VEH_MOVE_ALL - INPUTGROUP_CURSOR - INPUTGROUP_CURSOR_SCROLL - INPUTGROUP_SNIPER_ZOOM_SECONDARY - INPUTGROUP_VEH_HYDRAULICS_CONTROL - Took those in IDA Pro.Not sure in which order they go - - - - - Please change back to _0x4895BDEA16E7C080 (hash collision) - - - - - Directly from R*: - enum eDispatchType : UINT16 - { - DT_PoliceAutomobile = 1, - DT_PoliceHelicopter = 2, - DT_FireDepartment = 3, - DT_SwatAutomobile = 4, - DT_AmbulanceDepartment = 5, - DT_PoliceRiders = 6, - DT_PoliceVehicleRequest = 7, - DT_PoliceRoadBlock = 8, - DT_PoliceAutomobileWaitPulledOver = 9, - DT_PoliceAutomobileWaitCruising = 10, - DT_Gangs = 11, - DT_SwatHelicopter = 12, - DT_PoliceBoat = 13, - DT_ArmyVehicle = 14, - DT_BikerBackup = 15 - }; - By making toggle false it disables the dispatch. - curious if this is what they used when you toggled on and off cops in a GTA IV freemode you hosted. Sad they got rid of the option to make a private session without cops. - Also on x360 seems with or without neverWanted on, setting these to all false in SP of course doesn't seem to work. I would understand getting stars, but cops are still dispatched and combat you. - - - - - Enables laser sight on any weapon. - It doesn't work. Neither on tick nor OnKeyDown - - - - - #4 - - - - - Makes the ped jump around like they're in a tennis match - - - - - Pops and calls the Scaleform function on the stack - - - - - Clear the current srl and stop rendering the area selected by PrefetchSrl and started with BeginSrl. - - - - - ----------- - p3 (duration in MS) was previously mentioned as "shape", but with some more testing it seems that it's more likely to be a duration in MS. (Tested this when not calling it every tick, but instead only once and let it display for the specified duration). - -1 seems to be default delay (around 3 seconds), 5000 (ms) seems to be the max. Anything > 5000 will still result in 5 seconds of display time. - Old p3 (shape) description: "shape goes from -1 to 50 (may be more)." - -------------- - p0 is always 0. - Example: - void FloatingHelpText(char* text) - { - BEGIN_TEXT_COMMAND_DISPLAY_HELP("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - END_TEXT_COMMAND_DISPLAY_HELP (0, 0, 1, -1); - } - Image: - - imgbin.org/images/26209.jpg - more inputs/icons: - - pastebin.com/nqNYWMSB - Used to be known as _DISPLAY_HELP_TEXT_FROM_STRING_LABEL - - - - - After applying the properties to the text (See UI::SET_TEXT_), this will draw the text in the applied position. Also 0.0f < x, y < 1.0f, percentage of the axis. - Used to be known as _DRAW_TEXT - - - - - Draws the subtitle at middle center of the screen. - int duration = time in milliseconds to show text on screen before disappearing - drawImmediately = If true, the text will be drawn immediately, if false, the text will be drawn after the previous subtitle has finished - Used to be known as _DRAW_SUBTITLE_TIMED - - - - - Previously called _END_TEXT_COMPONENT - - - - - Finalizes a text command started with [`BEGIN_TEXT_COMMAND_SET_BLIP_NAME`](#_0xF9113A30DE5C6670), setting the name - of the specified blip. - - - - - This native is not implemented. - - - - - This native is not implemented. - - - - - This native is not implemented. - - - - - This native is not implemented. - - - - - Forces the ped to fall back and kills it. - It doesn't really explode the ped's head but it kills the ped - - - - - WEAPON::EXPLODE_PROJECTILES(PLAYER::PLAYER_PED_ID(), func_221(0x00000003), 0x00000001); - - - - - Explodes a selected vehicle. - Vehicle vehicle = Vehicle you want to explode. - BOOL isAudible = If explosion makes a sound. - BOOL isInvisible = If the explosion is invisible or not. - First BOOL does not give any visual explosion, the vehicle just falls apart completely but slowly and starts to burn. - - - - - Fades nearby decals within the range specified - - - - - Hardcoded to not work in SP. - - - - - In the script "player_scene_t_bbfight.c4": - "if (ENTITY::FIND_ANIM_EVENT_PHASE(&l_16E, &l_19F[v_4 -- [[16]] ], v_9, &v_A, &v_B))" - -- &l_16E (p0) is requested as an anim dictionary earlier in the script. - -- &l_19F[v_4 -- [[16]] ] (p1) is used in other natives in the script as the "animation" param. - -- v_9 (p2) is instantiated as "victim_fall"; I'm guessing that's another anim - --v_A and v_B (p3 & p4) are both set as -1.0, but v_A is used immediately after this native for: - "if (v_A < ENTITY::GET_ENTITY_ANIM_CURRENT_TIME(...))" - Both v_A and v_B are seemingly used to contain both Vector3's and floats, so I can't say what either really is other than that they are both output parameters. p4 looks more like a *Vector3 though - -alphazolam - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Finds a position ahead of the player by predicting the players next actions. - The positions match path finding node positions. - When roads diverge, the position may rapidly change between two or more positions. This is due to the engine not being certain of which path the player will take. - ======================================================= - I may sort this with alter research, but if someone - already knows please tell what the difference in - X2, Y2, Z2 is. I doubt it's rotation. Is it like - checkpoints where X1, Y1, Z1 is your/a position and - X2, Y2, Z2 is a given position ahead of that position? - ======================================================= - - - - - If set to true ability bar will flash - - - - - adds a short flash to the Radar/Minimap - Usage: UI.FLASH_MINIMAP_DISPLAY - - - - - used with 1,2,8,64,128 in the scripts - - - - - PLAYER::FORCE_CLEANUP_FOR_ALL_THREADS_WITH_THIS_NAME("pb_prostitute", 1); // Found in decompilation - - - - - Based on carmod_shop script decompile this takes a vehicle parameter. It is called when repair is done on initial enter. - - - - - Some motionstate hashes are - 0xec17e58 (standing idle), 0xbac0f10b (nothing?), 0x3f67c6af (aiming with pistol 2-h), 0x422d7a25 (stealth), 0xbd8817db, 0x916e828c - and those for the strings - "motionstate_idle", "motionstate_walk", "motionstate_run", "motionstate_actionmode_idle", and "motionstate_actionmode_walk". - Regarding p2, p3 and p4: Most common is 0, 0, 0); followed by 0, 1, 0); and 1, 1, 0); in the scripts. p4 is very rarely something other than 0. - [31/03/2017] ins1de : - enum MotionState - { - StopRunning = -530524, - StopWalking = -668482597, - Idle = 247561816, // 1, 1, 0 - Idl2 = -1871534317, - SkyDive =-1161760501, // 0, 1, 0 - Stealth = 1110276645, - Sprint = -1115154469, - Swim = -1855028596, - Unknown1 = 1063765679, - Unknown2 = -633298724, - } - - - - - Forces the particular room in an interior to load incase not teleporting into the portal. - - - - - No, this should be called SET_ENTITY_KINEMATIC. It does more than just "freeze" it's position. - ^Rockstar Devs named it like that, Now cry about it. - - - - - Usage example: - Public Function GenerateDirectionsToCoord(Pos As Vector3) As Tuple(Of String, Single, Single) - Dim f4, f5, f6 As New OutputArgument() - Native.Function.Call(Hash.GENERATE_DIRECTIONS_TO_COORD, Pos.X, Pos.Y, Pos.Z, True, f4, f5, f6) - Dim direction As String = f4.GetResult(Of Single)() - Return New Tuple(Of String, Single, Single)(direction.Substring(0, 1), f5.GetResult(Of Single)(), f6.GetResult(Of Single)()) - End Function - p3 I use 1 - direction: - 0 = You Have Arrived - 1 = Recalculating Route, Please make a u-turn where safe - 2 = Please Proceed the Highlighted Route - 3 = In (distToNxJunction) Turn Left - 4 = In (distToNxJunction) Turn Right - 5 = In (distToNxJunction) Go Straight - 6 = In (distToNxJunction) Keep Left - 7 = In (distToNxJunction) Keep Right - 8 = In (distToNxJunction) Join the freeway - 9 = In (distToNxJunction) Exit Freeway - return value set to 0 always - - - - - WEAPON::GET_AMMO_IN_PED_WEAPON(PLAYER::PLAYER_PED_ID(), a_0) - From decompiled scripts - Returns total ammo in weapon - GTALua Example : - natives.WEAPON.GET_AMMO_IN_PED_WEAPON(plyPed, WeaponHash) - - - - - Returns the degree of angle between (x1, y1) and (x2, y2) lines in 2D coordinate system. - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - p1 is always 0 in the scripts. - - - - - Returns the Blip handle of given Entity. - - - - - - - - - - This function is hard-coded to always return 0. - - - - - Returns a value based on what the blip is attached to - 1 - 2 - 3 - 4 - 5 - 6 - 7 - - - - - Blips Images + IDs: - gtaxscripting.blogspot.com/2016/05/gta-v-blips-id-and-image.html - - - - - Returns the world matrix of the specified camera. To turn this into a view matrix, calculate the inverse. - - - - - The last parameter, as in other "ROT" methods, is usually 2. - - - - - I named the beginning from Any to BOOL as this native is used in an if statement as well. - Big surprise it returns an int. - - - - - I'm pretty sure the parameter is the camera as usual, but I am not certain so I'm going to leave it as is. - - - - - Can use this with SET_CAM_SPLINE_PHASE to set the float it this native returns. - (returns 1.0f when no nodes has been added, reached end of non existing spline) - - - - - Gets the current day of the week. - 0: Sunday - 1: Monday - 2: Tuesday - 3: Wednesday - 4: Thursday - 5: Friday - 6: Saturday - - - - - Gets the current ingame hour, expressed without zeros. (09:34 will be represented as 9) - - - - - Gets the current ingame clock minute. - - - - - Gets the current ingame clock second. Note that ingame clock seconds change really fast since a day in GTA is only 48 minutes in real life. - - - - - Returns TRUE if it found something. FALSE if not. - - - - - Get the closest vehicle node to a given position, unknown1 = 3.0, unknown2 = 0 - - - - - Has 8 params in the latest patches. - isMission - if true doesn't return mission objects - - - - - Gets the closest ped in a radius. - Ped Types: - Any ped = -1 - Player = 1 - Male = 4 - Female = 5 - Cop = 6 - Human = 26 - SWAT = 27 - Animal = 28 - Army = 29 - ------------------ - P4 P5 P7 P8 - 1 0 x x = return nearest walking Ped - 1 x 0 x = return nearest walking Ped - x 1 1 x = return Ped you are using - 0 0 x x = no effect - 0 x 0 x = no effect - x = can be 1 or 0. Does not have any obvious changes. - This function does not return ped who is: - 1. Standing still - 2. Driving - 3. Fleeing - 4. Attacking - This function only work if the ped is: - 1. walking normally. - 2. waiting to cross a road. - Note: PED::GET_PED_NEARBY_PEDS works for more peds. - - - - - p1 seems to be always 1.0f in the scripts - - - - - Example usage - VEHICLE::GET_CLOSEST_VEHICLE(x, y, z, radius, hash, unknown leave at 70) - x, y, z: Position to get closest vehicle to. - radius: Max radius to get a vehicle. - modelHash: Limit to vehicles with this model. 0 for any. - flags: The bitwise flags altering the function's behaviour. - Does not return police cars or helicopters. - It seems to return police cars for me, does not seem to return helicopters, planes or boats for some reason - Only returns non police cars and motorbikes with the flag set to 70 and modelHash to 0. ModelHash seems to always be 0 when not a modelHash in the scripts, as stated above. - These flags were found in the b617d scripts: 0,2,4,6,7,23,127,260,2146,2175,12294,16384,16386,20503,32768,67590,67711,98309,100359. - Converted to binary, each bit probably represents a flag as explained regarding another native here: gtaforums.com/topic/822314-guide-driving-styles - Conversion of found flags to binary: pastebin.com/kghNFkRi - At exactly 16384 which is 0100000000000000 in binary and 4000 in hexadecimal only planes are returned. - It's probably more convenient to use worldGetAllVehicles(int *arr, int arrSize) and check the shortest distance yourself and sort if you want by checking the vehicle type with for example VEHICLE::IS_THIS_MODEL_A_BOAT - ------------------------------------------------------------------------- - Conclusion: This native is not worth trying to use. Use something like this instead: pastebin.com/xiFdXa7h - - - - - FYI: When falling through the map (or however you got under it) you will respawn when your player ped's height is <= -200.0 meters (I think you all know this) and when in a vehicle you will actually respawn at the closest vehicle node. - ---------- - Vector3 nodePos; - GET_CLOSEST_VEHICLE_NODE(x,y,z,&nodePos,...) - p4 is either 0, 1 or 8. 1 means any path/road. 0 means node in the middle of the closest main (asphalt) road. - p5, p6 are always the same: - 0x40400000 (3.0), 0 - p5 can also be 100.0 and p6 can be 2.5: - PATHFIND::GET_CLOSEST_VEHICLE_NODE(a_0, &v_5, v_9, 100.0, 2.5) - Known node types: simple path/asphalt road, only asphalt road, water, under the map at always the same coords. - The node types follows a pattern. For example, every fourth node is of the type water i.e. 3, 7, 11, 15, 19, 23, 27, 31, 35, 39... 239. Could not see any difference between nodes within certain types. - Starting at 2, every fourth node is under the map, always same coords. - Same with only asphalt road (0, 4, 8, etc) and simple path/asphalt road (1, 5, 9, etc). - gtaforums.com/topic/843561-pathfind-node-types - - - - - p5, p6 and p7 seems to be about the same as p4, p5 and p6 for GET_CLOSEST_VEHICLE_NODE. p6 and/or p7 has something to do with finding a node on the same path/road and same direction(at least for this native, something to do with the heading maybe). Edit this when you find out more. - p5 is either 1 or 12. 1 means any path/road. 12, 8, 0 means node in the middle of the closest main (asphalt) road. - p6 is always 3.0 - p7 is always 0. - Known node types: simple path/asphalt road, only asphalt road, water, under the map at always the same coords. - The node types follows a pattern. For example, every fourth node is of the type water i.e. 3, 7, 11, 15, 19, 23, 27, 31, 35, 39... 239. Could not see any difference between nodes within certain types. - Starting at 2, every fourth node is under the map, always same coords. - Same with only asphalt road (0, 4, 8, etc) and simple path/asphalt road (1, 5, 9, etc). - gtaforums.com/topic/843561-pathfind-node-types - Example of usage, moving vehicle to closest path/road: - Vector3 coords = ENTITY::GET_ENTITY_COORDS(playerVeh, true); - Vector3 closestVehicleNodeCoords; - float roadHeading; - PATHFIND::GET_CLOSEST_VEHICLE_NODE_WITH_HEADING(coords.x, coords.y, coords.z, &closestVehicleNodeCoords, &roadHeading, 1, 3, 0); - ENTITY::SET_ENTITY_HEADING(playerVeh, roadHeading); - ENTITY::SET_ENTITY_COORDS(playerVeh, closestVehicleNodeCoords.x, closestVehicleNodeCoords.y, closestVehicleNodeCoords.z, 1, 0, 0, 1); - VEHICLE::SET_VEHICLE_ON_GROUND_PROPERLY(playerVeh); - ------------------------------------------------------------------ - C# Example (ins1de) : pastebin.com/fxtMWAHD - - - - - Returns POSIX timestamp. - - Renamed from `_GET_POSIX_TIME` to `GET_CLOUD_TIME_AS_INT` because of conflicting native names ([`0xDA488F299A5B164E`](#_0xDA488F299A5B164E)) - - - - - p0: Ped Handle - p1: int i | 0 <= i <= 27 - p1 probably refers to the attributes configured in combatbehavior.meta. There are 13. Example: - <BlindFireChance value="0.1"/> - <WeaponShootRateModifier value="1.0"/> - <TimeBetweenBurstsInCover value="1.25"/> - <BurstDurationInCover value="2.0"/> - <TimeBetweenPeeks value="10.0"/> - <WeaponAccuracy value="0.18"/> - <FightProficiency value="0.8"/> - <StrafeWhenMovingChance value="1.0"/> - <WalkWhenStrafingChance value="0.0"/> - <AttackWindowDistanceForCover value="55.0"/> - <TimeToInvalidateInjuredTarget value="9.0"/> - <TriggerChargeTime_Near value="4.0"/> - <TriggerChargeTime_Far value="10.0"/> - -------------Confirmed by editing combatbehavior.meta: - p1: - 0=BlindFireChance - 1=BurstDurationInCover - 3=TimeBetweenBurstsInCover - 4=TimeBetweenPeeks - 5=StrafeWhenMovingChance - 8=WalkWhenStrafingChance - 11=AttackWindowDistanceForCover - 12=TimeToInvalidateInjuredTarget - 16=OptimalCoverDistance - - - - - formerly called _GET_CONTROL_ACTION_NAME incorrectly - p2 appears to always be true. - p2 is unused variable in function. - EG: - GET_CONTROL_INSTRUCTIONAL_BUTTON (2, 201, 1) -- [[INPUT_FRONTEND_ACCEPT (e.g. Enter button)]] - GET_CONTROL_INSTRUCTIONAL_BUTTON (2, 202, 1) -- [[INPUT_FRONTEND_CANCEL (e.g. ESC button)]] - GET_CONTROL_INSTRUCTIONAL_BUTTON (2, 51, 1) -- [[INPUT_CONTEXT (e.g. E button)]] - gtaforums.com/topic/819070-c-draw-instructional-buttons-scaleform-movie/#entry1068197378 - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - Returns the value of CONTROLS::GET_CONTROL_VALUE Normalized (ie a real number value between -1 and 1) - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - 0 -> up - 1 -> lowering down - 2 -> down - 3 -> raising up - enum RoofState - { - ROOFSTATE_UP = 0; - ROOFSTATE_LOWERING, - ROOFSTATE_DOWN, - ROOFSTATE_RAISING - }; - - - - - Example in VB - Public Shared Function GetVehicleCurrentWeapon(Ped As Ped) As Integer - Dim arg As New OutputArgument() - Native.Function.Call(Hash.GET_CURRENT_PED_VEHICLE_WEAPON, Ped, arg) - Return arg.GetResult(Of Integer)() - End Function - Usage: - If GetVehicleCurrentWeapon(Game.Player.Character) = -821520672 Then ...Do something - Note: -821520672 = VEHICLE_WEAPON_PLANE_ROCKET - - - - - The return value seems to indicate returns true if the hash of the weapon object weapon equals the weapon hash. - p2 seems to be 1 most of the time. - p2 is not implemented - disassembly said that? - ------ - yes on disassembly p2 it seems not implemented i just have: - bool __fastcall sub_7FF6C56CE684(__int64 a1, _DWORD *a2) - Found At: 7ff6c56ce684 - - - - - Returns the name of the currently executing resource. - - - - - Returns the peer address of the remote game server that the user is currently connected to. - - - - - This function is hard-coded to always return 1. - - - - - control - c# works with (int)GTA.Control.CursorY / (int)GTA.Control.CursorX and returns the mouse movement (additive). - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - Returns model name of vehicle in all caps. Needs to be displayed through localizing text natives to get proper display name. - ----------------------------------------------------------------------------------------------------------------------------------------- - While often the case, this does not simply return the model name of the vehicle (which could be hashed to return the model hash). Variations of the same vehicle may also use the same display name. - ----------------------------------------------------------------------------------------------------------------------------------------- - Returns "CARNOTFOUND" if the hash doesn't match a vehicle hash. - Using UI::_GET_LABEL_TEXT, you can get the localized name. - For a full list, see here: pastebin.com/wvpyS4kS (pastebin.com/dA3TbkZw) - - - - - Returns the distance between two three-dimensional points, optionally ignoring the Z values. - - You'll most likely want to use your language's native vector functionality instead. - - - - - dlcVehicleIndex takes a number from 0 - GET_NUM_DLC_VEHICLES() - 1. - outData is a struct of 3 8-byte items. - The Second item in the struct *(Hash *)(outData + 1) is the vehicle hash. - - - - - dlcVehicleIndex is 0 to GET_NUM_DLC_VEHICLS() - - - - - p0 seems to be the weapon index - p1 seems to be the weapon component index - struct DlcComponentData{ - int attachBone; - int padding1; - int bActiveByDefault; - int padding2; - int unk; - int padding3; - int componentHash; - int padding4; - int unk2; - int padding5; - int componentCost; - int padding6; - char nameLabel[64]; - char descLabel[64]; - }; - - - - - dlcWeaponIndex takes a number from 0 - GET_NUM_DLC_WEAPONS() - 1. - struct DlcWeaponData - { - int emptyCheck; //use DLC1::_IS_DLC_DATA_EMPTY on this - int padding1; - int weaponHash; - int padding2; - int unk; - int padding3; - int weaponCost; - int padding4; - int ammoCost; - int padding5; - int ammoType; - int padding6; - int defaultClipSize; - int padding7; - char nameLabel[64]; - char descLabel[64]; - char desc2Label[64]; // usually "the" + name - char upperCaseNameLabel[64]; - }; - - - - - Returns the NUI window handle for a specified DUI browser object. - - - - - Returns a float value representing animation's current playtime with respect to its total playtime. This value increasing in a range from [0 to 1] and wrap back to 0 when it reach 1. - Example: - 0.000000 - mark the starting of animation. - 0.500000 - mark the midpoint of the animation. - 1.000000 - mark the end of animation. - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Returns a float value representing animation's total playtime in milliseconds. - Example: - GET_ENTITY_ANIM_TOTAL_TIME(PLAYER_ID(),"amb@world_human_yoga@female@base","base_b") - return 20800.000000 - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Returns the index of the bone. If the bone was not found, -1 will be returned. - list: - pastebin.com/D7JMnX1g - BoneNames: - chassis, - windscreen, - seat_pside_r, - seat_dside_r, - bodyshell, - suspension_lm, - suspension_lr, - platelight, - attach_female, - attach_male, - bonnet, - boot, - chassis_dummy, //Center of the dummy - chassis_Control, //Not found yet - door_dside_f, //Door left, front - door_dside_r, //Door left, back - door_pside_f, //Door right, front - door_pside_r, //Door right, back - Gun_GripR, - windscreen_f, - platelight, //Position where the light above the numberplate is located - VFX_Emitter, - window_lf, //Window left, front - window_lr, //Window left, back - window_rf, //Window right, front - window_rr, //Window right, back - engine, //Position of the engine - gun_ammo, - ROPE_ATTATCH, //Not misspelled. In script "finale_heist2b.c4". - wheel_lf, //Wheel left, front - wheel_lr, //Wheel left, back - wheel_rf, //Wheel right, front - wheel_rr, //Wheel right, back - exhaust, //Exhaust. shows only the position of the stock-exhaust - overheat, //A position on the engine(not exactly sure, how to name it) - misc_e, //Not a car-bone. - seat_dside_f, //Driver-seat - seat_pside_f, //Seat next to driver - Gun_Nuzzle, - seat_r - I doubt that the function is case-sensitive, since I found a "Chassis" and a "chassis". - Just tested: Definitely not case-sensitive. - - - - - Gets the current coordinates for a specified entity. - - - - - Gets the entity's forward vector. - - - - - Gets the X-component of the entity's forward vector. - - - - - Gets the Y-component of the entity's forward vector. - - - - - Returns the heading of the entity in degrees. Also know as the "Yaw" of an entity. - - - - - Returns an integer value of entity's current health. - Example of range for ped: - - Player [0 to 200] - - Ped [100 to 200] - - Vehicle [0 to 1000] - - Object [0 to 1000] - Health is actually a float value but this native casts it to int. - In order to get the actual value, do: - float health = *(float *)(entityAddress + 0x280); - - - - - Return height (z-dimension) above ground. - Example: The pilot in a titan plane is 1.844176 above ground. - How can i convert it to meters? - Everything seems to be in meters, probably this too. - - - - - Returns the LOD distance of an entity. - - - - - Return an integer value of entity's maximum health. - Example: - - Player = 200 - - - - - Returns the model hash from the entity - Sometimes throws an exception, idk what causes it though. - - - - - Returns TRUE if it found an entity in your crosshair within range of your weapon. Assigns the handle of the target to the *entity that you pass it. - Returns false if no entity found. - - - - - Gets an entity's population type. - - **Valid population types:** - - ```cpp - enum ePopulationType - { - POPTYPE_UNKNOWN = 0, - POPTYPE_RANDOM_PERMANENT, - POPTYPE_RANDOM_PARKED, - POPTYPE_RANDOM_PATROL, - POPTYPE_RANDOM_SCENARIO, - POPTYPE_RANDOM_AMBIENT, - POPTYPE_PERMANENT, - POPTYPE_MISSION, - POPTYPE_REPLAY, - POPTYPE_CACHE, - POPTYPE_TOOL - }; - ``` - - - - - w is the correct parameter name! - - - - - Displays the current ROLL axis of the entity [-180.0000/180.0000+] - (Sideways Roll) such as a vehicle tipped on its side - - - - - rotationOrder refers to the order yaw pitch roll is applied - value ranges from 0 to 5. What you use for rotationOrder when getting must be the same as rotationOrder when setting the rotation. - Unsure what value corresponds to what rotation order, more testing will be needed for that. - ------ - rotationOrder is usually 2 in scripts - ------ - ENTITY::GET_ENTITY_ROTATION(Any p0, false or true); - if false than return from -180 to 180 - if true than return from -90 to 90 - --- - As said above, the value of p1 affects the outcome. R* uses 1 and 2 instead of 0 and 1, so I marked it as an int. - What it returns is the yaw on the z part of the vector, which makes sense considering R* considers z as vertical. Here's a picture for those of you who don't understand pitch, yaw, and roll: - www.allstar.fiu.edu/aero/images/pic5-1.gif - I don't know why it returns a Vec3, but sometimes the values x and y go negative, yet they're always zero. Just use GET_ENTITY_PITCH and GET_ENTITY_ROLL for pitch and roll. - - - - - ANGULAR_VELOCITY* - - - - - All ambient entities in-world seem to have the same value for the second argument (Any *script), depending on when the scripthook was activated/re-activated. I've seen numbers from ~5 to almost 70 when the value was translated with to_string. The function return value seems to always be 0. - - - - - result is in meters per second - ------------------------------------------------------------ - So would the conversion to mph and km/h, be along the lines of this. - float speed = GET_ENTITY_SPEED(veh); - float kmh = (speed * 3.6); - float mph = (speed * 2.236936); - - - - - Relative can be used for getting speed relative to the frame of the vehicle, to determine for example, if you are going in reverse (-y speed) or not (+y speed). - - - - - Get how much of the entity is submerged. 1.0f is whole entity. - - - - - Returns: - 0 = no entity - 1 = ped - 2 = vehicle - 3 = object - This is weird, because in memory atleast on xbox360 it stores it from testing with a variety of (ped, vehicle, and objects). - 03 - 04 - 05 - The above is more then likely true for the native's return, but if you were to skip using the native it's a bit weird it returns different results. - - - - - the unit is m/s along each axis - GET_ENTITY_VELOCITY(aEntity) is the same as GET_ENTITY_SPEED_VECTOR(aEntity,false) - - - - - eventGroup: 0 = CEventGroupScriptAI, 1 = CEventGroupScriptNetwork - - - - - eventGroup: 0 = CEventGroupScriptAI, 1 = CEventGroupScriptNetwork - - - - - eventGroup: 0 = CEventGroupScriptAI, 1 = CEventGroupScriptNetwork - - - - - 8 = waypoint - - - - - Returns - 0 - Third Person Close - 1 - Third Person Mid - 2 - Third Person Far - 4 - First Person - - - - - Returns the type of camera: - 0 - Third Person Close - 1 - Third Person Mid - 2 - Third Person Far - 4 - First Person - - - - - p0 dosen't seem to change much, I tried it with 0, 1, 2: - 0-Pitch(X): -70.000092 - 0-Roll(Y): -0.000001 - 0-Yaw(Z): -43.886459 - 1-Pitch(X): -70.000092 - 1-Roll(Y): -0.000001 - 1-Yaw(Z): -43.886463 - 2-Pitch(X): -70.000092 - 2-Roll(Y): -0.000002 - 2-Yaw(Z): -43.886467 - - - - - Gets the ground elevation at the specified position. Note that if the specified position is below ground level, the function will output zero! - x: Position on the X-axis to get ground elevation at. - y: Position on the Y-axis to get ground elevation at. - z: Position on the Z-axis to get ground elevation at. - groundZ: The ground elevation at the specified position. - unk: Nearly always 0, very rarely 1 in the scripts. - - - - - p1 may be a BOOL representing whether or not the group even exists - - - - - Gets the (case-insensitive, lower-cased) hash value for the passed string. This uses the 'Jenkins one-at-a-time' hashing - algorithm. - - - - - Returns a hash representing which part of the map the given coords are located. - Possible return values: - (Hash of) city -> -289320599 - (Hash of) countryside -> 2072609373 - C# Example : - Ped player = Game.Player.Character; - Hash h = Function.Call<Hash>(Hash.GET_HASH_OF_MAP_AREA_AT_COORDS, player.Position.X, player.Position.Y, player.Position.Z); - - - - - dx = x1 - dy = y1 - - - - - HUD colors and their values: pastebin.com/d9aHPbXN - - - - - x1, y1, z1 -- Coords of your ped model - x2, y2, z2 -- Coords of the ped you want to switch to - - - - - Returns interior ID from specified coordinates. If coordinates are outside, then it returns 0. - Example for VB.NET - Dim interiorID As Integer = Native.Function.Call(Of Integer)(Hash.GET_INTERIOR_AT_COORDS, X, Y, Z) - - - - - Returns the interior ID representing the requested interior at that location (if found?). The supplied interior string is not the same as the one used to load the interior. - Use: INTERIOR::UNPIN_INTERIOR(INTERIOR::GET_INTERIOR_AT_COORDS_WITH_TYPE(x, y, z, interior)) - Interior types include: "V_Michael", "V_Franklins", "V_Franklinshouse", etc.. you can find them in the scripts. - Not a very useful native as you could just use GET_INTERIOR_AT_COORDS instead and get the same result, without even having to specify the interior type. - - - - - Returns the handle of the interior that the entity is in. Returns 0 if outside. - - - - - Returns the group ID of the specified interior. For example, regular interiors have group 0, subway interiors have group 1. There are a few other groups too. - - - - - false = Any resolution < 1280x720 - true = Any resolution >= 1280x720 - - - - - From the driver's perspective, is the left headlight broken. - - - - - Hash collision - - - - - gadgetHash - was always 0xFBAB5776 ("GADGET_PARACHUTE"). - - - - - From the driver's perspective, is the right headlight broken. - - - - - from docks_heistb.c4: - AI::GET_IS_TASK_ACTIVE(PLAYER::PLAYER_PED_ID(), 2)) - Known Tasks: pastebin.com/2gFqJ3Px - - - - - Returns true when in a vehicle, false whilst entering/exiting. - - - - - Check if Vehicle Secondary is avaliable for customize - - - - - For a full list, see here: pastebin.com/Tp0XpBMN - - - - - Setting Aspect Ratio Manually in game will return: - false - for Narrow format Aspect Ratios (3:2, 4:3, 5:4, etc. ) - true - for Wide format Aspect Ratios (5:3, 16:9, 16:10, etc. ) - Setting Aspect Ratio to "Auto" in game will return "false" or "true" based on the actual set Resolution Ratio. - - - - - Seems to do the exact same as INTERIOR::GET_ROOM_KEY_FROM_ENTITY - - - - - ``` - Landing gear states: - 0: Deployed - 1: Closing (Retracting) - 3: Opening (Deploying) - 4: Retracted - ``` - - Landing gear state 2 is never used. - - - - - Not exactly sure on this one, but here's a snippet of code: - if (PED::IS_PED_IN_ANY_VEHICLE(PLAYER::PLAYER_PED_ID(), 0)) { - v_2 = PED::GET_VEHICLE_PED_IS_IN(PLAYER::PLAYER_PED_ID(), 0); - } else { - v_2 = VEHICLE::_B2D06FAEDE65B577(); - } - - - - - Returns the length of the string passed (much like strlen). - - - - - Returns the string length of the string from the gxt string . - - - - - Second Param = LiveryIndex - example - int count = VEHICLE::GET_VEHICLE_LIVERY_COUNT(veh); - for (int i = 0; i < count; i++) - { - char* LiveryName = VEHICLE::GET_LIVERY_NAME(veh, i); - } - this example will work fine to fetch all names - for example for Sanchez we get - SANC_LV1 - SANC_LV2 - SANC_LV3 - SANC_LV4 - SANC_LV5 - Use _GET_LABEL_TEXT, to get the localized livery name. - ----------- - NOTE: You may need to set the vehicle's modKit to 0 by using this function: SET_VEHICLE_MOD_KIT() before getting the name, otherwise this native may return NULL. - dev-c.com/nativedb/func/info/1f2aa07f00b3217a - - - - - Gets local system time as year, month, day, hour, minute and second. - Example usage: - int year; - int month; - int day; - int hour; - int minute; - int second; - or use std::tm struct - TIME::GET_LOCAL_TIME(&year, &month, &day, &hour, &minute, &second); - - - - - This function is hard-coded to always return 0. - Limit is 96, see _GET_MAXIMUM_NUMBER_OF_PHOTOS_2 (0xDC54A7AF8B3A14EF). - - - - - p2 is mostly 1 in the scripts. - - - - - Gets the maximum wanted level the player can get. - Ranges from 0 to 5. - - - - - Gets the dimensions of a model. - Calculate (maximum - minimum) to get the size, in which case, Y will be how long the model is. - Vector3 GetDimensions(Hash model) - { - Vector3 right, left; - GET_MODEL_DIMENSIONS(model, &right, &left); - return Vector3::Subtract(left, right); - } - Example from the scripts: GAMEPLAY::GET_MODEL_DIMENSIONS(ENTITY::GET_ENTITY_MODEL(PLAYER::PLAYER_PED_ID()), &v_1A, &v_17); - - - - - Returns the name for the type of vehicle mod(Armour, engine etc) - ----------- - for some reason this native seems unreliable: sometimes returns NULL, and when retval != NULL the string can be empty - - - - - Returns the text label of a mod type for a given vehicle - Use _GET_LABEL_TEXT to get the part name in the game's language - - - - - Function just returns 0 - void __fastcall ped__get_mount(NativeContext *a1) - { - NativeContext *v1; // rbx@1 - v1 = a1; - GetAddressOfPedFromScriptHandle(a1->Args->Arg1); - v1->Returns->Item1= 0; - } - - - - - AIRP = Los Santos International Airport - ALAMO = Alamo Sea - ALTA = Alta - ARMYB = Fort Zancudo - BANHAMC = Banham Canyon Dr - BANNING = Banning - BEACH = Vespucci Beach - BHAMCA = Banham Canyon - BRADP = Braddock Pass - BRADT = Braddock Tunnel - BURTON = Burton - CALAFB = Calafia Bridge - CANNY = Raton Canyon - CCREAK = Cassidy Creek - CHAMH = Chamberlain Hills - CHIL = Vinewood Hills - CHU = Chumash - CMSW = Chiliad Mountain State Wilderness - CYPRE = Cypress Flats - DAVIS = Davis - DELBE = Del Perro Beach - DELPE = Del Perro - DELSOL = La Puerta - DESRT = Grand Senora Desert - DOWNT = Downtown - DTVINE = Downtown Vinewood - EAST_V = East Vinewood - EBURO = El Burro Heights - ELGORL = El Gordo Lighthouse - ELYSIAN = Elysian Island - GALFISH = Galilee - GOLF = GWC and Golfing Society - GRAPES = Grapeseed - GREATC = Great Chaparral - HARMO = Harmony - HAWICK = Hawick - HORS = Vinewood Racetrack - HUMLAB = Humane Labs and Research - JAIL = Bolingbroke Penitentiary - KOREAT = Little Seoul - LACT = Land Act Reservoir - LAGO = Lago Zancudo - LDAM = Land Act Dam - LEGSQU = Legion Square - LMESA = La Mesa - LOSPUER = La Puerta - MIRR = Mirror Park - MORN = Morningwood - MOVIE = Richards Majestic - MTCHIL = Mount Chiliad - MTGORDO = Mount Gordo - MTJOSE = Mount Josiah - MURRI = Murrieta Heights - NCHU = North Chumash - NOOSE = N.O.O.S.E - OCEANA = Pacific Ocean - PALCOV = Paleto Cove - PALETO = Paleto Bay - PALFOR = Paleto Forest - PALHIGH = Palomino Highlands - PALMPOW = Palmer-Taylor Power Station - PBLUFF = Pacific Bluffs - PBOX = Pillbox Hill - PROCOB = Procopio Beach - RANCHO = Rancho - RGLEN = Richman Glen - RICHM = Richman - ROCKF = Rockford Hills - RTRAK = Redwood Lights Track - SANAND = San Andreas - SANCHIA = San Chianski Mountain Range - SANDY = Sandy Shores - SKID = Mission Row - SLAB = Stab City - STAD = Maze Bank Arena - STRAW = Strawberry - TATAMO = Tataviam Mountains - TERMINA = Terminal - TEXTI = Textile City - TONGVAH = Tongva Hills - TONGVAV = Tongva Valley - VCANA = Vespucci Canals - VESP = Vespucci - VINE = Vinewood - WINDF = Ron Alternates Wind Farm - WVINE = West Vinewood - ZANCUDO = Zancudo River - ZP_ORT = Port of South Los Santos - ZQ_UAR = Davis Quartz - - - - - Looks like the last parameter returns true if the path has been calculated, while the first returns the remaining distance to the end of the path. - Return value of native is the same as GET_NAVMESH_ROUTE_RESULT - Looks like the native returns an int for the path's state: - 1 - ??? - 2 - 3 - Finished Generating - - - - - See GET_NAVMESH_ROUTE_DISTANCE_REMAINING for more details. - - - - - Could this be used alongside either, - SET_NETWORK_ID_EXISTS_ON_ALL_MACHINES or _SET_NETWORK_ID_SYNC_TO_PLAYER to make it so other players can hear the sound while online? It'd be a bit troll-fun to be able to play the Zancudo UFO creepy sounds globally. - - - - - Gets the next zone that has been disabled using SET_GPS_DISABLED_ZONE_AT_INDEX. - - - - - Returns weather name hash - - - - - See gtaforums.com/topic/843561-pathfind-node-types for node type info. 0 = paved road only, 1 = any road, 3 = water - p10 always equal 0x40400000 - p11 always equal 0 - - - - - Returns the id. - - - - - Get the nth closest vehicle node and its heading. (unknown2 = 9, unknown3 = 3.0, unknown4 = 2.5) - - - - - eventGroup: 0 = CEventGroupScriptAI, 1 = CEventGroupScriptNetwork - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - Need to check behavior when drawableId = -1 - - Doofy.Ass - Why this function doesn't work and return nill value? - GET_NUMBER_OF_PED_PROP_TEXTURE_VARIATIONS(PLAYER.PLAYER_PED_ID(), 0, 5) - tick: scripts/addins/menu_execute.lua:51: attempt to call field 'GET_NUMBER_OF_PED_PROP_TEXTURE_VARIATIONS' (a nil value) - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - Actually number of color combinations - - - - - Returns the number of *types* of licence plates, enumerated below in SET_VEHICLE_NUMBER_PLATE_TEXT_INDEX. - - - - - Gets the total number of DLC weapons. - - - - - Allowed Values from 0 - DLC1::GET_NUM_DLC_WEAPONS() - - - - - p0 appears to be for MP - - - - - p0 appears to be for MP - - - - - p0 appears to be for MP - - - - - Gets the amount of metadata values with the specified key existing in the specified resource's manifest. - See also: [Resource manifest](https://docs.fivem.net/resources/manifest/) - - - - - Returns how many possible mods a vehicle has for a given mod type - - - - - Simply returns whatever is passed to it (Regardless of whether the handle is valid or not). - - - - - Converts world coords (posX - Z) to coords relative to the entity - Example: - posX = 50 - posY = 1000 - posZ = 60 - Entity's coords are: x=30, y=1000, z=60. - All three returned coords will then be in range of [-20,20] depending on rotation of the entity. - - - - - Offset values are relative to the entity. - x = left/right - y = forward/backward - z = up/down - - - - - Returns NULL unless UPDATE_ONSCREEN_KEYBOARD() returns 1 in the same tick. - - - - - Returns: - 5 - 10 - 15 - 20 - 25 - 30 - 35 - - - - - gtaforums.com/topic/885580-ped-headshotmugshot-txd/ - - - - - Returns the ped's alertness (0-3). - Values : - 0 : Neutral - 1 : Heard something (gun shot, hit, etc) - 2 : Knows (the origin of the event) - 3 : Fully alerted (is facing the event?) - If the Ped does not exist, returns -1. - - - - - Returns an ammo type hash, which is defined in AmmoInfo. - - - - - from fm_mission_controller.c4 (variable names changed for clarity): - int groupID = PLAYER::GET_PLAYER_GROUP(PLAYER::PLAYER_ID()); - PED::GET_GROUP_SIZE(group, &unused, &groupSize); - if (groupSize >= 1) { - . . . . for (int memberNumber = 0; memberNumber < groupSize; memberNumber++) { - . . . . . . . . Ped ped1 = PED::GET_PED_AS_GROUP_MEMBER(groupID, memberNumber); - . . . . . . . . //and so on - - - - - Gets the position of the specified bone of the specified ped. - ped: The ped to get the position of a bone from. - boneId: The ID of the bone to get the position from. This is NOT the index. - offsetX: The X-component of the offset to add to the position relative to the bone's rotation. - offsetY: The Y-component of the offset to add to the position relative to the bone's rotation. - offsetZ: The Z-component of the offset to add to the position relative to the bone's rotation. - - - - - Bone ID enum: pastebin.com/3pz17QGd - - - - - Returns the hash of the weapon/model/object that killed the ped. - - - - - p2 is always 1 in the scripts. - if (GET_PED_CONFIG_FLAG(ped, 78, 1)) - = returns true if ped is aiming/shooting a gun - - - - - Ids - 1 - 2 - 3 - 4 - 5 - 6 - 7 - ------ - 8 - Accessories 1 - 9 - Accessories 2 - 10 - 11 - Auxiliary parts for torso - - - - - Gets the offset the specified ped has moved since the previous tick. - If worldSpace is false, the returned offset is relative to the ped. That is, if the ped has moved 1 meter right and 5 meters forward, it'll return 1,5,0. - If worldSpace is true, the returned offset is relative to the world. That is, if the ped has moved 1 meter on the X axis and 5 meters on the Y axis, it'll return 1,5,0. - - - - - A getter for [\_SET_PED_EYE_COLOR](#_0x50B56988B170AFDF). Returns -1 if fails to get. - - - - - A getter for [\_SET_PED_FACE_FEATURE](#_0x71A5C1DBA060049E). Returns 0.0 if fails to get. - - - - - hash collision??? - - - - - Returns the group id of which the specified ped is a member of. - - - - - A getter for [\_SET_PED_HAIR_COLOR](#_0x4CFFC65454C93A49). Returns -1 if fails to get. - - - - - A getter for [\_SET_PED_HAIR_COLOR](#_0x4CFFC65454C93A49). Returns -1 if fails to get. - - - - - A getter for [SET_PED_HEAD_OVERLAY](#_0x48F44967FA05CC1E) and [\_SET_PED_HEAD_OVERLAY_COLOR](#_0x497BF74A7B9CB952) natives. - - - - - Simply returns whatever is passed to it (Regardless of whether the handle is valid or not). - - - - - -1 (driver) <= index < GET_VEHICLE_MAX_NUMBER_OF_PASSENGERS(vehicle) - - - - - Pretty sure outBone is an int. - - - - - Pass ped. Pass address of Vector3. - The coord will be put into the Vector3. - The return will determine whether there was a coord found or not. - - - - - sizeAndPeds - is a pointer to an array. The array is filled with peds found nearby the ped supplied to the first argument. - ignore - ped type to ignore - Return value is the number of peds found and added to the array passed. - ----------------------------------- - To make this work in most menu bases at least in C++ do it like so, - Formatted Example: pastebin.com/D8an9wwp - ----------------------------------- - Example: gtaforums.com/topic/789788-function-args-to-pedget-ped-nearby-peds/?p=1067386687 - Here's the right way to do it (console and pc): - pastebin.com/SsFej963 - - - - - Returns size of array, passed into the second variable. - See below for usage information. - This function actually requires a struct, where the first value is the maximum number of elements to return. Here is a sample of how I was able to get it to work correctly, without yet knowing the struct format. - //Setup the array - const int numElements = 10; - const int arrSize = numElements * 2 + 2; - Any veh[arrSize]; - //0 index is the size of the array - veh[0] = numElements; - int count = PED::GET_PED_NEARBY_VEHICLES(PLAYER::PLAYER_PED_ID(), veh); - if (veh != NULL) - { - //Simple loop to go through results - for (int i = 0; i < count; i++) - { - int offsettedID = i * 2 + 2; - //Make sure it exists - if (veh[offsettedID] != NULL && ENTITY::DOES_ENTITY_EXIST(veh[offsettedID])) - { - //Do something - } - } - } - Here's the right way to do it (console and pc): - pastebin.com/SsFej963 - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - -1: no landing - 0: landing on both feet - 1: stumbling - 2: rolling - 3: ragdoll - - - - - Returns: - -1: Normal - 0: Wearing parachute on back - 1: Parachute opening - 2: Parachute open - 3: Falling to doom (e.g. after exiting parachute) - Normal means no parachute? - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - Returns the Entity (Ped, Vehicle, or ?Object?) that killed the 'ped' - Is best to check if the Ped is dead before asking for its killer. - - - - - Returns whether the entity is in stealth mode - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - Ped Types: (ordered by return priority) - Michael = 0 - Franklin = 1 - Trevor = 2 - Army = 29 - Animal = 28 - SWAT = 27 - LSFD = 21 - Paramedic = 20 - Cop = 6 - Male = 4 - Female = 5 - Human = 26 - Note/Exception - hc_gunman : 4 // Mix male and female - hc_hacker : 4 // Mix male and female - mp_f_misty_01 : 4 // Female character - s_f_y_ranger_01 : 5 // Ranger - s_m_y_ranger_01 : 4 // Ranger - s_m_y_uscg_01 : 6 // US Coast Guard - - - - - Returns the progress percent to current waypoint. - - - - - Alternative: GET_VEHICLE_PED_IS_IN(PLAYER_PED_ID(), 1); - - - - - Returns the group ID the player is member of. - - - - - Called 5 times in the scripts. All occurrences found in b617d, sorted alphabetically and identical lines removed: - AUDIO::GET_PLAYER_HEADSET_SOUND_ALTERNATE("INOUT", 0.0); - AUDIO::GET_PLAYER_HEADSET_SOUND_ALTERNATE("INOUT", 1.0); - - - - - Returns the same as PLAYER_ID and NETWORK_PLAYER_ID_TO_INT - - - - - Returns the Player's Invincible status. - This function will always return false if 0x733A643B5B0C53C1 is used to set the invincibility status. To always get the correct result, use this: - bool IsPlayerInvincible(Player player) - { - auto addr = getScriptHandleBaseAddress(GET_PLAYER_PED(player)); - if (addr) - { - DWORD flag = *(DWORD *)(addr + 0x188); - return ((flag & (1 << 8)) != 0) || ((flag & (1 << 9)) != 0); - } - return false; - } - ============================================================ - This has bothered me for too long, whoever may come across this, where did anyone ever come up with this made up hash? 0x733A643B5B0C53C1 I've looked all over old hash list, and this nativedb I can not find that PC hash anywhere. What native name is it now or was it? - - - - - Returns the players name - - - - - Tints: - None = -1, - Rainbow = 0, - Red = 1, - SeasideStripes = 2, - WidowMaker = 3, - Patriot = 4, - Blue = 5, - Black = 6, - Hornet = 7, - AirFocce = 8, - Desert = 9, - Shadow = 10, - HighAltitude = 11, - Airbone = 12, - Sunrise = 13, - - - - - Gets the ped for a specified player index. - - - - - Does the same like PLAYER::GET_PLAYER_PED<br/> - - - - - Returns 255 (radio off index) if the function fails. - - - - - Returns active radio station name - - - - - Tints: - None = -1, - Rainbow = 0, - Red = 1, - SeasideStripes = 2, - WidowMaker = 3, - Patriot = 4, - Blue = 5, - Black = 6, - Hornet = 7, - AirFocce = 8, - Desert = 9, - Shadow = 10, - HighAltitude = 11, - Airbone = 12, - Sunrise = 13, - - - - - Returns RGB color of the player - - - - - Assigns the handle of locked-on melee target to *entity that you pass it. - Returns false if no entity found. - - - - - Gets the player's team. - Does nothing in singleplayer. - - - - - p1 is some kind of tolerance - - - - - Gets system time as year, month, day, hour, minute and second. - Example usage: - int year; - int month; - int day; - int hour; - int minute; - int second; - TIME::GET_POSIX_TIME(&year, &month, &day, &hour, &minute, &second); - - - - - Returns current weather name hash - - - - - gtaforums.com/topic/799843-stats-profile-settings/ - - - - - Returns String with radio station name. - - - - - Another extremely useful native. - You can use it simply like: - if (GAMEPLAY::GET_RANDOM_INT_IN_RANGE(0, 2)) - - - - - Gets a random ped in the x/y/zRadius near the x/y/z coordinates passed. - Ped Types: - Any = -1 - Player = 1 - Male = 4 - Female = 5 - Cop = 6 - Human = 26 - SWAT = 27 - Animal = 28 - Army = 29 - - - - - Gets a random vehicle in a sphere at the specified position, of the specified radius. - x: The X-component of the position of the sphere. - y: The Y-component of the position of the sphere. - z: The Z-component of the position of the sphere. - radius: The radius of the sphere. Max is 9999.9004. - modelHash: The vehicle model to limit the selection to. Pass 0 for any model. - flags: The bitwise flags that modifies the behaviour of this function. - - - - - Not present in the retail version! It's just a nullsub. - p0 always true (except in one case) - p1 a random vehicle hash loaded in memory - p2 0 if success, -1 if failed - - - - - Returns all commands that are registered in the command system. - The data returned adheres to the following layout: - - ``` - [ - { - "name": "cmdlist" - }, - { - "name": "command1" - } - ] - ``` - - - - - Gets the relationship between two groups. This should be called twice (once for each group). - Relationship types: - 0 = Companion - 1 = Respect - 2 = Like - 3 = Neutral - 4 = Dislike - 5 = Hate - 255 = Pedestrians - Example: - PED::GET_RELATIONSHIP_BETWEEN_GROUPS(l_1017, 0xA49E591C); - PED::GET_RELATIONSHIP_BETWEEN_GROUPS(0xA49E591C, l_1017); - - - - - Gets the relationship between two peds. This should be called twice (once for each ped). - Relationship types: - 0 = Companion - 1 = Respect - 2 = Like - 3 = Neutral - 4 = Dislike - 5 = Hate - 255 = Pedestrians - (Credits: Inco) - Example: - PED::GET_RELATIONSHIP_BETWEEN_PEDS(2, l_1017, 0xA49E591C); - PED::GET_RELATIONSHIP_BETWEEN_PEDS(2, 0xA49E591C, l_1017); - - - - - Gets the metadata value at a specified key/index from a resource's manifest. - See also: [Resource manifest](https://docs.fivem.net/resources/manifest/) - - - - - Returns the current state of the specified resource. - - - - - Gets the room hash key from the room that the specified entity is in. Each room in every interior has a unique key. Returns 0 if the entity is outside. - - - - - Gets the height of the specified runtime texture. - - - - - Gets the row pitch of the specified runtime texture, for use when creating data for `SET_RUNTIME_TEXTURE_ARGB_DATA`. - - - - - Gets the width of the specified runtime texture. - - - - - When onGround == true outPosition is a position located on the nearest pavement. - When a safe coord could not be found the result of a function is false and outPosition == Vector3.Zero. - In the scripts these flags are used: 0, 14, 12, 16, 20, 21, 28. 0 is most commonly used, then 16. - 16 works for me, 0 crashed the script. - - - - - Gets the scale of safe zone. if the safe zone size scale is max, it will return 1.0. - - - - - Used to get a return value from a scaleform function. - Returns an int in the same way `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_STRING` returns a string. - - Old description: - - ``` - Needs a bit more research, but it seems to return an int. - Testing with the scaleform "HACKING_PC" it seems to return an int depending on the clicked App/Program ID - "agency_heist3b.ysc", line 71836: - if (CONTROLS::IS_CONTROL_JUST_PRESSED(2, 201) || CONTROLS::IS_CONTROL_JUST_PRESSED(2, 237)) { - GRAPHICS::BEGIN_SCALEFORM_MOVIE_METHOD(l_46, "SET_INPUT_EVENT_SELECT"); - l_45 = GRAPHICS::_END_SCALEFORM_MOVIE_METHOD_RETURN(); - } - if (GRAPHICS::IS_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_READY(l_45)) { - v_13 = GRAPHICS::GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT(l_45); - if (v_13 == 6) { - sub_73269(a_0); - } - } - ``` - - - - - Used to get a return value from a scaleform function. - Returns a string in the same way GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT returns an int. - - - - - Convert a world coordinate into its relative screen coordinate. (WorldToScreen) - Returns a boolean; whether or not the operation was successful. It will return false if the coordinates given are not visible to the rendering camera. - For .NET users... - VB: - Public Shared Function World3DToScreen2d(pos as vector3) As Vector2 - Dim x2dp, y2dp As New Native.OutputArgument - Native.Function.Call(Of Boolean)(Native.Hash.GET_SCREEN_COORD_FROM_WORLD_COORD , pos.x, pos.y, pos.z, x2dp, y2dp) - Return New Vector2(x2dp.GetResult(Of Single), y2dp.GetResult(Of Single)) - End Function - C#: - Vector2 World3DToScreen2d(Vector3 pos) - { - var x2dp = new OutputArgument(); - var y2dp = new OutputArgument(); - Function.Call<bool>(Hash.GET_SCREEN_COORD_FROM_WORLD_COORD , pos.X, pos.Y, pos.Z, x2dp, y2dp); - return new Vector2(x2dp.GetResult<float>(), y2dp.GetResult<float>()); - } - //USE VERY SMALL VALUES FOR THE SCALE OF RECTS/TEXT because it is dramatically larger on screen than in 3D, e.g '0.05' small. - Used to be called _WORLD3D_TO_SCREEN2D - I thought we lost you from the scene forever. It does seem however that calling SET_DRAW_ORIGIN then your natives, then ending it. Seems to work better for certain things such as keeping boxes around people for a predator missile e.g. - - - - - int screenresx,screenresy; - GET_SCREEN_RESOLUTION(&screenresx,&screenresy); - Hardcoded to always return 1280 x 720 - - - - - Gets the status of a script-assigned task. The hash does not seem to match the actual native name, but is assigned hardcoded from the executable during task creation. - Statuses are specific to tasks, in addition '7' means the specified task is not assigned to the ped. - A few hashes found in the executable (although not a complete list) can be found at pastebin.com/R9iK6M9W as it was too long for this wiki. - - - - - Returns the hash of the weapon. - var num7 = WEAPON::GET_SELECTED_PED_WEAPON(num4); - sub_27D3(num7); - switch (num7) - { - case 0x24B17070: - Also see WEAPON::GET_CURRENT_PED_WEAPON. Difference? - ------------------------------------------------------------------------- - The difference is that GET_SELECTED_PED_WEAPON simply returns the ped's current weapon hash but GET_CURRENT_PED_WEAPON also checks the weapon object and returns true if the hash of the weapon object equals the weapon hash - - - - - returned values: - 0 to 7 = task that's currently in progress, 0 meaning the first one. - - - - - Parameters: - rayHandle - Ray Handle from a casted ray, as returned by CAST_RAY_POINT_TO_POINT - hit - Where to store whether or not it hit anything. False is when the ray reached its destination. - endCoords - Where to store the world-coords of where the ray was stopped (by hitting its desired max range or by colliding with an entity/the map) - surfaceNormal - Where to store the surface-normal coords (NOT relative to the game world) of where the entity was hit by the ray - entityHit - Where to store the handle of the entity hit by the ray - Returns: - Result? Some type of enum. - NOTE: To get the offset-coords of where the ray hit relative to the entity that it hit (which is NOT the same as surfaceNormal), you can use these two natives: - Vector3 offset = ENTITY::GET_OFFSET_FROM_ENTITY_GIVEN_WORLD_COORDS(entityHit, endCoords.x, endCoords.y, endCoords.z); - Vector3 entitySpotCoords = ENTITY::GET_OFFSET_FROM_ENTITY_IN_WORLD_COORDS(entityHit, offset.x, offset.y, offset.z); - Use ENTITY::GET_ENTITY_TYPE(entityHit) to quickly distinguish what type of entity you hit (ped/vehicle/object - 1/2/3) - - - - - struct Outfit_s - { - int mask, torso, pants, parachute, shoes, misc1, tops1, armour, crew, tops2, hat, glasses, earpiece; - int maskTexture, torsoTexture, pantsTexture, parachuteTexture, shoesTexture, misc1Texture, tops1Texture, - armourTexture, crewTexture, tops2Texture, hatTexture, glassesTexture, earpieceTexture; - }; - - - - - locked is 0 if no door is found - locked is 0 if door is unlocked - locked is 1 if door is found and unlocked. - ------------- - the locked bool is either 0(unlocked)(false) or 1(locked)(true) - - - - - Determines the name of the street which is the closest to the given coordinates. - x,y,z - the coordinates of the street - streetName - returns a hash to the name of the street the coords are on - crossingRoad - if the coordinates are on an intersection, a hash to the name of the crossing road - Note: the names are returned as hashes, the strings can be returned using the function UI::GET_STREET_NAME_FROM_HASH_KEY. - - - - - This functions converts the hash of a street name into a readable string. - For how to get the hashes, see PATHFIND::GET_STREET_NAME_AT_COORD. - - - - - Returns the texture resolution of the passed texture dict+name. - Note: Most texture resolutions are doubled compared to the console version of the game. - - - - - Only use for this in the PC scripts is: - if (GRAPHICS::GET_TIMECYCLE_MODIFIER_INDEX() != -1) - For a full list, see here: pastebin.com/cnk7FTF2 - can someone update this pastebin??? - - - - - Previously named, '_FORMAT_TIME' for people who can't find it's uses in decompiled scripts. - - - - - Subtracts the second argument from the first. - - - - - Adds the first argument to the second. - - - - - Returns the time since the character was arrested in (ms) milliseconds. - example - var time = Function.call<int>(Hash.GET_TIME_SINCE_LAST_ARREST(); - UI.DrawSubtitle(time.ToString()); - if player has not been arrested, the int returned will be -1. - - - - - Returns the time since the character died in (ms) milliseconds. - example - var time = Function.call<int>(Hash.GET_TIME_SINCE_LAST_DEATH(); - UI.DrawSubtitle(time.ToString()); - if player has not died, the int returned will be -1. - - - - - Corrected p1. it's basically the 'carriage/trailer number'. So if the train has 3 trailers you'd call the native once with a var or 3 times with 1, 2, 3. - - - - - static - max acceleration - - - - - Returns attached vehicle (Vehicle in parameter must be cargobob) - - - - - Seems related to vehicle health, like the one in IV. - Max 1000, min 0. - Vehicle does not necessarily explode or become undrivable at 0. - - - - - iVar3 = get_vehicle_cause_of_destruction(uLocal_248[iVar2]); - if (iVar3 == joaat("weapon_stickybomb")) - { - func_171(726); - iLocal_260 = 1; - } - - - - - Returns an int - Vehicle Classes: - 0: Compacts - 1: Sedans - 2: SUVs - 3: Coupes - 4: Muscle - 5: Sports Classics - 6: Sports - 7: Super - 8: Motorcycles - 9: Off-road - 10: Industrial - 11: Utility - 12: Vans - 13: Cycles - 14: Boats - 15: Helicopters - 16: Planes - 17: Service - 18: Emergency - 19: Military - 20: Commercial - 21: Trains - char buffer[128]; - std::sprintf(buffer, "VEH_CLASS_%i", VEHICLE::GET_VEHICLE_CLASS(vehicle)); - char* className = UI::_GET_LABEL_TEXT(buffer); - - - - - For a full enum, see here : pastebin.com/i2GGAjY0 - char buffer[128]; - std::sprintf(buffer, "VEH_CLASS_%i", VEHICLE::GET_VEHICLE_CLASS_FROM_NAME (hash)); - char* className = UI::_GET_LABEL_TEXT(buffer); - - - - - What's this for? Primary and Secondary RGB have their own natives and this one doesn't seem specific. - - - - - Returns hash of default vehicle horn - Hash is stored in audVehicleAudioEntity - - - - - The only example I can find of this function in the scripts, is this: - struct _s = VEHICLE::GET_VEHICLE_DEFORMATION_AT_POS(rPtr((A_0) + 4), 1.21f, 6.15f, 0.3f); - ----------------------------------------------------------------------------------------------------------------------------------------- - PC scripts: - v_5 -- [[{3}]] = VEHICLE::GET_VEHICLE_DEFORMATION_AT_POS(a_0._f1, 1.21, 6.15, 0.3); - - - - - Dirt level 0..15 - - - - - example in vb: - Public Shared Function Get_Vehicle_Door_Angle(Vehicle As Vehicle, Door As VehicleDoor) As Single - Return Native.Function.Call(Of Single)(Hash.GET_VEHICLE_DOOR_ANGLE_RATIO, Vehicle.Handle, Door) - End Function - I'm Not MentaL - - - - - 2 seems to disable getting vehicle in modshop - - - - - Returns 1000.0 if the function is unable to get the address of the specified vehicle or if it's not a vehicle. - Minimum: -4000 - Maximum: 1000 - -4000: Engine is destroyed - 0 and below: Engine catches fire and health rapidly declines - 300: Engine is smoking and losing functionality - 1000: Engine is perfect - - - - - formerly known as _GET_VEHICLE_PAINT_FADE - The result is a value from 0-1, where 0 is fresh paint. - ----------------------------------------------------------------------- - The actual value isn't stored as a float but as an unsigned char (BYTE). - - - - - Returns the effective handling data of a vehicle as a floating-point value. - Example: `local fSteeringLock = GetVehicleHandlingFloat(vehicle, 'CHandlingData', 'fSteeringLock')` - - - - - Returns the effective handling data of a vehicle as an integer value. - Example: `local modelFlags = GetVehicleHandlingInt(vehicle, 'CHandlingData', 'strModelFlags')` - - - - - Returns the effective handling data of a vehicle as a vector value. - Example: `local inertiaMultiplier = GetVehicleHandlingVector(vehicle, 'CHandlingData', 'vecInertiaMultiplier')` - - - - - Simply returns whatever is passed to it (Regardless of whether the handle is valid or not). - - - - - Gets the vehicle indicator light state. 0 = off, 1 = left, 2 = right, 3 = both - - - - - -1 = no livery - - - - - Returns -1 if the vehicle has no livery - - - - - In b944, there are 50 (0 - 49) mod types. - Returns -1 if the vehicle mod is stock - - - - - Returns the acceleration of the specified model. - For a full list, see here: pastebin.com/GaN6vT4R - - - - - Returns max braking of the specified vehicle model. - For a full list, see here: pastebin.com/3N8DVbpG - - - - - Returns max traction of the specified vehicle model. - For a full list, see here: pastebin.com/ERnntVjK - - - - - Returns max number of passengers (including the driver) for the specified vehicle model. - For a full list, see here: pastebin.com/MdETCS1j - - - - - p3 seems to be the pearlescent highlight color. - Seems redondant with void GET_VEHICLE_EXTRA_COLOURS(Vehicle vehicle, int *pearlescentColor, int *wheelColor) - - - - - returns a string which is the codename of the vehicle's currently selected primary color - p1 is always 0 - - - - - returns a string which is the codename of the vehicle's currently selected secondary color - - - - - Returns true if the wheels are custom wheels - - - - - Calling this with an invalid node id, will crash the game. - Note that IS_VEHICLE_NODE_ID_VALID simply checks if nodeId is not zero. It does not actually ensure that the id is valid. - Eg. IS_VEHICLE_NODE_ID_VALID(1) will return true, but will crash when calling GET_VEHICLE_NODE_POSITION(). - sfink: This native returns a pointer to a packed Vector3 struct in the RAX register, as do the following natives: - AI::WAYPOINT_RECORDING_GET_COORD - ENTITY::GET_ENTITY_MATRIX - FIRE::GET_CLOSEST_FIRE_POS - GAMEPLAY::FIND_SPAWN_POINT_IN_DIRECTION - GAMEPLAY::GET_MODEL_DIMENSIONS - GAMEPLAY::OVERRIDE_SAVE_HOUSE - GAMEPLAY::_0x82FDE6A57EE4EE44 - GAMEPLAY::_0x8BDC7BFC57A81E76 - GAMEPLAY::_0x8D7A43EC6A5FEA45 - GAMEPLAY::_0xA4A0065E39C9F25C - GAMEPLAY::_0xDFB4138EEFED7B81 - MOBILE::GET_MOBILE_PHONE_POSITION - MOBILE::GET_MOBILE_PHONE_ROTATION - NETWORK::NETWORK_GET_RESPAWN_RESULT - OBJECT::_0x163F8B586BC95F2A - PATHFIND::GET_CLOSEST_MAJOR_VEHICLE_NODE - PATHFIND::GET_CLOSEST_ROAD - PATHFIND::GET_CLOSEST_VEHICLE_NODE - PATHFIND::GET_CLOSEST_VEHICLE_NODE_WITH_HEADING - PATHFIND::GET_NTH_CLOSEST_VEHICLE_NODE - PATHFIND::GET_NTH_CLOSEST_VEHICLE_NODE_FAVOUR_DIRECTION - PATHFIND::GET_NTH_CLOSEST_VEHICLE_NODE_WITH_HEADING - PATHFIND::GET_RANDOM_VEHICLE_NODE - PATHFIND::GET_SAFE_COORD_FOR_PED - PATHFIND::GET_VEHICLE_NODE_POSITION - PATHFIND::_0x16F46FB18C8009E4 - VEHICLE::_0xA4822F1CF23F4810 - VEHICLE::_0xDF7E3EEB29642C38 - WATER::TEST_PROBE_AGAINST_ALL_WATER - WATER::TEST_PROBE_AGAINST_WATER - WEAPON::GET_PED_LAST_WEAPON_IMPACT_COORD - WORLDPROBE::_0xFF6BE494C7987F34 - WORLDPROBE::_GET_RAYCAST_RESULT - - - - - MulleDK19: Gets the density and flags of the closest node to the specified position. - Density is a value between 0 and 15, indicating how busy the road is. - Flags is a bit field. - - - - - Gets the number of passengers, NOT including the driver. Use IS_VEHICLE_SEAT_FREE(Vehicle, -1) to also check for the driver - - - - - Returns the license plate text from a vehicle. 8 chars maximum. - - - - - Returns the PlateType of a vehicle - Blue_on_White_1 = 3, - Blue_on_White_2 = 0, - Blue_on_White_3 = 4, - Yellow_on_Blue = 2, - Yellow_on_Black = 1, - North_Yankton = 5, - - - - - Gets the vehicle the specified Ped is/was in depending on bool value. - - - - - Should be renamed GET_CAR_PED_IS_TRYING_TO_ENTER... - Because this works only for cars, not for helis, planes,motorcycles or bicycles... - From Calderon - This is what R* named it, deal with it. - - - - - Gets ID of vehicle player using. It means it can get ID at any interaction with vehicle. Enter\exit for example. And that means it is faster than GET_VEHICLE_PED_IS_IN but less safe. - - - - - 1000 is max health - Begins leaking gas at around 650 health - - - - - Gets the trailer of a vehicle and puts it into the trailer parameter. - - - - - List of known states: - - ``` - 1: Not wheeling. - 65: Vehicle is ready to do wheelie (burnouting). - 129: Vehicle is doing wheelie. - ``` - - - - - Gets speed of a wheel at the tyre. - Max number of wheels can be retrieved with the native GET_VEHICLE_NUMBER_OF_WHEELS. - - - - - Returns an int - Wheel Types: - 0: Sport - 1: Muscle - 2: Lowrider - 3: SUV - 4: Offroad - 5: Tuner - 6: Bike Wheels - 7: High End - Tested in Los Santos Customs - - - - - Returns the offset of the specified wheel relative to the wheel's axle center. - - - - - Remnant from GTA IV. Does nothing in GTA V. - - - - - Drft - - - - - This function set height to the value of z-axis of the water surface. - This function works with sea and lake. However it does not work with shallow rivers (e.g. raton canyon will return -100000.0f) - note: seems to return true when you are in water - - - - - Returns the model of any weapon. - Can also take an ammo hash? - sub_6663a(&l_115B, WEAPON::GET_WEAPONTYPE_MODEL(${ammo_rpg})); - - - - - // Returns the size of the default weapon component clip. - Use it like this: - char cClipSize[32]; - Hash cur; - if (WEAPON::GET_CURRENT_PED_WEAPON(playerPed, &cur, 1)) - { - if (WEAPON::IS_WEAPON_VALID(cur)) - { - int iClipSize = WEAPON::GET_WEAPON_CLIP_SIZE(cur); - sprintf_s(cClipSize, "ClipSize: %.d", iClipSize); - vDrawString(cClipSize, 0.5f, 0.5f); - } - } - - - - - 0=unknown (or incorrect weaponHash) - 1= no damage (flare,snowball, petrolcan) - 2=melee - 3=bullet - 4=force ragdoll fall - 5=explosive (RPG, Railgun, grenade) - 6=fire(molotov) - 8=fall(WEAPON_HELI_CRASH) - 10=electric - 11=barbed wire - 12=extinguisher - 13=gas - 14=water cannon(WEAPON_HIT_BY_WATER_CANNON) - - - - - // members should be aligned to 8 bytes by default but it's best to use alignas here, just to be sure - struct WeaponHudStatsData - { - alignas(8) uint8_t hudDamage; // 0x0000 - alignas(8) uint8_t hudSpeed; // 0x0008 - alignas(8) uint8_t hudCapacity; // 0x0010 - alignas(8) uint8_t hudAccuracy; // 0x0018 - alignas(8) uint8_t hudRange; // 0x0020 - }; - Usage: - WeaponHudStatsData data; - if (GET_WEAPON_HUD_STATS(weaponHash, (Any*)&data)) - { - // uint8_t damagePercentage = data.hudDamage etc... - } - - - - - Drops the current weapon and returns the object - Unknown behavior when unarmed. - - - - - Returns the coordinates of an entity-bone. - - - - - 'zoneName' corresponds to an entry in 'popzone.ipl'. - AIRP = Los Santos International Airport - ALAMO = Alamo Sea - ALTA = Alta - ARMYB = Fort Zancudo - BANHAMC = Banham Canyon Dr - BANNING = Banning - BEACH = Vespucci Beach - BHAMCA = Banham Canyon - BRADP = Braddock Pass - BRADT = Braddock Tunnel - BURTON = Burton - CALAFB = Calafia Bridge - CANNY = Raton Canyon - CCREAK = Cassidy Creek - CHAMH = Chamberlain Hills - CHIL = Vinewood Hills - CHU = Chumash - CMSW = Chiliad Mountain State Wilderness - CYPRE = Cypress Flats - DAVIS = Davis - DELBE = Del Perro Beach - DELPE = Del Perro - DELSOL = La Puerta - DESRT = Grand Senora Desert - DOWNT = Downtown - DTVINE = Downtown Vinewood - EAST_V = East Vinewood - EBURO = El Burro Heights - ELGORL = El Gordo Lighthouse - ELYSIAN = Elysian Island - GALFISH = Galilee - GOLF = GWC and Golfing Society - GRAPES = Grapeseed - GREATC = Great Chaparral - HARMO = Harmony - HAWICK = Hawick - HORS = Vinewood Racetrack - HUMLAB = Humane Labs and Research - JAIL = Bolingbroke Penitentiary - KOREAT = Little Seoul - LACT = Land Act Reservoir - LAGO = Lago Zancudo - LDAM = Land Act Dam - LEGSQU = Legion Square - LMESA = La Mesa - LOSPUER = La Puerta - MIRR = Mirror Park - MORN = Morningwood - MOVIE = Richards Majestic - MTCHIL = Mount Chiliad - MTGORDO = Mount Gordo - MTJOSE = Mount Josiah - MURRI = Murrieta Heights - NCHU = North Chumash - NOOSE = N.O.O.S.E - OCEANA = Pacific Ocean - PALCOV = Paleto Cove - PALETO = Paleto Bay - PALFOR = Paleto Forest - PALHIGH = Palomino Highlands - PALMPOW = Palmer-Taylor Power Station - PBLUFF = Pacific Bluffs - PBOX = Pillbox Hill - PROCOB = Procopio Beach - RANCHO = Rancho - RGLEN = Richman Glen - RICHM = Richman - ROCKF = Rockford Hills - RTRAK = Redwood Lights Track - SANAND = San Andreas - SANCHIA = San Chianski Mountain Range - SANDY = Sandy Shores - SKID = Mission Row - SLAB = Stab City - STAD = Maze Bank Arena - STRAW = Strawberry - TATAMO = Tataviam Mountains - TERMINA = Terminal - TEXTI = Textile City - TONGVAH = Tongva Hills - TONGVAV = Tongva Valley - VCANA = Vespucci Canals - VESP = Vespucci - VINE = Vinewood - WINDF = Ron Alternates Wind Farm - WVINE = West Vinewood - ZANCUDO = Zancudo River - ZP_ORT = Port of South Los Santos - ZQ_UAR = Davis Quartz - - - - - cellphone range 1- 5 used for signal bar in iFruit phone - - - - - Achievements from 0-57 - more achievements came with update 1.29 (freemode events update), I'd say that they now go to 60, but I'll need to check. - - - - - Gives a weapon to PED with a delay, example: - WEAPON::GIVE_DELAYED_WEAPON_TO_PED(PED::PLAYER_PED_ID(), GAMEPLAY::GET_HASH_KEY("WEAPON_PISTOL"), 1000, false) - ---------------------------------------------------------------------------------------------------------------------------------------- - Translation table: - pastebin.com/a39K8Nz8 - - - - - PoliceMotorcycleHelmet 1024 - RegularMotorcycleHelmet 4096 - FiremanHelmet 16384 - PilotHeadset 32768 - PilotHelmet 65536 - -- - p2 is generally 4096 or 16384 in the scripts. p1 varies between 1 and 0. - - - - - Sends the message that was created by a call to CREATE_NM_MESSAGE to the specified Ped. - If a message hasn't been created already, this function does nothing. - If the Ped is not ragdolled with Euphoria enabled, this function does nothing. - The following call can be used to ragdoll the Ped with Euphoria enabled: SET_PED_TO_RAGDOLL(ped, 4000, 5000, 1, 1, 1, 0); - Call order: - SET_PED_TO_RAGDOLL - CREATE_NM_MESSAGE - GIVE_PED_NM_MESSAGE - Multiple messages can be chained. Eg. to make the ped stagger and swing his arms around, the following calls can be made: - SET_PED_TO_RAGDOLL(ped, 4000, 5000, 1, 1, 1, 0); - CREATE_NM_MESSAGE(true, 0); // stopAllBehaviours - Stop all other behaviours, in case the Ped is already doing some Euphoria stuff. - GIVE_PED_NM_MESSAGE(ped); // Dispatch message to Ped. - CREATE_NM_MESSAGE(true, 1151); // staggerFall - Attempt to walk while falling. - GIVE_PED_NM_MESSAGE(ped); // Dispatch message to Ped. - CREATE_NM_MESSAGE(true, 372); // armsWindmill - Swing arms around. - GIVE_PED_NM_MESSAGE(ped); // Dispatch message to Ped. - - - - - p1 is either 1 or 2 in the PC scripts. - - - - - addonHash: - (use WEAPON::GET_WEAPON_COMPONENT_TYPE_MODEL() to get hash value) - ^ Wrong. - AddonHash is NOT a model hash, it's the weapon component hash. - ${component_at_ar_flsh}, ${component_at_ar_supp}, ${component_at_pi_flsh}, ${component_at_scope_large}, ${component_at_ar_supp_02} - - - - - isHidden - ???? - All weapon names (add to the list if something is missing), use GAMEPLAY::GET_HASH_KEY((char *)weaponNames[i]) to get get the hash: - static LPCSTR weaponNames[] = { - "WEAPON_KNIFE", "WEAPON_NIGHTSTICK", "WEAPON_HAMMER", "WEAPON_BAT", "WEAPON_GOLFCLUB", - "WEAPON_CROWBAR", "WEAPON_PISTOL", "WEAPON_COMBATPISTOL", "WEAPON_APPISTOL", "WEAPON_PISTOL50", - "WEAPON_MICROSMG", "WEAPON_SMG", "WEAPON_ASSAULTSMG", "WEAPON_ASSAULTRIFLE", - "WEAPON_CARBINERIFLE", "WEAPON_ADVANCEDRIFLE", "WEAPON_MG", "WEAPON_COMBATMG", "WEAPON_PUMPSHOTGUN", - "WEAPON_SAWNOFFSHOTGUN", "WEAPON_ASSAULTSHOTGUN", "WEAPON_BULLPUPSHOTGUN", "WEAPON_STUNGUN", "WEAPON_SNIPERRIFLE", - "WEAPON_HEAVYSNIPER", "WEAPON_GRENADELAUNCHER", "WEAPON_GRENADELAUNCHER_SMOKE", "WEAPON_RPG", "WEAPON_MINIGUN", - "WEAPON_GRENADE", "WEAPON_STICKYBOMB", "WEAPON_SMOKEGRENADE", "WEAPON_BZGAS", "WEAPON_MOLOTOV", - "WEAPON_FIREEXTINGUISHER", "WEAPON_PETROLCAN", "WEAPON_FLARE", "WEAPON_SNSPISTOL", "WEAPON_SPECIALCARBINE", - "WEAPON_HEAVYPISTOL", "WEAPON_BULLPUPRIFLE", "WEAPON_HOMINGLAUNCHER", "WEAPON_PROXMINE", "WEAPON_SNOWBALL", - "WEAPON_VINTAGEPISTOL", "WEAPON_DAGGER", "WEAPON_FIREWORK", "WEAPON_MUSKET", "WEAPON_MARKSMANRIFLE", - "WEAPON_HEAVYSHOTGUN", "WEAPON_GUSENBERG", "WEAPON_HATCHET", "WEAPON_RAILGUN", "WEAPON_COMBATPDW", - "WEAPON_KNUCKLE", "WEAPON_MARKSMANPISTOL", "WEAPON_FLASHLIGHT", "WEAPON_MACHETE", "WEAPON_MACHINEPISTOL", - "WEAPON_SWITCHBLADE", "WEAPON_REVOLVER", "WEAPON_COMPACTRIFLE", "WEAPON_DBSHOTGUN", "WEAPON_FLAREGUN", - "WEAPON_AUTOSHOTGUN", "WEAPON_BATTLEAXE", "WEAPON_COMPACTLAUNCHER", "WEAPON_MINISMG", "WEAPON_PIPEBOMB", - "WEAPON_POOLCUE", "WEAPON_SWEEPER", "WEAPON_WRENCH" - }; - ---------------------------------------------------------------------------------------------------------------------------------------- - Translation table: - pastebin.com/a39K8Nz8 - - - - - if (ENTITY::HAS_ANIM_EVENT_FIRED(PLAYER::PLAYER_PED_ID(), GAMEPLAY::GET_HASH_KEY("CreateObject"))) - - - - - Gets whether the specified animation set has finished loading. An animation set provides movement animations for a ped. See SET_PED_MOVEMENT_CLIPSET. - Animation set and clip set are synonymous. - - - - - p3 - possibly radius? - - - - - Alias for HAS_ANIM_SET_LOADED. - - - - - P3 is always 3 as far as i cant tell - Animations List : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Entity 1 = Victim - Entity 2 = Attacker - p2 seems to always be 1 - - - - - It determines what weapons caused damage: - If youu want to define only a specific weapon, second parameter=weapon hash code, third parameter=0 - If you want to define any melee weapon, second parameter=0, third parameter=1. - If you want to identify any weapon (firearms, melee, rockets, etc.), second parameter=0, third parameter=2. - - - - - traceType is always 17 in the scripts. - There is other codes used for traceType: - 19 - in jewelry_prep1a - 126 - in am_hunt_the_beast - 256 & 287 - in fm_mission_controller - - - - - Has the entity1 got a clear line of sight to the other entity2 from the direction entity1 is facing. - This is one of the most CPU demanding BOOL natives in the game; avoid calling this in things like nested for-loops - - - - - Called on tick. - Tested with vehicles, returns true whenever the vehicle is touching any entity. - Note: for vehicles, the wheels can touch the ground and it will still return false, but if the body of the vehicle touches the ground, it will return true. - - - - - Returns whether or not the specific minimap overlay has loaded. - - - - - Checks if the specified model has loaded into memory. - - - - - assetName = For example "core" - - - - - It determines what weapons caused damage: - If you want to define only a specific weapon, second parameter=weapon hash code, third parameter=0 - If you want to define any melee weapon, second parameter=0, third parameter=1. - If you want to identify any weapon (firearms, melee, rockets, etc.), second parameter=0, third parameter=2. - - - - - p2 should be FALSE, otherwise it seems to always return FALSE - Bool does not check if the weapon is current equipped, unfortunately. - - - - - Gets the player's info and calls a function that checks the player's ped position. - Here's the decompiled function that checks the position: pastebin.com/ZdHG2E7n - - - - - Returns if a script has been loaded into the game. Used to see if a script was loaded after requesting. - For a full list, see here: pastebin.com/yLNWicUi - - - - - Checks if the specified gxt has loaded into the passed slot. - - - - - Third Parameter = unsure, but pretty sure it is weapon hash - --> get_hash_key("weapon_stickybomb") - Fourth Parameter = unsure, almost always -1 - - - - - I think this works, but seems to prohibit switching to other weapons (or accessing the weapon wheel) - - - - - Hides the players weapon during a cutscene. - - - - - Hash collision - If used with a Ped that has an AI blip as the first argument: - - if p1 is true, a view cone is displayed with the AI blip - - - - - Simply returns whatever is passed to it (Regardless of whether the handle is valid or not). - -------------------------------------------------------- - if (NETWORK::NETWORK_IS_PARTICIPANT_ACTIVE(PLAYER::INT_TO_PARTICIPANTINDEX(i))) - - - - - Simply returns whatever is passed to it (Regardless of whether the handle is valid or not). - - - - - Resets the idle camera timer. Calling this in a loop will disable the idle camera. - - - - - Example: - bool playing = AUDIO::IS_ALARM_PLAYING("PORT_OF_LS_HEIST_FORT_ZANCUDO_ALARMS"); - - - - - Common in the scripts: - AUDIO::IS_AMBIENT_SPEECH_DISABLED(PLAYER::PLAYER_PED_ID()); - - - - - if (GAMEPLAY::IS_AUSSIE_VERSION()) { - sub_127a9(&l_31, 1024); // l_31 |= 1024 - l_129 = 3; - sub_129d2("AUSSIE VERSION IS TRUE!?!?!"); // DEBUG - } - Used to block some of the prostitute stuff due to laws in Australia. - - - - - <!-- Native implemented by Disquse. 0xFFF65C63 --> - - Returns true if the minimap is currently expanded. False if it's the normal minimap state. - Use [`IsBigmapFull`](#_0x66EE14B2) to check if the full map is currently revealed on the minimap. - - - - - <!-- Native implemented by Disquse. 0x66EE14B2 --> - - Returns true if the full map is currently revealed on the minimap. - Use [`IsBigmapActive`](#_0xFFF65C63) to check if the minimap is currently expanded or in it's normal state. - - - - - Returns bit's boolean state from [offset] of [address]. - Example: - GAMEPLAY::IS_BIT_SET(bitAddress, 1); - To enable and disable bits, see: - GAMEPLAY::SET_BIT(&bitAddress, 1); // enable - GAMEPLAY::CLEAR_BIT(&bitAddress, 1); // disable - - - - - Returns whether or not the passed camera handle is active. - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Control Groups: - enum InputGroups - { - INPUTGROUP_MOVE = 0, - INPUTGROUP_LOOK = 1, - INPUTGROUP_WHEEL = 2, - INPUTGROUP_CELLPHONE_NAVIGATE = 3, - INPUTGROUP_CELLPHONE_NAVIGATE_UD = 4, - INPUTGROUP_CELLPHONE_NAVIGATE_LR = 5, - INPUTGROUP_FRONTEND_DPAD_ALL = 6, - INPUTGROUP_FRONTEND_DPAD_UD = 7, - INPUTGROUP_FRONTEND_DPAD_LR = 8, - INPUTGROUP_FRONTEND_LSTICK_ALL = 9, - INPUTGROUP_FRONTEND_RSTICK_ALL = 10, - INPUTGROUP_FRONTEND_GENERIC_UD = 11, - INPUTGROUP_FRONTEND_GENERIC_LR = 12, - INPUTGROUP_FRONTEND_GENERIC_ALL = 13, - INPUTGROUP_FRONTEND_BUMPERS = 14, - INPUTGROUP_FRONTEND_TRIGGERS = 15, - INPUTGROUP_FRONTEND_STICKS = 16, - INPUTGROUP_SCRIPT_DPAD_ALL = 17, - INPUTGROUP_SCRIPT_DPAD_UD = 18, - INPUTGROUP_SCRIPT_DPAD_LR = 19, - INPUTGROUP_SCRIPT_LSTICK_ALL = 20, - INPUTGROUP_SCRIPT_RSTICK_ALL = 21, - INPUTGROUP_SCRIPT_BUMPERS = 22, - INPUTGROUP_SCRIPT_TRIGGERS = 23, - INPUTGROUP_WEAPON_WHEEL_CYCLE = 24, - INPUTGROUP_FLY = 25, - INPUTGROUP_SUB = 26, - INPUTGROUP_VEH_MOVE_ALL = 27, - INPUTGROUP_CURSOR = 28, - INPUTGROUP_CURSOR_SCROLL = 29, - INPUTGROUP_SNIPER_ZOOM_SECONDARY = 30, - INPUTGROUP_VEH_HYDRAULICS_CONTROL = 31, - MAX_INPUTGROUPS = 32, - INPUTGROUP_INVALID = 33 - }; - 0, 1 and 2 used in the scripts. - - - - - Returns whether a [control](https://docs.fivem.net/game-references/controls/) was newly pressed since the last check. - - - - - Returns whether a [control](https://docs.fivem.net/game-references/controls/) was newly released since the last check. - - - - - Returns whether a [control](https://docs.fivem.net/game-references/controls/) is currently pressed. - - - - - Returns whether a [control](https://docs.fivem.net/game-references/controls/) is currently _not_ pressed. - - - - - xyz - relative to the world origin. - - - - - Usage: - public bool isCopInRange(Vector3 Location, float Range) - { - return Function.Call<bool>(Hash.IS_COP_PED_IN_AREA_3D, Location.X - Range, Location.Y - Range, Location.Z - Range, Location.X + Range, Location.Y + Range, Location.Z + Range); - } - - - - - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - Example: - DLC2::IS_DLC_PRESENT($\mpbusiness2\); - ($ = gethashkey) - bruteforce these: - 0xB119F6D - 0x96F02EE6 - - - - - Use _GET_VEHICLE_MOD_DATA for modData - - - - - Returns whether or not a browser is created for a specified DUI browser object. - - - - - Gets whether or not this is the CitizenFX server. - - - - - XBOX ONE - MulleDK19: This function is hard-coded to always return 0. - - - - - Checks if entity is within x/y/zSize distance of x/y/z. - Last three are unknown ints, almost always p7 = 0, p8 = 1, p9 = 0 - - - - - Checks if entity1 is within the box defined by x/y/zSize of entity2. - Last three parameters are almost alwasy p5 = 0, p6 = 1, p7 = 0 - - - - - Creates a spherical cone at origin that extends to surface with the angle specified. Then returns true if the entity is inside the spherical cone - Angle is measured in degrees. - These values are constant, most likely bogus: - p8 = 0, p9 = 1, p10 = 0 - This method can also take two float<3> instead of 6 floats. - - - - - Returns true if the entity is in between the minimum and maximum values for the 2d screen coords. - This means that it will return true even if the entity is behind a wall for example, as long as you're looking at their location. - Chipping - - - - - See also PED::IS_SCRIPTED_SCENARIO_PED_USING_CONDITIONAL_ANIM 0x6EC47A344923E1ED 0x3C30B447 - Taken from ENTITY::IS_ENTITY_PLAYING_ANIM(PLAYER::PLAYER_PED_ID(), "creatures@shark@move", "attack_player", 3) - p4 is always 3 in the scripts. - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - taskFlag: - 2 - Check synchronized scene - - - - - A static ped will not react to natives like "APPLY_FORCE_TO_ENTITY" or "SET_ENTITY_VELOCITY" and oftentimes will not react to task-natives like "AI::TASK_COMBAT_PED". The only way I know of to make one of these peds react is to ragdoll them (or sometimes to use CLEAR_PED_TASKS_IMMEDIATELY(). Static peds include almost all far-away peds, beach-combers, peds in certain scenarios, peds crossing a crosswalk, peds walking to get back into their cars, and others. If anyone knows how to make a ped non-static without ragdolling them, please edit this with the solution. - ^ Attach a phCollider to the ped. - - - - - // add this to your CSS to view code with formatting intact. - // pre + hr + p { white-space: pre; } // - - bool isEntityUpright(Entity e, float angle) { - bool bIsUpright; // bl@1 - CDynamicEntity* pEntity; // rdi@1 - bIsUpright = 0; - pEntity = getEntityAddressIfPhysical(e); - if (pEntity) { - bIsUpright = 0; - if (pEntity->Matrix.up.z >= cosf(angle * 0.017453292)) // radians(angle) - bIsUpright = 1; - } - return bIsUpright; - } - - - - - This function is hard-coded to always return 0. - - - - - Examples when this function will return 0 are: - - During busted screen. - - When player is coming out from a hospital. - - When player is coming out from a police station. - - - - - Hardcoded to return 1 - - - - - Doesn't appear to work, use IS_HELP_MESSAGE_BEING_DISPLAYED instead - - - - - Checks whether the horn of a vehicle is currently played. - - - - - Full list of components below - HUD = 0; - HUD_WANTED_STARS = 1; - HUD_WEAPON_ICON = 2; - HUD_CASH = 3; - HUD_MP_CASH = 4; - HUD_MP_MESSAGE = 5; - HUD_VEHICLE_NAME = 6; - HUD_AREA_NAME = 7; - HUD_VEHICLE_CLASS = 8; - HUD_STREET_NAME = 9; - HUD_HELP_TEXT = 10; - HUD_FLOATING_HELP_TEXT_1 = 11; - HUD_FLOATING_HELP_TEXT_2 = 12; - HUD_CASH_CHANGE = 13; - HUD_RETICLE = 14; - HUD_SUBTITLE_TEXT = 15; - HUD_RADIO_STATIONS = 16; - HUD_SAVING_GAME = 17; - HUD_GAME_STREAM = 18; - HUD_WEAPON_WHEEL = 19; - HUD_WEAPON_WHEEL_STATS = 20; - MAX_HUD_COMPONENTS = 21; - MAX_HUD_WEAPONS = 22; - MAX_SCRIPTED_HUD_COMPONENTS = 141; - - - - - ======================================================= - Correction, I have change this to int, instead of int* - as it doesn't use a pointer to the createdIncident. - If you try it you will crash (or) freeze. - ======================================================= - - - - - List of all IPLs: pastebin.com/iNGLY32D - - - - - Returns whether the specified model represents a vehicle. - - - - - Check if model is in cdimage(rpf) - - - - - Returns whether the specified model exists in the game. - - - - - Returns whether navmesh for the region is loaded. The region is a rectangular prism defined by it's top left deepest corner to it's bottom right shallowest corner. - If you can re-word this so it makes more sense, please do. I'm horrible with words sometimes... - - - - - hash collision. - Definitely a hash collision, has something do to with your local player, not a vehicle - - - - - PS4 - MulleDK19: This function is hard-coded to always return 0. - Force67: I patched return result and got this : i.imgur.com/hUn7zSj.jpg - translate please? - - - - - MulleDK19: This function is hard-coded to always return 1. - - - - - gtaforums.com/topic/885580-ped-headshotmugshot-txd/ - - - - - gtaforums.com/topic/885580-ped-headshotmugshot-txd/ - - - - - p1 is anywhere from 4 to 7 in the scripts. Might be a weapon wheel group? - ^It's kinda like that. - 7 returns true if you are equipped with any weapon except your fists. - 6 returns true if you are equipped with any weapon except melee weapons. - 5 returns true if you are equipped with any weapon except the Explosives weapon group. - 4 returns true if you are equipped with any weapon except Explosives weapon group AND melee weapons. - 3 returns true if you are equipped with either Explosives or Melee weapons (the exact opposite of 4). - 2 returns true only if you are equipped with any weapon from the Explosives weapon group. - 1 returns true only if you are equipped with any Melee weapon. - 0 never returns true. - Note: When I say "Explosives weapon group", it does not include the Jerry can and Fire Extinguisher. - - - - - Returns true if the given ped has a valid pointer to CPlayerInfo in its CPed class. That's it. - - - - - This function is hard-coded to always return 0. - - - - - p1 is always 0 - - - - - Checks if the component variation is valid, this works great for randomizing components using loops. - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - l - - - - - This native returns a true or false value. - Ped ped = The ped whose weapon you want to check. - - - - - Seems to consistently return true if the ped is dead. - p1 is always passed 1 in the scripts. - I suggest to remove "OR_DYING" part, because it does not detect dying phase. - That's what the devs call it, cry about it. - lol - that's a good meme right there. - - - - - Presumably returns the Entity that the Ped is currently diving out of the way of. - var num3; - if (PED::IS_PED_EVASIVE_DIVING(A_0, &num3) != 0) - if (ENTITY::IS_ENTITY_A_VEHICLE(num3) != 0) - - - - - angle is ped's view cone - - - - - Gets a value indicating whether this ped's health is below its fatally injured threshold. The default threshold is 100. - If the handle is invalid, the function returns true. - - - - - Returns true/false if the ped is/isn't humanoid. - - - - - Returns whether the specified ped is hurt. - - - - - Gets a value indicating whether this ped's health is below its injured threshold. - The default threshold is 100. - - - - - Returns whether the specified ped is in any vehicle. If `atGetIn` is set to true, also returns true if the ped is - currently in the process of entering a vehicle (a specific stage check for `CTaskEnterVehicle`). - - - - - Checks to see if ped and target are in combat with eachother. Only goes one-way: if target is engaged in combat with ped but ped has not yet reacted, the function will return false until ped starts fighting back. - p1 is usually 0 in the scripts because it gets the ped id during the task sequence. For instance: PED::IS_PED_IN_COMBAT(l_42E[4 -- [[14]] ], PLAYER::PLAYER_PED_ID()) // armenian2.ct4: 43794 - - - - - p1 is nearly always 0 in the scripts. - - - - - Notes: The function only returns true while the ped is: - A.) Swinging a random melee attack (including pistol-whipping) - B.) Reacting to being hit by a melee attack (including pistol-whipping) - C.) Is locked-on to an enemy (arms up, strafing/skipping in the default fighting-stance, ready to dodge+counter). - You don't have to be holding the melee-targetting button to be in this stance; you stay in it by default for a few seconds after swinging at someone. If you do a sprinting punch, it returns true for the duration of the punch animation and then returns false again, even if you've punched and made-angry many peds - - - - - Gets a value indicating whether the specified ped is in the specified vehicle. - If 'atGetIn' is false, the function will not return true until the ped is sitting in the vehicle and is about to close the door. If it's true, the function returns true the moment the ped starts to get onto the seat (after opening the door). Eg. if false, and the ped is getting into a submersible, the function will not return true until the ped has descended down into the submersible and gotten into the seat, while if it's true, it'll return true the moment the hatch has been opened and the ped is about to descend into the submersible. - - - - - returns true is the ped is on the ground whining like a little female dog from a gunshot wound - - - - - Returns true/false if the ped is/isn't male. - - - - - Same function call as PED::GET_MOUNT, aka just returns 0 - - - - - Gets a value indicating whether the specified ped is on top of any vehicle. - Return 1 when ped is on vehicle. - Return 0 when ped is not on a vehicle. - - - - - If the ped handle passed through the parenthesis is in a ragdoll state this will return true. - - - - - Returns whether the specified ped is reloading. - - - - - Returns whether the specified ped is shooting. - - - - - Detect if ped is in any vehicle - [True/False] - - - - - Detect if ped is sitting in the specified vehicle - [True/False] - - - - - Returns true if the ped doesn't do any movement. If the ped is being pushed forwards by using APPLY_FORCE_TO_ENTITY for example, the function returns false. - - - - - What's strafing? - - - - - Definition of vaulting? - - - - - Probably checks whether the ped has finished reloading or not and if the current weapon is not being switched to another. - - - - - Returns true if the ped passed through the parenthesis is wearing a helmet. - - - - - Return true while player is being arrested / busted. - If atArresting is set to 1, this function will return 1 when player is being arrested (while player is putting his hand up, but still have control) - If atArresting is set to 0, this function will return 1 only when the busted screen is shown. - - - - - Returns TRUE if the player ('s ped) is climbing at the moment. - - - - - Can the player control himself, used to disable controls for player for things like a cutscene. - --- - You can't disable controls with this, use SET_PLAYER_CONTROL(...) for this. - - - - - Gets a value indicating whether the specified player is currently aiming freely. - - - - - Gets a value indicating whether the specified player is currently aiming freely at the specified entity. - - - - - this function is hard-coded to always return 0. - - - - - Returns TRUE if the game is in online mode and FALSE if in offline mode. - This is an alias for NETWORK_IS_SIGNED_ONLINE. - - - - - Checks whether the specified player has a Ped, the Ped is not dead, is not injured and is not arrested. - - - - - Returns true if the player is riding a train. - - - - - Returns true if the player is currently switching, false otherwise. - (When the camera is in the sky moving from Trevor to Franklin for example) - - - - - Gets a value indicating whether the specified position is on a road. - The vehicle parameter is not implemented (ignored). - - - - - Determines whether there is a projectile within the specified coordinates. The coordinates form a rectangle. - ownedByPlayer = only projectiles fired by the player will be detected. - - - - - Determines whether there is a projectile of a specific type within the specified coordinates. The coordinates form a rectangle. - Note: This native hasn't been tested yet. - - - - - MulleDK19: This function is hard-coded to always return 0. - - - - - Returns true if the return value of a scaleform function is ready to be collected (using `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_STRING` or `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT`). - - Old description/example: - - ``` - Seems to take data that is returned from "_POP_SCALEFORM_MOVIE_FUNCTION" and checks to see if it's not null/empty. - "agency_heist3b.ysc", line 71836: - if (CONTROLS::IS_CONTROL_JUST_PRESSED(2, 201) || CONTROLS::IS_CONTROL_JUST_PRESSED(2, 237)) { - GRAPHICS::BEGIN_SCALEFORM_MOVIE_METHOD(l_46, "SET_INPUT_EVENT_SELECT"); - l_45 = GRAPHICS::_END_SCALEFORM_MOVIE_METHOD_RETURN(); - } - if (GRAPHICS::IS_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_READY(l_45)) { - v_13 = GRAPHICS::GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT(l_45); - if (v_13 == 6) { - sub_73269(a_0); - } - } - ``` - - - - - Occurrences in the b617d scripts: - "ARMY_GUARD", - "ARMY_HELI", - "BLIMP", - "Cinema_Downtown", - "Cinema_Morningwood", - "Cinema_Textile", - "City_Banks", - "Countryside_Banks", - "DEALERSHIP", - "KORTZ_SECURITY", - "LSA_Planes", - "MP_POLICE", - "Observatory_Bikers", - "POLICE_POUND1", - "POLICE_POUND2", - "POLICE_POUND3", - "POLICE_POUND4", - "POLICE_POUND5", - "Rampage1", - "SANDY_PLANES", - "SCRAP_SECURITY", - "SEW_MACHINE", - "SOLOMON_GATE" - Sometimes used with DOES_SCENARIO_GROUP_EXIST: - if (AI::DOES_SCENARIO_GROUP_EXIST("Observatory_Bikers") && (!AI::IS_SCENARIO_GROUP_ENABLED("Observatory_Bikers"))) { - else if (AI::IS_SCENARIO_GROUP_ENABLED("BLIMP")) { - - - - - Occurrences in the b617d scripts: - "PROP_HUMAN_SEAT_CHAIR", - "WORLD_HUMAN_DRINKING", - "WORLD_HUMAN_HANG_OUT_STREET", - "WORLD_HUMAN_SMOKING", - "WORLD_MOUNTAIN_LION_WANDER", - "WORLD_HUMAN_DRINKING" - Sometimes used together with GAMEPLAY::IS_STRING_NULL_OR_EMPTY in the scripts. - scenarioType could be the same as scenarioName, used in for example AI::TASK_START_SCENARIO_AT_POSITION. - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - In drunk_controller.c4, sub_309 - if (CAM::_C912AF078AF19212()) { - CAM::_1C9D7949FA533490(0); - } - What does "IS_SCRIPT_GLOBAL_SHAKING" mean..? :/ Is this a hash collision? - - - - - Some events that i found, not sure about them, but seems to have logic based on my tests: - '82 - dead body - '86 - '87 - '88 - shooting, fire extinguisher in use - '89 - '93 - ped using horn - '95 - ped receiving melee attack - '102 - living ped receiving shot - '104 - player thrown grenade, tear gas, smoke grenade, jerry can dropping gasoline - '105 - melee attack against veh - '106 - player running - '108 - vehicle theft - '112 - melee attack - '113 - veh rollover ped - '114 - dead ped receiving shot - '116 - aiming at ped - '121 - Here is full dump of shocking event types from the exe camx.me/gtav/tasks/shockingevents.txt - - - - - Determines whether there is a sniper bullet within the specified coordinates. The coordinates form a rectangle. - - - - - This function is hard-coded to always return 0. - - - - - Returns true when the srl from BeginSrl is loaded. - - - - - **Experimental**: This native may be altered or removed in future versions of CitizenFX without warning. - - Returns whether an asynchronous streaming file registration completed. - - - - - Returns true if a synchronized scene is running - - - - - Return whether tennis mode is active or not. - - - - - Returns true if the model is motorcycle or bycicle. - - - - - To check if the model is an amphibious car, see gtaforums.com/topic/717612-v-scriptnative-documentation-and-research/page-33#entry1069317363 (for build 944 and above only!) - - - - - Returns true if the two times are equal; otherwise returns false. - - - - - Subtracts the second argument from the first, then returns whether the result is negative. - - - - - Subtracts the first argument from the second, then returns whether the result is negative. - - - - - returns whether or not a ped is visible within your FOV, not this check auto's to false after a certain distance. - Target needs to be tracked.. won't work otherwise. - - - - - Return if interior is valid. - - - - - Scripts verify that towTruck is the first parameter, not the second. - - - - - Public Function isVehicleAttachedToTrailer(vh As Vehicle) As Boolean - Return Native.Function.Call(Of Boolean)(Hash.IS_VEHICLE_ATTACHED_TO_TRAILER, vh) - End Function - - - - - p1 is false almost always. - However, in launcher_carwash/carwash1/carwash2 scripts, p1 is true and is accompanied by DOES_VEHICLE_HAVE_ROOF - - - - - doorID starts at 0, not seeming to skip any numbers. Four door vehicles intuitively range from 0 to 3. - - - - - doorIndex: - 0 = Front Left Door - 1 = Front Right Door - 2 = Back Left Door - 3 = Back Right Door - 4 = Hood - 5 = Trunk - 6 = Trunk2 - - - - - p1 is always 0 in the scripts. - p1 = check if vehicle is on fire - - - - - Returns whether the specified vehicle is currently in a burnout. - vb.net - Public Function isVehicleInBurnout(vh As Vehicle) As Boolean - Return Native.Function.Call(Of Boolean)(Hash.IS_VEHICLE_IN_BURNOUT, vh) - End Function - - - - - garageName example "Michael - Beverly Hills" - For a full list, see here: pastebin.com/73VfwsmS - - - - - Returns true if the id is non zero. - - - - - Public Function isVehicleOnAllWheels(vh As Vehicle) As Boolean - Return Native.Function.Call(Of Boolean)(Hash.IS_VEHICLE_ON_ALL_WHEELS, vh) - End Function - - - - - Possibly: Returns whether the searchlight (found on police vehicles) is toggled on. - - - - - Has an additional BOOL parameter since version [???]. - Check if a vehicle seat is free. - -1 being the driver seat. - Use GET_VEHICLE_MAX_NUMBER_OF_PASSENGERS(vehicle) - 1 for last seat index. - - - - - MulleDK19: Returns true if the vehicle's speed is equal to, or less than 0.02 meters per second, or 0.05 meters per second, if the vehicle's handbrake is engaged. - - - - - is this for red lights only? more testing required. - - - - - p1 can be anywhere from 0 to 3 in the scripts. p2 is generally somewhere in the 1000 to 10000 range. - - - - - wheelID used for 4 wheelers seem to be (0, 1, 4, 5) - completely - is to check if tire completely gone from rim. - '0 = wheel_lf / bike, plane or jet front - '1 = wheel_rf - '2 = wheel_lm / in 6 wheels trailer, plane or jet is first one on left - '3 = wheel_rm / in 6 wheels trailer, plane or jet is first one on right - '4 = wheel_lr / bike rear / in 6 wheels trailer, plane or jet is last one on left - '5 = wheel_rr / in 6 wheels trailer, plane or jet is last one on right - '45 = 6 wheels trailer mid wheel left - '47 = 6 wheels trailer mid wheel right - - - - - must be called after TRACK_VEHICLE_VISIBILITY - it's not instant so probabilly must pass an 'update' to see correct result. - - - - - Gets whether the world point the calling script is registered to is within desired range of the player. - - - - - MulleDK19: This function is hard-coded to always return 0. - - - - - hash collision - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - 1 - - - - - Loads all path nodes. - If keepInMemory is true, all path nodes will be loaded and be kept in memory; otherwise, all path nodes will be loaded, but unloaded as the game sees fit. - - MulleDK19. - August 29, 2017: This native has been removed in v1180. - - - - - Reads the contents of a text file in a specified resource. - If executed on the client, this file has to be included in `files` in the resource manifest. - Example: `local data = LoadResourceFile("devtools", "data.json")` - - - - - Rope presets can be found in the gamefiles. One example is "ropeFamily3", it is NOT a hash but rather a string. - - - - - Example: - AUDIO::LOAD_STREAM("CAR_STEAL_1_PASSBY", "CAR_STEAL_1_SOUNDSET"); - All found occurrences in the b678d decompiled scripts: pastebin.com/3rma6w5w - Stream names often ends with "_MASTER", "_SMALL" or "_STREAM". Also "_IN", "_OUT" and numbers. - soundSet is often set to 0 in the scripts. These are common to end the soundSets: "_SOUNDS", "_SOUNDSET" and numbers. - - - - - Example: - AUDIO::LOAD_STREAM_WITH_START_OFFSET("STASH_TOXIN_STREAM", 2400, "FBI_05_SOUNDS"); - Only called a few times in the scripts. - - - - - Locks the minimap to the specified angle in integer degrees. - angle: The angle in whole degrees. If less than 0 or greater than 360, unlocks the angle. - - - - - Locks the minimap to the specified world position. - - - - - Sets the water height for a given position and radius. - - - - - Some of the tunable contexts used in the PC scripts: - - "BASE_GLOBALS" - - "MP_GLOBAL" - and some of the tunable names used in the PC scripts: - - "XP_MULTIPLIER" - - "CASH_MULTIPLIER" - - "ARMOUR_REWARD_GIFT" - - "TOGGLE_CREATORS_OFF" - - "MULTIPLAYER_DISABLED" - - - - - Some of the tunable contexts used in the PC scripts: - - "BASE_GLOBALS" - - "MP_GLOBAL" - - "MP_FM_RACES" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_SEA" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_AIR" - - "MP_FM_BASEJUMP" - - "MP_FM_RACES_CYCLE" - - "MP_FM_RACES_BIKE" - - "MP_FM_MISSIONS" - - "MP_FM_CONTACT" - - "MP_FM_RANDOM" - - "MP_FM_VERSUS" - - "MP_FM_LTS" - - "MP_FM_CAPTURE" - - "MP_FM_DM" - - "MP_FM_SURVIVAL" - - "MP_FM_GANG_ATTACK" - - "MP_FM_BASEJUMP" - - "MP_CNC_TEAM_COP" - - "MP_CNC_TEAM_VAGOS" - - "MP_CNC_TEAM_LOST" - and some of the tunable names used in the PC scripts: - - "XP_MULTIPLIER" - - "CASH_MULTIPLIER" - - "ARMOUR_REWARD_GIFT" - - "TOGGLE_CREATORS_OFF" - - - - - Some of the tunable contexts used in the PC scripts: - - "MP_FM_RACES" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_SEA" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_AIR" - - "MP_FM_BASEJUMP" - - "MP_FM_RACES_CYCLE" - - "MP_FM_RACES_BIKE" - - "MP_FM_MISSIONS" - - "MP_FM_CONTACT" - - "MP_FM_RANDOM" - - "MP_FM_VERSUS" - - "MP_FM_LTS" - - "MP_FM_CAPTURE" - - "MP_FM_DM" - - "MP_FM_SURVIVAL" - - "MP_FM_GANG_ATTACK" - - "MP_FM_BASEJUMP" - - "BASE_GLOBALS" - - "MP_GLOBAL" - and some of the tunable names used in the PC scripts: - - "XP_MULTIPLIER" - - "CASH_MULTIPLIER" - - "ARMOUR_REWARD_GIFT" - - "TOGGLE_CREATORS_OFF" - - - - - .. - - - - - This has arguments.. in PC scripts. - - - - - p1 = 0 (always) - p2 = 1 (always) - - - - - p1 is just an assumption. p2 was false and p3 was true. - - - - - The first parameter is the amount spent which is store in a global when this native is called. The global returns 10. Which is the price for both rides. - The last 3 parameters are, - 2,0,1 in the am_ferriswheel.c - 1,0,1 in the am_rollercoaster.c - - - - - p1 = 0 (always) - p2 = 1 (always) - - - - - 11 - Need to download tunables. - 12 - Need to download background script. - Returns 1 if the multiplayer is loaded, otherwhise 0. - - - - - BOOL DEBUG_MEMBRESHIP(int Param) - { - int membership; - networkHandleMgr handle; - NETWORK_HANDLE_FROM_PLAYER(iSelectedPlayer, &handle.netHandle, 13); - if (!_NETWORK_IS_CLAN_MEMBERSHIP_FINISHED_DOWNLOADING()) - { - if (NETWORK_CLAN_REMOTE_MEMBERSHIPS_ARE_IN_CACHE(&Param)) - { - if (NETWORK_CLAN_GET_MEMBERSHIP_COUNT(&Param) > 0) - { - if (NETWORK_CLAN_GET_MEMBERSHIP_VALID(&Param, 0)) - { - if (NETWORK_CLAN_GET_MEMBERSHIP(&Param, &membership, -1)) - { - _0xF633805A(&membership, 35, &handle.netHandle); - } - } - } - } - } - else - { - NETWORK_CLAN_DOWNLOAD_MEMBERSHIP(&handle.netHandle); - } - } - - - - - networkMembershipMgr memShip; - int maxMemship = _GET_NUM_MEMBERSHIP_DESC(); - for (int i = 0; i < maxMemship; i++) - { - NETWORK_CLAN_GET_MEMBERSHIP_DESC(&memShip.memHandle, i); - } - - - - - bufferSize is 35 in the scripts. - bufferSize is the elementCount of p0(desc), sizeof(p0) == 280 == p1*8 == 35 * 8, p2(netHandle) is obtained from NETWORK::NETWORK_HANDLE_FROM_PLAYER. And no, I can't explain why 35 * sizeof(int) == 280 and not 140, but I'll get back to you on that. - the answer is: because p0 an int64_t* / int64_t[35]. and FYI p2 is an int64_t[13] - pastebin.com/cSZniHak - - - - - returns netScene - this native is missing 2 params - float p10, float p11 - - - - - Note the 2nd parameters are always 1, 0. I have a feeling it deals with your money, wallet, bank. So when you delete the character it of course wipes the wallet cash at that time. So if that was the case, it would be eg, NETWORK_DELETE_CHARACTER(characterIndex, deleteWalletCash, deleteBankCash); - - - - - hash collision??? - I did this and I didn't see anything happening - int pindex; - for (int i = 0; i < 32; i++) - { - if (NETWORK_IS_PARTICIPANT_ACTIVE(INT_TO_PARTICIPANTINDEX(i))) - { - pindex = NETWORK_GET_PLAYER_INDEX(INT_TO_PARTICIPANTINDEX(i)); - NETWORK_DISABLE_INVINCIBLE_FLASHING(pindex, 1); - } - } - - - - - Some of the tunable contexts used in the PC scripts: - - "MP_FM_RACES" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_SEA" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_AIR" - - "MP_FM_BASEJUMP" - - "MP_FM_RACES_CYCLE" - - "MP_FM_RACES_BIKE" - - "MP_FM_MISSIONS" - - "MP_FM_CONTACT" - - "MP_FM_RANDOM" - - "MP_FM_VERSUS" - - "MP_FM_LTS" - - "MP_FM_CAPTURE" - - "MP_FM_DM" - - "MP_FM_SURVIVAL" - - "MP_FM_GANG_ATTACK" - - "MP_FM_BASEJUMP" - - "BASE_GLOBALS" - - "MP_GLOBAL" - and some of the tunable names used in the PC scripts: - - "XP_MULTIPLIER" - - "CASH_MULTIPLIER" - - "ARMOUR_REWARD_GIFT" - - "TOGGLE_CREATORS_OFF" - - - - - p2 is true 3/4 of the occurrences I found. - 'players' is the number of players for a session. On PS3/360 it's always 18. On PC it's 32. - - - - - DSPORT - - - - - Pretty sure this is actually a hash collision. - It should be NETWORK_EARN_FROM_A*** or NETWORK_EARN_FROM_B*** - ============================================================= - Not a hash collision, test it for yourself when finishing heist. - lackos; 2017.03.12 - - - - - Enough007: Adds an entry in the Network Transaction Log. - Max value for amount 2000 - - - - - Now has 9 parameters. - - - - - This merely adds an entry in the Network Transaction Log; - it does not grant cash to the player (on PC). - Max value for amount is 9999999. - - - - - Now has 8 params. - - - - - Pretty sure this is a hash collision - - - - - In the console script dumps, this is only referenced once. - NETWORK::NETWORK_EXPLODE_VEHICLE(vehicle, 1, 0, 0); - ^^^^^ That must be PC script dumps? In X360 Script Dumps it is reference a few times with 2 differences in the parameters. - Which as you see below is 1, 0, 0 + 1, 1, 0 + 1, 0, and a *param? - am_plane_takedown.c - network_explode_vehicle(net_to_veh(Local_40.imm_2), 1, 1, 0); - armenian2.c - network_explode_vehicle(Local_80[6 <2>], 1, 0, 0); - fm_horde_controler.c - network_explode_vehicle(net_to_veh(*uParam0), 1, 0, *uParam0); - fm_mission_controller.c, has 6 hits so not going to list them. - Side note, setting the first parameter to 0 seems to mute sound or so? - Seems it's like ADD_EXPLOSION, etc. the first 2 params. The 3rd atm no need to worry since it always seems to be 0. - - - - - state - 0 does 5 fades - state - 1 does 6 fades - native is missing third argument, also boolean, setting to 1 made vehicle fade in slower, probably "slow" as per NETWORK_FADE_OUT_ENTITY - - - - - normal - transition like when your coming out of LSC - slow - transition like when you walk into a mission - - - - - Returns the owner ID of the specified entity. - - - - - scriptName examples: - "freemode", "AM_CR_SecurityVan", ... - Most of the time, these values are used: - p1 = -1 - p2 = 0 - - - - - Retrieves the local player's NetworkHandle* and stores it in the given buffer. - * Currently unknown struct - - - - - On PC this is hardcoded to 250. - - - - - Returns the amount of players connected in the current session. Only works when connected to a session/server. - - - - - Returns the Player associated to a given Ped when in an online session. - - - - - Based on scripts such as in freemode.c how they call their vars vVar and fVar the 2nd and 3rd param it a Vector3 and Float, but the first is based on get_random_int_in_range.. - - - - - Returns the value of the tunable 0x9A82F2B. Usually 8000 iirc. - - - - - From what I can see in ida, I believe it retrieves the players online bank balance. - - - - - From what I understand, it retrieves STAT_WALLET_BALANCE for the specified character (-1 means use MPPLY_LAST_MP_CHAR) - - - - - Returns a NetworkHandle* from the specified member ID and stores it in a given buffer. - * Currently unknown struct - - - - - Returns a handle to networkHandle* from the specified player handle and stores it in a given buffer. - * Currently unknown struct - Example: - std::vector<UINT64> GetPlayerNetworkHandle(Player player) { - const int size = 13; - uint64_t *buffer = std::make_unique<uint64_t[]>(size).get(); - NETWORK::NETWORK_HANDLE_FROM_PLAYER(player, reinterpret_cast<int *>(buffer), 13); - for (int i = 0; i < size; i++) { - Log::Msg("networkhandle[%i]: %llx", i, buffer[i]); - } - std::vector<UINT64> result(buffer, buffer + sizeof(buffer)); - return result; - } - - - - - Returns a NetworkHandle* from the specified user ID and stores it in a given buffer. - * Currently unknown struct - - - - - From what I can tell it looks like it does the following: - - Creates/hosts a new transition to another online session, using this in FiveM will result in other players being disconencted from the server/preventing them from joining. This is most likely because I entered the wrong session parameters since they're pretty much all unknown right now. - - You also need to use `NetworkJoinTransition(Player player)` and `NetworkLaunchTransition()`. - - - - - //nothing doin - int Global_1837683 = GlobalVariable::Get(1837683); - int Global_1837683_f_404 = GlobalVariable::Get(1837683 + 404); - NETWORK_INVITE_GAMERS(&Global_1837683, Global_1837683_f_404, 0, 0); - - - - - This would be nice to see if someone is in party chat, but 2 sad notes. - 1) It only becomes true if said person is speaking in that party at the time. - 2) It will never, become true unless you are in that party with said person. - - - - - In scripts R* calls 'NETWORK_GET_FRIEND_NAME' in this param. - - - - - If you are host, returns true else returns false. - anyone know how to use this to find correct host? is possible? - go to a mission and it will set a host then search the host name using a program then find the pointer to the host name - - - - - Note according to IDA TU27 X360(Console), - This native & 'NETWORK_IS_PARTY_MEMBER' both jump to the same location. - Side note: This location just stops where it's at once jumped to. - Screenshot for side note, - h t t p ://i.imgur.com/m2ci1mF.png - h t t p://i.imgur.com/Z0Wx2B6.png - - - - - Note according to IDA TU27 X360(Console), - This native & 'NETWORK_IS_PARTY_MEMBER' both jump to the same location. - Side note: This location just stops where it's at once jumped to. - Screenshot for side note, - h t t p ://i.imgur.com/m2ci1mF.png - h t t p://i.imgur.com/Z0Wx2B6.png - - - - - This function is hard-coded to always return 0. - - - - - hash collision - - - - - returns true if someone is screaming or talking in a microphone - - - - - This checks if player is playing on gta online or not. - Please add an if and block your mod if this is "true". - - - - - Returns whether the player is signed into Social Club. - - - - - Returns whether the game is not in offline mode. - seemed not to work for some ppl - - - - - int handle[76]; - NETWORK_HANDLE_FROM_FRIEND(iSelectedPlayer, &handle[0], 13); - Player uVar2 = NETWORK_GET_PLAYER_FROM_GAMER_HANDLE(&handle[0]); - NETWORK_JOIN_TRANSITION(uVar2); - nothing doin. - - - - - Could possibly bypass being muted or automatically muted - - - - - Works in Singleplayer too. - Actually has a 4th param (BOOL) that sets byte_14273C46C (in b944) to whatever was passed to p3. - - - - - R* uses this to hear all player when spectating. - It allows you to hear other online players when their chat is on none, crew and or friends - - - - - Returns the name of a given player. Returns "**Invalid**" if CPlayerInfo of the given player cannot be retrieved or the player doesn't exist. - Does exactly the same as GET_PLAYER_NAME. - - - - - Sets [userID] to the user id of the given player. Returns "**Invalid**" if CPlayerInfo of the given player cannot be retrieved or the player doesn't exist. - - - - - Does exactly the same thing as PLAYER_ID() - - - - - Returns whether the player has been reported too often or not. - Example : griefing. - - - - - Checks if a specific value (BYTE) in CPlayerInfo is nonzero. - Returns always false in Singleplayer. - No longer used for dev checks since first mods were released on PS3 & 360. - R* now checks with the is_dlc_present native for the dlc hash 2532323046, - if that is present it will unlock dev stuff. - - - - - index - ------- - See function sub_1005 in am_boat_taxi.ysc - context - ---------- - "BACKUP_VAGOS" - "BACKUP_LOST" - "BACKUP_FAMILIES" - "HIRE_MUGGER" - "HIRE_MERCENARY" - "BUY_CARDROPOFF" - "HELI_PICKUP" - "BOAT_PICKUP" - "CLEAR_WANTED" - "HEAD_2_HEAD" - "CHALLENGE" - "SHARE_LAST_JOB" - "DEFAULT" - reason - --------- - "NOTREACHTARGET" - "TARGET_ESCAPE" - "DELIVERY_FAIL" - "NOT_USED" - "TEAM_QUIT" - "SERVER_ERROR" - "RECEIVE_LJ_L" - "CHALLENGE_PLAYER_LEFT" - "DEFAULT" - unk - ----- - Unknown bool value - - - - - sizeofVars is in bytes - - - - - This native start the download of tunables from R* cloud - - - - - hash collision?? - Not sure, but fits alphabetically - - - - - how can I increase the character limit on this native? - -------------------------------- - return - it's possible for it to have an error and return a value. One error is if it cannot find space to create the event it doesn't send the text and returns zero. It also returns 0 is the strlen is 0 or the strlen > 0x100 (I thought it was 64 so idk why it's checking 265. I may just be dumb :P ) There are other ways it could return 0 also but who the hell cares cuz it's very unlikely, but it returns a bool. - to the top guy, idk if it is possible. It is probably read a max of 64 characters on the recieving end so even if we did modify it to send more it probably wouldn't work. One of the other problems is that in part of the function it copies the string to the local stack which means we would have to change that to make it work. - - - - - the first arg seems to be the network player handle (&handle) and the second var is pretty much always "" and the third seems to be a number between 0 and ~10 and the 4th is is something like 0 to 5 and I guess the 5th is a bool cuz it is always 0 or 1 - does this send an invite to a player? - - - - - p0 is always false and p1 varies. - NETWORK_SESSION_END(0, 1) - NETWORK_SESSION_END(0, 0) - Results in: "Connection to session lost due to an unknown network error. Please return to Grand Theft Auto V and try again later." - - - - - unknown params - p0 = 0, 2, or 999 (The global is 999 by default.) - p1 = 0 (Always in every script it's found in atleast.) - p2 = 0, 3, or 4 (Based on a var that is determined by a function.) - p3 = maxPlayers (It's obvious in x360 scripts it's always 18) - p4 = 0 (Always in every script it's found in atleast.) - p5 = 0 or 1. (1 if network_can_enter_multiplayer, but set to 0 if other checks after that are passed.) - p5 is reset to 0 if, - Global_1315318 = 0 or Global_1315323 = 9 or 12 or (Global_1312629 = 0 && Global_1312631 = true/1) those are passed. - - - - - Does nothing in online but in offline it will cause the screen to fade to black. Nothing happens past then, the screen will sit at black until you restart GTA. Other stuff must be needed to actually host a session. - - - - - Does nothing in online but in offline it will cause the screen to fade to black. Nothing happens past then, the screen will sit at black until you restart GTA. Other stuff must be needed to actually host a session. - - - - - Loads up the map that is loaded when beeing in mission creator - Player gets placed in a mix between online/offline mode - p0 is always 2 in R* scripts. - Appears to be patched in gtav b757 (game gets terminated) alonside with most other network natives to prevent online modding ~ghost30812 - - - - - Only works when you are host. - - - - - //friendly fire toggle - - - - - hash collision??? - - - - - On PC it's a nullsub which means it does absolutely nothing. - Now that Discord supports Rich Presence, R* might finally implement this for PC. Or maybe in future games like RDR2, GTA VI... - - - - - p1 is always 0 - - - - - Example: - int playerHandle; - NETWORK_HANDLE_FROM_PLAYER(selectedPlayer, &playerHandle, 13); - NETWORK_SHOW_PROFILE_UI(&playerHandle); - - - - - Only used once in a script (am_contact_requests) - p1 = 0 - p2 = 1 - - - - - According to how I understood this in the freemode script alone, - The first parameter is determined by a function named, func_5749 within the freemode script which has a list of all the vehicles and a set price to return which some vehicles deals with globals as well. So the first parameter is basically the set in stone insurance cost it's gonna charge you for that specific vehicle model. - The second parameter whoever put it was right, they call GET_ENTITY_MODEL with the vehicle as the paremeter. - The third parameter is the network handle as they call their little struct<13> func or atleast how the script decompiled it to look which in lamens terms just returns the network handle of the previous owner based on DECOR_GET_INT(vehicle, "Previous_Owner"). - The fourth parameter is a bool that returns true/false depending on if your bank balance is greater then 0. - The fifth and last parameter is a bool that returns true/false depending on if you have the money for the car based on the cost returned by func_5749. In the freemode script eg, - bool hasTheMoney = NETWORKCASH::_GET_BANK_BALANCE() < carCost. - - - - - gets the entity id of a network id - - - - - gets the object id of a network id - - - - - gets the ped id of a network id - - - - - if (!sub_8f12("START LOAD SCENE SAFE")) { - if (CUTSCENE::GET_CUTSCENE_TIME() > 4178) { - STREAMING::_ACCFB4ACF53551B0(1973.845458984375, 3818.447265625, 32.43629837036133, 15.0, 2); - sub_8e9e("START LOAD SCENE SAFE", 1); - } - } - (Previously known as STREAMING::_NEW_LOAD_SCENE_START_SAFE) - - - - - Please change back to _0x444D8CF241EC25C5 (hash collision) - - - - - Lets objects spawn online simply do it like this: - int createdObject = OBJ_TO_NET(CREATE_OBJECT_NO_OFFSET(oball, pCoords.x, pCoords.y, pCoords.z, 1, 0, 0)); - - - - - patrolRoutes found in the b617d scripts: - "miss_Ass0", - "miss_Ass1", - "miss_Ass2", - "miss_Ass3", - "miss_Ass4", - "miss_Ass5", - "miss_Ass6", - "MISS_PATROL_6", - "MISS_PATROL_7", - "MISS_PATROL_8", - "MISS_PATROL_9", - "miss_Tower_01", - "miss_Tower_02", - "miss_Tower_03", - "miss_Tower_04", - "miss_Tower_05", - "miss_Tower_06", - "miss_Tower_07", - "miss_Tower_08", - "miss_Tower_10" - - - - - Max value for p1 is 15. - - - - - Only used once in the decompiled scripts. Seems to be related to scripted vehicle generators. - Modified example from "am_imp_exp.c4", line 6406: - -- [[ popSchedules[0] = ZONE::GET_ZONE_POPSCHEDULE(ZONE::GET_ZONE_AT_COORDS(891.3, 807.9, 188.1)); - etc. - ]] - ZONE::OVERRIDE_POPSCHEDULE_VEHICLE_MODEL(popSchedules[index], vehicleHash); - STREAMING::REQUEST_MODEL(vehicleHash); - - - - - Overrides the vehicle's horn hash. - - When changing this hash on a vehicle, [`_GET_VEHICLE_HORN_HASH`](#_0xACB5DCCA1EC76840) will **not** return the 'overwritten' hash. It will still always return the default horn hash (same as [`GET_VEHICLE_DEFAULT_HORN`](#_0x02165D55000219AC)). - - List of possible hashes (found in decompiled scripts): - - | signed | unsigned | hex | - | ------------: | -----------: | :----------: | - | `1604822495` | `1604822495` | `0x5FA7A5DF` | - | `-1262465009` | `3032502287` | `0xB4C0500F` | - | `-889553789` | `3405413507` | `0xCAFA7C83` | - | `-1557943086` | `2737024210` | `0xA323ACD2` | - | `-1318696617` | `2976270679` | `0xB1664957` | - | `-7740003` | `4287227293` | `0xFF89E59D` | - | `-1815146967` | `2479820329` | `0x93CF0E29` | - | `-339919356` | `3955047940` | `0xEBBD3E04` | - - Old description: - - ``` - vehicle - the vehicle whose horn should be overwritten - mute - p1 seems to be an option for muting the horn - p2 - maybe a horn id, since the function AUDIO::GET_VEHICLE_DEFAULT_HORN(veh) exists? - ``` - - - - - Return the local Participant ID - - - - - Return the local Participant ID. - This native is exactly the same as 'PARTICIPANT_ID' native. - - - - - Activates the specified frontend menu context. - - pausemenu.xml defines some specific menu options using 'context'. Context is basically a 'condition'. - - The `*ALL*` part of the context means that whatever is being defined, will be active when any or all of those conditions after `*ALL*` are met. - - The `*NONE*` part of the context section means that whatever is being defined, will NOT be active if any or all of the conditions after `*NONE*` are met. - - This basically allows you to hide certain menu sections, or things like instructional buttons. - - See the old description below for more info. - - * * * - - > Seems to add/set the current menu context (to show/hide buttons?) - > Pausemenu.xml: - > `<Contexts>*ALL*, DISPLAY_CORONA_BUTTONS, *NONE*, BET_LOCKED, BET_AVAILABLE, SCROLL_OPTION</Contexts>` - > Code: - > - > ``` - > if (...) { - > sub_bbd34(a_0, 0, "FM_BET_HELP"); - > UI::PAUSE_MENU_ACTIVATE_CONTEXT(${bet_available}); // This native - > UI::OBJECT_DECAL_TOGGLE(${bet_locked}); - > } else { - > sub_bbd34(a_0, 0, ""); - > UI::OBJECT_DECAL_TOGGLE(${bet_available}); - > UI::PAUSE_MENU_ACTIVATE_CONTEXT(${bet_locked}); // This native - > } - > ``` - > - > OBJECT_DECAL_TOGGLE seems to remove a context, It also has a hash collision - > // Old - > Scripts do not make this native's purpose clear. However, this native most likely has something to do with decals since in nearly every instance, "OBJECT_DECAL_TOGGLE" is called prior. - - - - - gets the network id of a ped - - - - - Only 1 match. ob_sofa_michael. - PLAYER::PLAYER_ATTACH_VIRTUAL_BOUND(-804.5928f, 173.1801f, 71.68436f, 0f, 0f, 0.590625f, 1f, 0.7f);1.0.335.2, 1.0.350.1/2, 1.0.372.2, 1.0.393.2, 1.0.393.4, 1.0.463.1; - - - - - 1.0.335.2, 1.0.350.1/2, 1.0.372.2, 1.0.393.2, 1.0.393.4, 1.0.463.1; - - - - - This returns YOUR 'identity' as a Player type. - Always returns 0 in story mode. - - - - - Returns current player ped - - - - - **This native does absolutely nothing, just a nullsub** - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Atleast one time in a script for the zRot Rockstar uses GET_ENTITY_HEADING to help fill the parameter. - p9 is unknown at this time. - p10 throughout all the X360 Scripts is always 2. - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - delta and bitset are guessed fields. They are based on the fact that most of the calls have 0 or nil field types passed in. - The only time bitset has a value is 0x4000 and the only time delta has a value is during stealth with usually <1.0f values. - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Look at facials@gen_male@base and facials@gen_female@base for some common facial animations. - !!!NOTE!!! - Unlike most animation natives, the animation comes BEFORE the animation dictionary here. So you could call e.g. - PLAY_FACIAL_ANIM(ped, "dead_1", "facials@gen_male@base") - - - - - Called 38 times in the scripts. There are 5 different audioNames used. - One unknown removed below. - AUDIO::PLAY_MISSION_COMPLETE_AUDIO("DEAD"); - AUDIO::PLAY_MISSION_COMPLETE_AUDIO("FRANKLIN_BIG_01"); - AUDIO::PLAY_MISSION_COMPLETE_AUDIO("GENERIC_FAILED"); - AUDIO::PLAY_MISSION_COMPLETE_AUDIO("TREVOR_SMALL_01"); - - - - - Needs another parameter [int p2]. The signature is PED::PLAY_PAIN(Ped ped, int painID, int p1, int p2); - Last 2 parameters always seem to be 0. - EX: Function.Call(Hash.PLAY_PAIN, TestPed, 6, 0, 0); - Known Pain IDs - ________________________ - 1 - Doesn't seem to do anything. Does NOT crash the game like previously said. (Latest patch) - 6 - Scream (Short) - 7 - Scared Scream (Kinda Long) - 8 - On Fire - - - - - All found occurrences in b617d, sorted alphabetically and identical lines removed: pastebin.com/RFb4GTny - AUDIO::PLAY_PED_RINGTONE("Remote_Ring", PLAYER::PLAYER_PED_ID(), 1); - AUDIO::PLAY_PED_RINGTONE("Dial_and_Remote_Ring", PLAYER::PLAYER_PED_ID(), 1); - - - - - Please change to void. (Does not return anything!) - Plays the given police radio message. - All found occurrences in b617d, sorted alphabetically and identical lines removed: pastebin.com/GBnsQ5hr - - - - - All found occurrences in b617d, sorted alphabetically and identical lines removed: pastebin.com/A8Ny8AHZ - - - - - All found occurrences in b617d, sorted alphabetically and identical lines removed: pastebin.com/eeFc5DiW - gtaforums.com/topic/795622-audio-for-mods - - - - - All found occurrences in b617d, sorted alphabetically and identical lines removed: pastebin.com/f2A7vTj0 - No changes made in b678d. - gtaforums.com/topic/795622-audio-for-mods - - - - - list: pastebin.com/DCeRiaLJ - All found occurrences in b617d, sorted alphabetically and identical lines removed: pastebin.com/0neZdsZ5 - - - - - Used with AUDIO::LOAD_STREAM - Example from finale_heist2b.c4: - AI::TASK_SYNCHRONIZED_SCENE(l_4C8[2 -- [[14]] ], l_4C8[2 -- [[14]] ]._f7, l_30A, "push_out_vault_l", 4.0, -1.5, 5, 713, 4.0, 0); - PED::SET_SYNCHRONIZED_SCENE_PHASE(l_4C8[2 -- [[14]] ]._f7, 0.0); - PED::_2208438012482A1A(l_4C8[2 -- [[14]] ], 0, 0); - PED::SET_PED_COMBAT_ATTRIBUTES(l_4C8[2 -- [[14]] ], 38, 1); - PED::SET_BLOCKING_OF_NON_TEMPORARY_EVENTS(l_4C8[2 -- [[14]] ], 1); - if (AUDIO::LOAD_STREAM("Gold_Cart_Push_Anim_01", "BIG_SCORE_3B_SOUNDS")) { - AUDIO::PLAY_STREAM_FROM_OBJECT(l_36F[0 -- [[1]] ]); - } - - - - - Examples: - CAM::PLAY_SYNCHRONIZED_CAM_ANIM(l_2734, NETWORK::_02C40BF885C567B6(l_2739), "PLAYER_EXIT_L_CAM", "mp_doorbell"); - CAM::PLAY_SYNCHRONIZED_CAM_ANIM(l_F0D[7 -- [[1]] ], l_F4D[15 -- [[1]] ], "ah3b_attackheli_cam2", "missheistfbi3b_helicrash"); - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - p4 and p7 are usually 1000.0f. - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - This native only comes up once. And in that one instance, p1 is "1". - - - - - p1 appears to only be "0" or "3". I personally use "0" as p1. - - - - - p5 always seems to be 1 i.e TRUE - - - - - Parameters p0-p5 seems correct. The bool p6 is unknown, but through every X360 script it's always 1. Please correct p0-p5 if any prove to be wrong. - - - - - spawns a few distant/out-of-sight peds, vehicles, animals etc each time it is called - - - - - This native is used to attribute the SRL that BeginSrl is going to load. This is usually used for 'in-game' cinematics (not cutscenes but camera stuff) instead of SetFocusArea because it loads a specific area of the map which is pretty useful when the camera moves from distant areas. - For instance, GTA:O opening cutscene. - - <https://pastebin.com/2EeKVeLA> : a list of SRL found in srllist.meta - <https://pastebin.com/zd9XYUWY> : here is the content of a SRL file opened with codewalker. - - - - - Example: - bool prepareAlarm = AUDIO::PREPARE_ALARM("PORT_OF_LS_HEIST_FORT_ZANCUDO_ALARMS"); - - - - - All music event names found in the b617d scripts: pastebin.com/GnYt0R3P - - - - - This isn't a hash collision. It is used to give the player cash via the CASH_GIFT stats. - - - - - Called to update entity attachments. - When using ATTACH_ENTITY_TO_ENTITY and using bone '0' then you set the first entity invisible. The attachments will mess up, use bone '-1' to fix that issue - - - - - **Experimental**: This native may be altered or removed in future versions of CitizenFX without warning. - - Registers a set of archetypes with the game engine. These should match `CBaseArchetypeDef` class information from the game. - - - - - Registered commands can be executed by entering them in the client console (this works for client side and server side registered commands). Or by entering them in the server console/through an RCON client (only works for server side registered commands). Or if you use a supported chat resource, like the default one provided in the cfx-server-data repository, then you can enter the command in chat by prefixing it with a `/`. - - Commands registered using this function can also be executed by resources, using the [`ExecuteCommand` native](#_0x561C060B). - - The restricted bool is not used on the client side. Permissions can only be checked on the server side, so if you want to limit your command with an ace permission automatically, make it a server command (by registering it in a server script). - - **Example result**: - - ![](https://i.imgur.com/TaCnG09.png) - - - - - **Experimental**: This native may be altered or removed in future versions of CitizenFX without warning. - - Registers a set of entities with the game engine. These should match `CEntityDef` class information from the game. - At this time, this function **should not be used in a live environment**. - - - - - Registers a specified .gfx file as GFx font library. - The .gfx file has to be registered with the streamer already. - - - - - Registers a specified font name for use with text draw commands. - - - - - Based on TASK_COMBAT_HATED_TARGETS_AROUND_PED, the parameters are likely similar (PedHandle, and area to attack in). - - - - - Registers a script for any object with a specific model hash. - BRAIN::REGISTER_OBJECT_SCRIPT_BRAIN("ob_telescope", ${prop_telescope_01}, 100, 4.0, -1, 9); - - - - - gtaforums.com/topic/885580-ped-headshotmugshot-txd/ - - - - - Similar to REGISTER_PEDHEADSHOT but creates a transparent background instead of black. - - **Result of the example code:** - <https://i.imgur.com/iHz8ztn.png> - - - - - An internal function which allows the current resource's HLL script runtimes to receive state for the specified event. - - - - - **This native does absolutely nothing, just a nullsub** - - - - - **Experimental**: This native may be altered or removed in future versions of CitizenFX without warning. - - Registers a dynamic streaming asset from the server with the GTA streaming module system. - - - - - **Experimental**: This native may be altered or removed in future versions of CitizenFX without warning. - - Registers a KVP value as an asset with the GTA streaming module system. This function currently won't work. - - - - - **Experimental**: This native may be altered or removed in future versions of CitizenFX without warning. - - Registers a file from an URL as a streaming asset in the GTA streaming subsystem. This will asynchronously register the asset, and caching is done based on the URL itself - cache headers are ignored. - - Use `IS_STREAMING_FILE_READY` to check if the asset has been registered successfully. - - - - - PED::REGISTER_TARGET(l_216, PLAYER::PLAYER_PED_ID()); from re_prisonbreak.txt. - l_216 = RECSBRobber1 - - - - - setting the last params to false it does that same so I would suggest its not a toggle - - - - - Pickup hashes: pastebin.com/8EuSv2r1 - - - - - p1 seems always to be 0 - - - - - Unloads the specified animation set. An animation set provides movement animations for a ped. See SET_PED_MOVEMENT_CLIPSET. - Animation set and clip set are synonymous. - - - - - In the C++ SDK, this seems not to work-- the blip isn't removed immediately. I use it for saving cars. - E.g.: - Ped pped = PLAYER::PLAYER_PED_ID(); - Vehicle v = PED::GET_VEHICLE_PED_IS_USING(pped); - Blip b = UI::ADD_BLIP_FOR_ENTITY(v); - works fine. - But later attempting to delete it with: - Blip b = UI::GET_BLIP_FROM_ENTITY(v); - if (UI::DOES_BLIP_EXIST(b)) UI::REMOVE_BLIP(&b); - doesn't work. And yes, doesn't work without the DOES_BLIP_EXIST check either. Also, if you attach multiple blips to the same thing (say, a vehicle), and that thing disappears, the blips randomly attach to other things (in my case, a vehicle). - Thus for me, UI::REMOVE_BLIP(&b) only works if there's one blip, (in my case) the vehicle is marked as no longer needed, you drive away from it and it eventually despawns, AND there is only one blip attached to it. I never intentionally attach multiple blips but if the user saves the car, this adds a blip. Then if they delete it, it is supposed to remove the blip, but it doesn't. Then they can immediately save it again, causing another blip to re-appear. - ------------- - Passing the address of the variable instead of the value works for me. - e.g. - int blip = UI::ADD_BLIP_FOR_ENTITY(ped); - UI::REMOVE_BLIP(&blip); - Remove blip will currently crash your game, just artificially remove the blip by setting the sprite to a id that is 'invisible'. - -- - It crashes my game. - - - - - Alias for REMOVE_ANIM_SET. - - - - - Removes all decals in range from a position, it includes the bullet holes, blood pools, petrol... - - - - - IPL list: pastebin.com/iNGLY32D - - - - - Removes multiplayer cash hud each frame - - - - - Ped will no longer get angry when you stay near him. - - - - - Judging purely from a quick disassembly, if the ped is in a vehicle, the ped will be deleted immediately. If not, it'll be marked as no longer needed. - very elegant.. - - - - - Retracts the hook on the cargobob. - Note: after you retract it the natives for dropping the hook no longer work - - - - - Experimental natives, please do not use in a live environment. - - - - - windowIndex: - 0 = Front Right Window - 1 = Front Left Window - 2 = Back Right Window - 3 = Back Left Window - - - - - For a full list, see here: pastebin.com/Tp0XpBMN - - - - - This native removes a specified weapon from your selected ped. - Weapon Hashes: pastebin.com/0wwDZgkF - Example: - C#: - Function.Call(Hash.REMOVE_WEAPON_FROM_PED, Game.Player.Character, 0x99B507EA); - C++: - WEAPON::REMOVE_WEAPON_FROM_PED(PLAYER::PLAYER_PED_ID(), 0x99B507EA); - The code above removes the knife from the player. - - - - - ease - smooth transition between the camera's positions - easeTime - Time in milliseconds for the transition to happen - If you have created a script (rendering) camera, and want to go back to the - character (gameplay) camera, call this native with render set to 0. - Setting ease to 1 will smooth the transition. - - - - - PLAYER::REPORT_CRIME(PLAYER::PLAYER_ID(), 37, PLAYER::GET_WANTED_LEVEL_THRESHOLD(1)); - From am_armybase.ysc.c4: - PLAYER::REPORT_CRIME(PLAYER::PLAYER_ID(4), 36, PLAYER::GET_WANTED_LEVEL_THRESHOLD(4)); - ----- - This was taken from the GTAV.exe v1.334. The function is called sub_140592CE8. For a full decompilation of the function, see here: pastebin.com/09qSMsN7 - ----- - crimeType: - 1: Firearms possession - 2: Person running a red light ("5-0-5") - 3: Reckless driver - 4: Speeding vehicle (a "5-10") - 5: Traffic violation (a "5-0-5") - 6: Motorcycle rider without a helmet - 7: Vehicle theft (a "5-0-3") - 8: Grand Theft Auto - 9: ??? - 10: ??? - 11: Assault on a civilian (a "2-40") - 12: Assault on an officer - 13: Assault with a deadly weapon (a "2-45") - 14: Officer shot (a "2-45") - 15: Pedestrian struck by a vehicle - 16: Officer struck by a vehicle - 17: Helicopter down (an "AC"?) - 18: Civilian on fire (a "2-40") - 19: Officer set on fire (a "10-99") - 20: Car on fire - 21: Air unit down (an "AC"?) - 22: An explosion (a "9-96") - 23: A stabbing (a "2-45") (also something else I couldn't understand) - 24: Officer stabbed (also something else I couldn't understand) - 25: Attack on a vehicle ("MDV"?) - 26: Damage to property - 27: Suspect threatening officer with a firearm - 28: Shots fired - 29: ??? - 30: ??? - 31: ??? - 32: ??? - 33: ??? - 34: A "2-45" - 35: ??? - 36: A "9-25" - 37: ??? - 38: ??? - 39: ??? - 40: ??? - 41: ??? - 42: ??? - 43: Possible disturbance - 44: Civilian in need of assistance - 45: ??? - 46: ??? - - - - - MulleDK19: Alias of REQUEST_COLLISION_AT_COORD. - - - - - Request a gxt into the passed slot. - - - - - All occurrences and usages found in b617d, sorted alphabetically and identical lines removed: pastebin.com/XZ1tmGEz - - - - - Starts loading the specified animation set. An animation set provides movement animations for a ped. See SET_PED_MOVEMENT_CLIPSET. - - - - - p1: usually 8 - Cutscene list: pastebin.com/Bbj7ANpQ - - - - - IPL list: pastebin.com/iNGLY32D - - - - - streaming::request_menu_ped_model(joaat("player_zero")); - iVar0 = ped::create_ped(25, joaat("player_zero"), cam::_get_gameplay_cam_coords(), 0f, 0, false); - entity::freeze_entity_position(iVar0, true); - ped::_0x4668d80430d6c299(iVar0); - ui::give_ped_to_pause_menu(iVar0, 1); - - - - - All occurrences and usages found in b617d: pastebin.com/NzZZ2Tmm - - - - - Request a model to be loaded into memory - Looking it the disassembly, it seems like it actually returns the model if it's already loaded. - - - - - assetName = For example "core" - From the b678d decompiled scripts: - STREAMING::REQUEST_NAMED_PTFX_ASSET("core_snow"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("fm_mission_controler"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("proj_xmas_firework"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_apartment_mp"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_biolab_heist"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_indep_fireworks"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_indep_parachute"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_indep_wheelsmoke"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_mp_cig_plane"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_mp_creator"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_mp_tankbattle"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_ornate_heist"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_prison_break_heist_station"); - - - - - maps script name (thread + 0xD0) by lookup via scriptfx.dat - does nothing when script name is empty - - - - - GTA V Scaleforms Decompiled - pastebin.com/mmNdjX2k - Gets a new native after almost every update. - Update 1.0.393.2 - 0x67D02A194A2FC2BD - Update 1.0.463.1 - 0xC97D787CE7726A2F - Update 1.0.505.2 - 0x36ECDA4DD9A3F08D - Update 1.0.573.1 - 0xE3C796DC28BC3254 - Update 1.0.678.1 - 0x2F14983962462691 - - - - - Also used by 0x67D02A194A2FC2BD - - - - - For a full list, see here: pastebin.com/yLNWicUi - - - - - All occurrences and usages found in b617d, sorted alphabetically and identical lines removed: pastebin.com/AkmDAVn6 - - - - - formerly _REQUEST_STREAMED_SCRIPT - - - - - last param seems to be unused in disassembly - - - - - REQUEST_VEHICLE_ASSET(GET_HASH_KEY(cargobob3), 3); - vehicle found that have asset's: - cargobob3 - submersible - blazer - - - - - In script files, seen as REQUEST_VEHICLE_RECORDING(1, "FBIs1UBER"); - - - - - For a full list, see here: pastebin.com/Tp0XpBMN - For a full list of the points, see here: goo.gl/wIH0vn - Max number of loaded recordings is 32. - - - - - Nearly every instance of p1 I found was 31. Nearly every instance of p2 I found was 0. - REQUEST_WEAPON_ASSET(iLocal_1888, 31, 26); - - - - - Resets the value for the last vehicle driven by the Ped. - - - - - If p1 is 0.0, I believe you are back to normal. - If p1 is 1.0, it looks like you can only rotate the ped, not walk. - Using the following code to reset back to normal - PED::RESET_PED_MOVEMENT_CLIPSET(PLAYER::PLAYER_PED_ID(), 0.0); - - - - - This function resets the alignment set using `SET_SCRIPT_GFX_ALIGN` and `SET_SCRIPT_GFX_ALIGN_PARAMS` to the default - values ('I', 'I'; 0, 0, 0, 0). This should be used after having used the aforementioned functions in order to not affect - any other scripts attempting to draw. - - - - - The inner function has a switch on the second parameter. It's the stuck timer index. - Here's some pseudo code I wrote for the inner function: - void __fastcall NATIVE_RESET_VEHICLE_STUCK_TIMER_INNER(CUnknown* unknownClassInVehicle, int timerIndex) - { - switch (timerIndex) - { - case 0: - unknownClassInVehicle->FirstStuckTimer = (WORD)0u; - case 1: - unknownClassInVehicle->SecondStuckTimer = (WORD)0u; - case 2: - unknownClassInVehicle->ThirdStuckTimer = (WORD)0u; - case 3: - unknownClassInVehicle->FourthStuckTimer = (WORD)0u; - case 4: - unknownClassInVehicle->FirstStuckTimer = (WORD)0u; - unknownClassInVehicle->SecondStuckTimer = (WORD)0u; - unknownClassInVehicle->ThirdStuckTimer = (WORD)0u; - unknownClassInVehicle->FourthStuckTimer = (WORD)0u; - break; - }; - } - - - - - Please change back to _0xBD12C5EEE184C33 (hash collision) - actual native starts with SET_RADAR_ZOOM_... - - - - - Before using this native click the native above and look at the decription. - Example: - int GetHash = Function.Call<int>(Hash.GET_HASH_KEY, "fe_menu_version_corona_lobby"); - Function.Call(Hash.ACTIVATE_FRONTEND_MENU, GetHash, 0, -1); - Function.Call(Hash.RESTART_FRONTEND_MENU(GetHash, -1); - This native refreshes the frontend menu. - p1 = Hash of Menu - p2 = Unknown but always works with -1. - - - - - This function will simply bring the dead person back to life. - Try not to use it alone, since using this function alone, will make peds fall through ground in hell(well for the most of the times). - Instead, before calling this function, you may want to declare the position, where your Resurrected ped to be spawn at.(For instance, Around 2 floats of Player's current position.) - Also, disabling any assigned task immediately helped in the number of scenarios, where If you want peds to perform certain decided tasks. - - - - - It will revive/cure the injured ped. The condition is ped must not be dead. - Upon setting and converting the health int, found, if health falls below 5, the ped will lay on the ground in pain(Maximum default health is 100). - This function is well suited there. - - - - - windowIndex: - 0 = Front Right Window - 1 = Front Left Window - 2 = Back Right Window - 3 = Back Left Window - - - - - Roll down all the windows of the vehicle passed through the first parameter. - - - - - 0 = Front Right Window - 1 = Front Left Window - 2 = Back Right Window - 3 = Back Left Window - - - - - Forces a rope to a certain length. - - - - - Loads rope textures for all ropes in the current scene. - - - - - Reset a rope to a certain length. - - - - - Unloads rope textures for all ropes in the current scene. - - - - - Pushes a boolean for the Scaleform function onto the stack. - - - - - Pushes a float for the Scaleform function onto the stack. - - - - - Pushes an integer for the Scaleform function onto the stack. - - - - - If bool Toggle = true so the mobile is hide to screen. - If bool Toggle = false so the mobile is show to screen. - - - - - Sends a message to the specific DUI root page. This is similar to SEND_NUI_MESSAGE. - - - - - Injects a 'mouse down' event for a DUI object. Coordinates are expected to be set using SEND_DUI_MOUSE_MOVE. - - - - - Injects a 'mouse move' event for a DUI object. Coordinates are in browser space. - - - - - Injects a 'mouse up' event for a DUI object. Coordinates are expected to be set using SEND_DUI_MOUSE_MOVE. - - - - - Injects a 'mouse wheel' event for a DUI object. - - - - - Sends a message to the `loadingScreen` NUI frame, which contains the HTML page referenced in `loadscreen` resources. - - - - - If 'value' is 50 and 'maxValue' is 100, the bar is halfway filled. - Same with 5/10, 2/4, etc. - - - - - Makes pedestrians sound their horn longer, faster and more agressive when they use their horn. - - - - - This can be between 1.0f - 14.9f - You can change the max in IDA from 15.0. I say 15.0 as the function blrs if what you input is greater than or equal to 15.0 hence why it's 14.9 max default. - On PC the multiplier can be between 0.0f and 50.0f (inclusive). - - - - - Most likely a hash collision - - - - - Audio List - gtaforums.com/topic/795622-audio-for-mods/ - All found occurrences in b617d, sorted alphabetically and identical lines removed: pastebin.com/FTeAj4yZ - Yes - - - - - All occurrences found in b617d, sorted alphabetically and identical lines removed: pastebin.com/WkXDGgQL - New Ambient Zone List (Combind with old): pastebin.com/h8BsKgUD -DasChaos - - - - - All occurrences found in b617d, sorted alphabetically and identical lines removed: pastebin.com/jYvw7N1S - New Ambient Zone List (Combind with old): pastebin.com/h8BsKgUD -DasChaos - - - - - mood can be 0 or 1 (it's not a boolean value!). Effects audio of the animal. - - - - - Does not affect weapons, particles, fire/explosions, flashlights or the sun. - - When set to true, all emissive textures (including ped components that have light effects), street lights, building lights, vehicle lights, etc will all be turned off. - - Used in Humane Labs Heist for EMP. - - - - - Possible flag names: - "ActivateSwitchWheelAudio" - "AllowAmbientSpeechInSlowMo" - "AllowCutsceneOverScreenFade" - "AllowForceRadioAfterRetune" - "AllowPainAndAmbientSpeechToPlayDuringCutscene" - "AllowPlayerAIOnMission" - "AllowPoliceScannerWhenPlayerHasNoControl" - "AllowRadioDuringSwitch" - "AllowRadioOverScreenFade" - "AllowScoreAndRadio" - "AllowScriptedSpeechInSlowMo" - "AvoidMissionCompleteDelay" - "DisableAbortConversationForDeathAndInjury" - "DisableAbortConversationForRagdoll" - "DisableBarks" - "DisableFlightMusic" - "DisableReplayScriptStreamRecording" - "EnableHeadsetBeep" - "ForceConversationInterrupt" - "ForceSeamlessRadioSwitch" - "ForceSniperAudio" - "FrontendRadioDisabled" - "HoldMissionCompleteWhenPrepared" - "IsDirectorModeActive" - "IsPlayerOnMissionForSpeech" - "ListenerReverbDisabled" - "LoadMPData" - "MobileRadioInGame" - "OnlyAllowScriptTriggerPoliceScanner" - "PlayMenuMusic" - "PoliceScannerDisabled" - "ScriptedConvListenerMaySpeak" - "SpeechDucksScore" - "SuppressPlayerScubaBreathing" - "WantedMusicDisabled" - "WantedMusicOnMission" - ------------------------------- - No added flag names between b393d and b573d, including b573d. - ####################################################################### - "IsDirectorModeActive" is an audio flag which will allow you to play speech infinitely without any pauses like in Director Mode. - ----------------------------------------------------------------------- - All flag IDs and hashes: - ID: 01 | Hash: 0x20A7858F - ID: 02 | Hash: 0xA11C2259 - ID: 03 | Hash: 0x08DE4700 - ID: 04 | Hash: 0x989F652F - ID: 05 | Hash: 0x3C9E76BA - ID: 06 | Hash: 0xA805FEB0 - ID: 07 | Hash: 0x4B94EA26 - ID: 08 | Hash: 0x803ACD34 - ID: 09 | Hash: 0x7C741226 - ID: 10 | Hash: 0x31DB9EBD - ID: 11 | Hash: 0xDF386F18 - ID: 12 | Hash: 0x669CED42 - ID: 13 | Hash: 0x51F22743 - ID: 14 | Hash: 0x2052B35C - ID: 15 | Hash: 0x071472DC - ID: 16 | Hash: 0xF9928BCC - ID: 17 | Hash: 0x7ADBDD48 - ID: 18 | Hash: 0xA959BA1A - ID: 19 | Hash: 0xBBE89B60 - ID: 20 | Hash: 0x87A08871 - ID: 21 | Hash: 0xED1057CE - ID: 22 | Hash: 0x1584AD7A - ID: 23 | Hash: 0x8582CFCB - ID: 24 | Hash: 0x7E5E2FB0 - ID: 25 | Hash: 0xAE4F72DB - ID: 26 | Hash: 0x5D16D1FA - ID: 27 | Hash: 0x06B2F4B8 - ID: 28 | Hash: 0x5D4CDC96 - ID: 29 | Hash: 0x8B5A48BA - ID: 30 | Hash: 0x98FBD539 - ID: 31 | Hash: 0xD8CB0473 - ID: 32 | Hash: 0x5CBB4874 - ID: 33 | Hash: 0x2E9F93A9 - ID: 34 | Hash: 0xD93BEA86 - ID: 35 | Hash: 0x92109B7D - ID: 36 | Hash: 0xB7EC9E4D - ID: 37 | Hash: 0xCABDBB1D - ID: 38 | Hash: 0xB3FD4A52 - ID: 39 | Hash: 0x370D94E5 - ID: 40 | Hash: 0xA0F7938F - ID: 41 | Hash: 0xCBE1CE81 - ID: 42 | Hash: 0xC27F1271 - ID: 43 | Hash: 0x9E3258EB - ID: 44 | Hash: 0x551CDA5B - ID: 45 | Hash: 0xCB6D663C - ID: 46 | Hash: 0x7DACE87F - ID: 47 | Hash: 0xF9DE416F - ID: 48 | Hash: 0x882E6E9E - ID: 49 | Hash: 0x16B447E7 - ID: 50 | Hash: 0xBD867739 - ID: 51 | Hash: 0xA3A58604 - ID: 52 | Hash: 0x7E046BBC - ID: 53 | Hash: 0xD95FDB98 - ID: 54 | Hash: 0x5842C0ED - ID: 55 | Hash: 0x285FECC6 - ID: 56 | Hash: 0x9351AC43 - ID: 57 | Hash: 0x50032E75 - ID: 58 | Hash: 0xAE6D0D59 - ID: 59 | Hash: 0xD6351785 - ID: 60 | Hash: 0xD25D71BC - ID: 61 | Hash: 0x1F7F6423 - ID: 62 | Hash: 0xE24C3AA6 - ID: 63 | Hash: 0xBFFDD2B7 - - - - - Toggles the big minimap state like in GTA:Online. - - To get the current state of the minimap, use [`GetBigmapActive`](#_0xF6AE18A7). - - - - - This sets bit [offset] of [address] to on. - The offsets used are different bits to be toggled on and off, typically there is only one address used in a script. - Example: - GAMEPLAY::SET_BIT(&bitAddress, 1); - To check if this bit has been enabled: - GAMEPLAY::IS_BIT_SET(bitAddress, 1); // will return 1 afterwards - Please note, this method may assign a value to [address] when used. - - - - - Sets alpha-channel for blip color. - Example: - Blip blip = UI::ADD_BLIP_FOR_ENTITY(entity); - UI::SET_BLIP_COLOUR(blip , 3); - UI::SET_BLIP_ALPHA(blip , 64); - - - - - false for enemy - true for friendly - - - - - Sets whether or not the specified blip should only be displayed when nearby, or on the minimap. - - - - - Examples result: - - ![](https://i.imgur.com/skY6vAJ.png) - - **index:** - - ``` - 1 = No distance shown in legend - 2 = Distance shown in legend - 7 = "Other Players" category, also shows distance in legend - 10 = "Property" category - 11 = "Owned Property" category - ``` - - Any other value behaves like `index = 1`, `index` wraps around after 255 - - Blips with categories `7`, `10` or `11` will all show under the specific categories listing in the map legend, regardless of sprite or name. - - **Legend entries** - - | index | Legend entry | Label | - | ----- | -------------- | --------------- | - | 7 | Other Players | `BLIP_OTHPLYR` | - | 10 | Property | `BLIP_PROPCAT` | - | 11 | Owned Property | `BLIP_APARTCAT` | - - - - - (Hex code are approximate) - 0: White (#fefefe) - 1: Red (#e03232) - 2: Green (#71cb71) - 3: Blue (#5db6e5) - 4: White (#fefefe) - 5: Taxi Yellow (#eec64e) - 6: Light Red (#c25050) - 7: Violet (#9c6eaf) - 8: Pink (#fe7ac3) - 9: Light Orange (#f59d79) - 10: Light Brown (#b18f83) - 11: Light Green (#8dcea7) - 12: Light Blue (Teal) (#70a8ae) - 13: Very Light Purple (#d3d1e7) - 14: Dark Purple (#8f7e98) - 15: Cyan (#6ac4bf) - 16: Light Yellow (#d5c398) - 17: Orange (#ea8e50) - 18: Light Blue (#97cae9) - 19: Dark Pink (#b26287) - 20: Dark Yellow (#8f8d79) - 21: Dark Orange (#a6755e) - 22: Light Gray (#afa8a8) - 23: Light Pink (#e78d9a) - 24: Lemon Green (#bbd65b) - 25: Forest Green (#0c7b56) - 26: Electric Blue (#7ac3fe) - 27: Bright Purple (#ab3ce6) - 28: Dark Taxi Yellow (#cda80c) - 29: Dark Blue (#4561ab) - 30: Dark Cyan (#29a5b8) - 31: Light Brown (#b89b7b) - 32: Very Light Blue (#c8e0fe) - 33: Light Yellow (#f0f096) - 34: Light Pink (#ed8ca1) - 35: Light Red (#f98a8a) - 36: Light Yellow (#fbeea5) - 37: White (#fefefe) - 38: Blue (#2c6db8) - 39: Light Gray (#9a9a9a) - 40: Dark Gray (#4c4c4c) - Certainly a lot more remaining. - - - - - **displayId Behaviour** <br> - 0 = Doesn't show up, ever, anywhere. <br> - 1 = Doesn't show up, ever, anywhere. <br> - 2 = Shows on both main map and minimap. (Selectable on map) <br> - 3 = Shows on main map only. (Selectable on map) <br> - 4 = Shows on main map only. (Selectable on map) <br> - 5 = Shows on minimap only. <br> - 6 = Shows on both main map and minimap. (Selectable on map) <br> - 7 = Doesn't show up, ever, anywhere. <br> - 8 = Shows on both main map and minimap. (Not selectable on map) <br> - 9 = Shows on minimap only. <br> - 10 = Shows on both main map and minimap. (Not selectable on map) <br> - Anything higher than 10 seems to be exactly the same as 10. <br> - <br> - Rockstar seem to only use 0, 2, 3, 4, 5 and 8 in the decompiled scripts. - - - - - Adds up after viewing multiple R* scripts. I believe that the duration is in miliseconds. - - - - - Doesn't work if the label text of gxtEntry is >= 80. - - - - - See this topic for more details : gtaforums.com/topic/717612-v-scriptnative-documentation-and-research/page-35?p=1069477935 - - - - - After some testing, looks like you need to use UI:CEIL() on the rotation (vehicle/ped heading) before using it there. - - - - - Enable / disable showing route for the Blip-object. - - - - - <!-- - _loc1_.map((name, idx) => `| ${idx} | ${name} | ![${name}](https://runtime.fivem.net/blips/${name}.svg) |`).join('\n') - --> - - Sets the displayed sprite for a specific blip. - - There's a [list of sprites](https://docs.fivem.net/game-references/blips/) on the FiveM documentation site. - - - - - works with AI::TASK_SET_BLOCKING_OF_NON_TEMPORARY_EVENTS to make a ped completely oblivious to all events going on around him - - - - - Set camera as active/inactive. - - - - - Previous declaration void SET_CAM_ACTIVE_WITH_INTERP(Cam camTo, Cam camFrom, int duration, BOOL easeLocation, BOOL easeRotation) is completely wrong. The last two params are integers not BOOLs... - - - - - Allows you to aim and shoot at the direction the camera is facing. - - - - - Sets the position of the cam. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - Sets the field of view of the cam. - --------------------------------------------- - Min: 1.0f - Max: 130.0f - - - - - The native seems to only be called once. - The native is used as so, - CAM::SET_CAM_INHERIT_ROLL_VEHICLE(l_544, getElem(2, &l_525, 4)); - In the exile1 script. - - - - - Sets the rotation of the cam. - Last parameter unknown. - Last parameter seems to always be set to 2. - - - - - I named p1 as timeDuration as it is obvious. I'm assuming tho it is ran in ms(Milliseconds) as usual. - - - - - Setting ped to true allows the ped to shoot "friendlies". - p2 set to true when toggle is also true seams to make peds permanently unable to aim at, even if you set p2 back to false. - p1 = false & p2 = false for unable to aim at. - p1 = true & p2 = false for able to aim at. - - - - - Hardcoded to not work in multiplayer. - - - - - Sets the cylinder height of the checkpoint. - Parameters: - * nearHeight - The height of the checkpoint when inside of the radius. - * farHeight - The height of the checkpoint when outside of the radius. - * radius - The radius of the checkpoint. - - - - - Sets the checkpoint color. - - - - - p0 = 0/1 or true/false - It doesn't seems to work - - - - - SET_CLOCK_TIME(12, 34, 56); - - - - - combatType can be between 0-14. See GET_COMBAT_FLOAT below for a list of possible parameters. - - - - - All occurrences found in b617d, sorted alphabetically and identical lines removed: - AUDIO::SET_CUTSCENE_AUDIO_OVERRIDE("_AK"); - AUDIO::SET_CUTSCENE_AUDIO_OVERRIDE("_CUSTOM"); - AUDIO::SET_CUTSCENE_AUDIO_OVERRIDE("_TOOTHLESS"); - - - - - p3 could be heading. Needs more research. - - - - - Thanks R*! ;) - if ((l_161 == 0) || (l_161 == 2)) { - sub_2ea27("Trying to set Jimmy prop variation"); - CUTSCENE::_0546524ADE2E9723("Jimmy_Boston", 1, 0, 0, 0); - } - - - - - Only used twice in R* scripts - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - sometimes used used with NET_TO_OBJ - hash collision last 2 words - - - - - This native sets the app id for the discord rich presence implementation. - - - - - This native sets the image asset for the discord rich presence implementation. - - - - - This native sets the small image asset for the discord rich presence implementation. - - - - - This native sets the hover text of the small image asset for the discord rich presence implementation. - - - - - This native sets the hover text of the image asset for the discord rich presence implementation. - - - - - This is a NOP function. It does nothing at all. - - - - - Sets the on-screen drawing origin for draw-functions (which is normally x=0,y=0 in the upper left corner of the screen) to a world coordinate. - From now on, the screen coordinate which displays the given world coordinate on the screen is seen as x=0,y=0. - Example in C#: - Vector3 boneCoord = somePed.GetBoneCoord(Bone.SKEL_Head); - Function.Call(Hash.SET_DRAW_ORIGIN, boneCoord.X, boneCoord.Y, boneCoord.Z, 0); - Function.Call(Hash.DRAW_SPRITE, "helicopterhud", "hud_corner", -0.01, -0.015, 0.013, 0.013, 0.0, 255, 0, 0, 200); - Function.Call(Hash.DRAW_SPRITE, "helicopterhud", "hud_corner", 0.01, -0.015, 0.013, 0.013, 90.0, 255, 0, 0, 200); - Function.Call(Hash.DRAW_SPRITE, "helicopterhud", "hud_corner", -0.01, 0.015, 0.013, 0.013, 270.0, 255, 0, 0, 200); - Function.Call(Hash.DRAW_SPRITE, "helicopterhud", "hud_corner", 0.01, 0.015, 0.013, 0.013, 180.0, 255, 0, 0, 200); - Function.Call(Hash.CLEAR_DRAW_ORIGIN); - Result: www11.pic-upload.de/19.06.15/bkqohvil2uao.jpg - If the pedestrian starts walking around now, the sprites are always around her head, no matter where the head is displayed on the screen. - This function also effects the drawing of texts and other UI-elements. - The effect can be reset by calling GRAPHICS::CLEAR_DRAW_ORIGIN(). - - - - - For p1 & p2 (Ped, Vehicle). I could be wrong, as the only time this native is called in scripts is once and both are 0, but I assume this native will work like SET_MOUNTED_WEAPON_TARGET in which has the same exact amount of parameters and the 1st and last 3 parameters are right and the same for both natives. - - - - - The function specifically verifies the value is equal to, or less than 1.0f. If it is greater than 1.0f, the function does nothing at all. - - - - - range 0.0f - 1.0f - - - - - This native is used to set the driving style for specific ped. - Driving styles id seems to be: - 786468 - 262144 - 786469 - http://gtaforums.com/topic/822314-guide-driving-styles/ - - - - - Navigates the specified DUI browser to a different URL. - - - - - Used with [SET_ENABLE_HANDCUFFS](#_0xDF1AF8B5D56542FA) in decompiled scripts. From my observations, I have noticed that while being ragdolled you are not able to get up but you can still run. Your legs can also bend. - - - - - ped can not pull out a weapon when true - - - - - Enables diving motion when underwater. - - - - - skin - everything alpha except skin - Set entity alpha level. Ranging from 0 to 255 but chnages occur after every 20 percent (after every 51). - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Makes the specified entity (ped, vehicle or object) persistent. Persistent entities will not automatically be removed by the engine. - p1 has no effect when either its on or off - maybe a quick disassembly will tell us what it does - p2 has no effect when either its on or off - maybe a quick disassembly will tell us what it does - - - - - Marks the specified entity (ped, vehicle or object) as no longer needed. - Entities marked as no longer needed, will be deleted as the engine sees fit. - - - - - Sets whether the entity can be targeted without being in line-of-sight. - - - - - p7 is always 1 in the scripts. Set to 1, an area around the destination coords for the moved entity is cleared from other entities. - Often ends with 1, 0, 0, 1); in the scripts. It works. - Axis - Invert Axis Flags - - - - - Axis - Invert Axis Flags - - - - - health >= 0 - - - - - Sets a ped or an object totally invincible. It doesn't take any kind of damage. Peds will not ragdoll on explosions and the tazer animation won't apply either. - If you use this for a ped and you want Ragdoll to stay enabled, then do: - *(DWORD *)(pedAddress + 0x188) |= (1 << 9); - Use this if you want to get the invincibility status: - bool IsPedInvincible(Ped ped) - { - auto addr = getScriptHandleBaseAddress(ped); - if (addr) - { - DWORD flag = *(DWORD *)(addr + 0x188); - return ((flag & (1 << 8)) != 0) || ((flag & (1 << 9)) != 0); - } - return false; - } - - - - - Certainly not the main usage of this native but when set to true for a Vehicle, it will prevent the vehicle to explode if it is spawned far away from the player. - - - - - I tried using this and I see nothing happening, what is this suppose to do? - - - - - I tried using this and I see nothing happening, what is this suppose to do? - - - - - LOD distance can be 0 to 0xFFFF (higher values will result in 0xFFFF) as it is actually stored as a 16-bit value (aka uint16_t). - - - - - For instance: ENTITY::SET_ENTITY_MAX_HEALTH(PLAYER::PLAYER_PED_ID(), 200); // director_mode.c4: 67849 - - - - - Calling this function, regardless of the "unknown" value, disabled collision between two entities. - Importance of entity1 and 2 order is unclear. - - - - - Enable / disable each type of damage. - -------------- - p7 is to to '1' in am_mp_property_ext/int: entity::set_entity_proofs(uParam0->f_19, true, true, true, true, true, true, 1, true); - - - - - w is the correct parameter name! - - - - - rotationOrder refers to the order yaw pitch roll is applied - value ranges from 0 to 5. What you use for rotationOrder when setting must be the same as rotationOrder when getting the rotation. - Unsure what value corresponds to what rotation order, more testing will be needed for that. - For the most part R* uses 1 or 2 as the order. - p5 is usually set as true - - - - - Example here: www.gtaforums.com/topic/830463-help-with-turning-lights-green-and-causing-peds-to-crash-into-each-other/#entry1068211340 - 0 = green - 1 = red - 2 = yellow - changing lights may not change the behavior of vehicles - - - - - Note that the third parameter(denoted as z) is "up and down" with positive ment. - - - - - unk was always 0. - - - - - In appcamera.c4, Line 106: - if (VEHICLE::IS_VEHICLE_DRIVEABLE(PED::SET_EXCLUSIVE_PHONE_RELATIONSHIPS(PLAYER::PLAYER_PED_ID()), 0)) - So return type could be a vehicle? - !Hash collision - gets the vehicle handle from ped which is about entering the vehicle! - sfink: agreed, 100% - Proper name is GET_VEHICLE_PED_IS_ENTERING - - - - - Groups found in the scripts used with this native: - "AMMUNATION", - "QUARRY", - "Triathlon_1", - "Triathlon_2", - "Triathlon_3" - - - - - Sets whether the game should fade in after the player dies or is arrested. - - - - - Sets whether the game should fade out after the player is arrested. - - - - - Sets whether the game should fade out after the player dies. - - - - - Sets a visually fake wanted level on the user interface. Used by Rockstar's scripts to "override" regular wanted levels and make custom ones while the real wanted level and multipliers are ignored. - Max is 6. Also the mini-map gets the red & blue flashing effect. - - - - - Purpose of p0 and p1 unknown. - - - - - It seems to make the entity's coords mark the point from which LOD-distances are measured. In my testing, setting a vehicle as the focus entity and moving that vehicle more than 300 distance units away from the player will make the level of detail around the player go down drastically (shadows disappear, textures go extremely low res, etc). The player seems to be the default focus entity. - - - - - From the b617d scripts: - CAM::SET_FOLLOW_PED_CAM_CUTSCENE_CHAT("FOLLOW_PED_ATTACHED_TO_ROPE_CAMERA", 0); - CAM::SET_FOLLOW_PED_CAM_CUTSCENE_CHAT("FOLLOW_PED_ON_EXILE1_LADDER_CAMERA", 1500); - CAM::SET_FOLLOW_PED_CAM_CUTSCENE_CHAT("FOLLOW_PED_SKY_DIVING_CAMERA", 0); - CAM::SET_FOLLOW_PED_CAM_CUTSCENE_CHAT("FOLLOW_PED_SKY_DIVING_CAMERA", 3000); - CAM::SET_FOLLOW_PED_CAM_CUTSCENE_CHAT("FOLLOW_PED_SKY_DIVING_FAMILY5_CAMERA", 0); - CAM::SET_FOLLOW_PED_CAM_CUTSCENE_CHAT("FOLLOW_PED_SKY_DIVING_CAMERA", 0); - - - - - Sets the type of Player camera: - 0 - Third Person Close - 1 - Third Person Mid - 2 - Third Person Far - 4 - First Person - - - - - Sets the type of Player camera in vehicles: - 0 - Third Person Close - 1 - Third Person Mid - 2 - Third Person Far - 4 - First Person - - - - - Sets some values in a vehicle gadget (tow arm, digger arm, etc.). Don't know which one though. - I've tested on the towtruck 1 & 2, Dock Lift (Crate Arm), Dozer, and such have no effect. However when used on a Forklift it sets the height of the forks. 0.0 = Lowest 1.0 = Highest. This is best to be used if you wanna pick-up a car since un-realistically on GTA V forklifts can't pick up much of anything due to vehicle mass. If you put this under a car then set it above 0.0 to a 'lifted-value' it will raise the car with no issue lol - - - - - Sets the camera position relative to heading in float from -360 to +360. - Heading is alwyas 0 in aiming camera. - - - - - Sets the camera pitch. - Parameters: - x = pitches the camera on the x axis. - Value2 = always seems to be hex 0x3F800000 (1.000000 float). - - - - - Sets the amplitude for the gameplay (i.e. 3rd or 1st) camera to shake. Used in script "drunk_controller.ysc.c4" to simulate making the player drunk. - - - - - Example C#: - Function.Call(Hash.SET_GAMEPLAY_COORD_HINT, position.X, position.Y, position.Z, hintDuration, 1500, 1000, 0); - The camera look-at is canceled if the user is already panning the camera around. - - - - - p6 & p7 - possibly length or time - - - - - Make sure to call this from the correct thread if you're using multiple threads because all other threads except the one which is calling SET_GAME_PAUSED will be paused which means you will lose control and the game remains in paused mode until you exit GTA5.exe - - - - - Needs to be looped! And yes, it does work and is not a hash collision. - Birds will try to reach the given height. - - - - - Disables the GPS route displayed on the minimap while within a certain zone (area). When in a disabled zone and creating a waypoint, the GPS route is not shown on the minimap until you are outside of the zone. When disabled, the direct distance is shown on minimap opposed to distance to travel. Seems to only work before setting a waypoint. - - You can clear the disabled zone with CLEAR_GPS_DISABLED_ZONE_AT_INDEX. - - **Setting a waypoint at the same coordinate:** - - Disabled Zone: <https://i.imgur.com/P9VUuxM.png> - - Enabled Zone (normal): <https://i.imgur.com/BPi24aw.png> - - - - - Only the script that originally called SET_GPS_FLAGS can set them again. Another script cannot set the flags, until the first script that called it has called CLEAR_GPS_FLAGS. - Doesn't seem like the flags are actually read by the game at all. - --------------- - Might be left-over from GTA IV. I kind of miss the *ding-dong* turn left in 2 meters lady lol. - - - - - level can be from 0 to 3 - 0: 9.8 - 1: 2.4 - 2: 0.1 - very low - 3: 0.0 - - - - - 0: Default - 1: Circle Around Leader - 2: Alternative Circle Around Leader - 3: Line, with Leader at center - - - - - Sets the range at which members will automatically leave the group. - - - - - Sets a global handling override for a specific vehicle class. The name is supposed to match the `handlingName` field from handling.meta. - Example: `SetHandlingField('AIRTUG', 'CHandlingData', 'fSteeringLock', 360.0)` - - - - - Sets a global handling override for a specific vehicle class. The name is supposed to match the `handlingName` field from handling.meta. - Example: `SetHandlingFloat('AIRTUG', 'CHandlingData', 'fSteeringLock', 360.0)` - - - - - Sets a global handling override for a specific vehicle class. The name is supposed to match the `handlingName` field from handling.meta. - - - - - Sets a global handling override for a specific vehicle class. The name is supposed to match the `handlingName` field from handling.meta. - Example: `SetHandlingVector('AIRTUG', 'CHandlingData', 'vecCentreOfMassOffset', vector3(0.0, 0.0, -5.0))` - - - - - Harcoded limit for radius is 30.0f - - - - - Equivalent of SET_HELI_BLADES_SPEED(vehicleHandle, 1.0f); - this native works on planes to? - - - - - Sets the speed of the helicopter blades in percentage of the full speed. - vehicleHandle: The helicopter. - speed: The speed in percentage, 0.0f being 0% and 1.0f being 100%. - - - - - Makes the ped ragdoll like when falling from a great height - - - - - No other indices work... - IK Index --------- - 1 = head - 3 = left arm - 4 = right arm - ------------------ - EntityLookAt can be null (0 handle) - - - - - Sets whether or not `SHUTDOWN_LOADING_SCREEN` automatically shuts down the NUI frame for the loading screen. If this is enabled, - you will have to manually invoke `SHUTDOWN_LOADING_SCREEN_NUI` whenever you want to hide the NUI loading screen. - - - - - If this is the correct name, what microphone? I know your TV isn't going to reach out and adjust your headset so.. - - - - - This native is used to toggle map components like the army base at the top of the map. - p2 appears to be always -1. - - An incomplete list of components ID: - - ``` - 0: Los Santos' air port yellow lift-off markers. - 1: Sandy Shore's air port yellow lift-off markers. - 2: Trevor's air port yellow lift-off markers. - 3: Unknown. - 4: Unknown. - 5: Unknown. - 6: Vespucci Beach lifeguard building. - 7: Unknown. - 8: Unknown. - 15: Army base. - ``` - - - - - Not much is known so far on what it does _exactly_. - All I know for sure is that it draws the specified hole ID on the pause menu map as well as on the mini-map/radar. This native also seems to change some other things related to the pause menu map's behaviour, for example: you can no longer set waypoints, the pause menu map starts up in a 'zoomed in' state. This native does not need to be executed every tick. - - You need to center the minimap manually as well as change/lock it's zoom and angle in order for it to appear correctly on the minimap. - You'll also need to use the `GOLF` scaleform in order to get the correct minmap border to show up. - - Use [`N_0x35edd5b2e3ff01c0()`](https://runtime.fivem.net/doc/reference.html#_0x35EDD5B2E3FF01C0) to reset the map when you no longer want to display any golf holes (you still need to unlock zoom, position and angle of the radar manually after calling this). - - - - - Sets the display info for a minimap overlay. - - - - - If true, the player can't save the game. - If the parameter is true, sets the mission flag to true, if the parameter is false, the function does nothing at all. - ^ also, if the mission flag is already set, the function does nothing at all - - - - - Takes a text label, gets the string (must not be longer than 600 chars, should not exceed 64 chars) and sets the name to that string. - p0 must be true. - - - - - p1 is always 0 - - - - - Last parameter is unknown and always zero. - - - - - The minimum/default is 500.0f. If you plan to make it bigger set it's position as well. Also this seems to need to be called in a loop as when you close the phone the scale is reset. If not in a loop you'd need to call it everytime before you re-open the phone. - - - - - Enables Radio on phone. - - - - - Unloads model from memory - - - - - Note: Look in decompiled scripts and the times that p1 and p2 aren't 0. They are filled with vars. If you look through out that script what other natives those vars are used in, you can tell p1 is a ped and p2 is a vehicle. Which most likely means if you want the mounted weapon to target a ped set targetVehicle to 0 or vice-versa. - - - - - Sets flag's sprite transparency. 0-255. - - - - - Ranges from 0 to 255. 0 is grey health bar, ~50 yellow, 200 purple. - - - - - Ranges from 0 to 255. 0 is grey health bar, ~50 yellow, 200 purple. - Should be enabled as flag (2). Has 0 opacity by default. - - This was _SET_MP_GAMER_TAG_HEALTH_BAR_COLOR, - - - - - enum MpGamerTagComponent - { - GAMER_NAME = 0, - CREW_TAG, - healthArmour, - BIG_TEXT, - AUDIO_ICON, - MP_USING_MENU, - MP_PASSIVE_MODE, - WANTED_STARS, - MP_DRIVER, - MP_CO_DRIVER, - MP_TAGGED, - GAMER_NAME_NEARBY, - ARROW, - MP_PACKAGES, - INV_IF_PED_FOLLOWING, - RANK_TEXT, - MP_TYPING - }; - - - - - displays wanted star above head - - - - - **This native does absolutely nothing, just a nullsub** - - - - - Whether or not another player is allowed to take control of the entity - - - - - **This native does absolutely nothing, just a nullsub** - - ``` - Not used in the scripts. - Bullshit! It's used in spawn_activities - ``` - - - - - Enables Night Vision. - Example: - C#: Function.Call(Hash.SET_NIGHTVISION, true); - C++: GRAPHICS::SET_NIGHTVISION(true); - BOOL toggle: - true = turns night vision on for your player. - false = turns night vision off for your player. - - - - - This is an alias of SET_ENTITY_AS_NO_LONGER_NEEDED. - - - - - Adjust the physics parameters of a prop, or otherwise known as "object". This is useful for simulated gravity. - Other parameters seem to be unknown. - p2: seems to be weight and gravity related. Higher value makes the obj fall faster. Very sensitive? - p3: seems similar to p2 - p4: makes obj fall slower the higher the value - p5: similar to p4 - - - - - Appears to have an optional bool parameter that is unused in the scripts. - If you pass true, something will be set to zero. - - - - - p0 always seems to be 0 - duration in milliseconds - frequency should range from about 10 (slow vibration) to 255 (very fast) - appears to be a hash collision, though it does do what it says - example: - SET_PAD_SHAKE(0, 100, 200); - - - - - hash collision - - - - - only works on some fx's - p4 = 0 - - - - - Should be named SET_PARTICLE_FX_LOOPED_PROPERTY. "Evolution" doesn't make much sense... - -------- - p4 seems to be always 0. - Usage: - if (!GRAPHICS::DOES_PARTICLE_FX_LOOPED_EXIST(l_25C7)) { - l_25C7 = GRAPHICS::_DDE23F30CC5A0F03("scr_veh_plane_gen_damage", l_8B9, l_25C4, 0.0, 0.0, 0.0, ENTITY::_GET_ENTITY_BONE_INDEX(l_8B9, "exhaust"), 1.0, 0, 0, 0); - GRAPHICS::SET_PARTICLE_FX_LOOPED_EVOLUTION(l_25C7, "damage_smoke", 0.5, 0); - GRAPHICS::SET_PARTICLE_FX_LOOPED_EVOLUTION(l_25C7, "damage_fire", 0.2, 0); - } - - - - - Usage example for C#: - Function.Call(Hash.SET_PARTICLE_FX_NON_LOOPED_ALPHA, new InputArgument[] { 0.1f }); - Note: the argument alpha ranges from 0.0f-1.0f ! - - - - - only works on some fx's - - - - - Toggles the light state for the pause menu ped in frontend menus. - - This is used by R\* in combination with [`SET_PAUSE_MENU_PED_SLEEP_STATE`](#_0xECF128344E9FF9F1) to toggle the "offline" or "online" state in the "friends" tab of the pause menu in GTA Online. - - Example: - On: ![lights on](https://vespura.com/hi/i/2019-04-01_16-09_540ee_1015.png) - Off: ![lights off](https://vespura.com/hi/i/2019-04-01_16-10_8b5e7_1016.png) - - - - - Toggles the pause menu ped sleep state for frontend menus. - - [Example GIF](https://vespura.com/hi/i/2019-04-01_15-51_8ed38_1014.gif) - - - - - accuracy = 0-100, 100 being perfectly accurate - - - - - value ranges from 0 to 3. - - - - - stance: - 0 = idle - 1 = walk - 2 = running - p5 = usually set to true - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Sets the armor of the specified ped. - ped: The Ped to set the armor of. - amount: A value between 0 and 100 indicating the value to set the Ped's armor to. - - - - - Turns the desired ped into a cop. If you use this on the player ped, you will become almost invisible to cops dispatched for you. You will also report your own crimes, get a generic cop voice, get a cop-vision-cone on the radar, and you will be unable to shoot at other cops. SWAT and Army will still shoot at you. Toggling ped as "false" has no effect; you must change p0's ped model to disable the effect. - - - - - This is an alias of SET_ENTITY_AS_NO_LONGER_NEEDED. - - - - - 0 = can (bike) - 1 = can't (bike) - 2 = unk - 3 = unk - - - - - It simply makes the said ped to cower behind cover object(wall, desk, car) - Peds flee attributes must be set to not to flee, first. Else, most of the peds, will just flee from gunshot sounds or any other panic situations. - - - - - p2 usually 0 - - - - - This only will teleport the ped to the group leader if the group leader teleports (sets coords). - Only works in singleplayer - - - - - Overrides the ped's collision capsule radius for the current tick. - Must be called every tick to be effective. - Setting this to 0.001 will allow warping through some objects. - - - - - 100 would equal attack - less then 50ish would mean run away - Only the values 0, 1 and 2 occur in the decompiled scripts. Most likely refers directly to the values also described in combatbehaviour.meta: - 0: CA_Poor - 1: CA_Average - 2: CA_Professional - Tested this and got the same results as the first explanation here. Could not find any difference between 0, 1 and 2. - - - - - These combat attributes seem to be the same as the BehaviourFlags from combatbehaviour.meta. - So far, these are the equivalents found: - enum CombatAttributes - { - BF_CanUseCover = 0, - BF_CanUseVehicles = 1, - BF_CanDoDrivebys = 2, - BF_CanLeaveVehicle = 3, - BF_CanFightArmedPedsWhenNotArmed = 5, - BF_CanTauntInVehicle = 20, - BF_AlwaysFight = 46, - BF_IgnoreTrafficWhenDriving = 52, - BF_FreezeMovement = 292, - BF_PlayerCanUseFiringWeapons = 1424 - }; - 8 = ? - 9 = ? - 13 = ? - 14 ? - Research thread: gtaforums.com/topic/833391-researchguide-combat-behaviour-flags/ - - - - - 0 - Stationary (Will just stand in place) - 1 - Defensive (Will try to find cover and very likely to blind fire) - 2 - Offensive (Will attempt to charge at enemy but take cover as well) - 3 - Suicidal Offensive (Will try to flank enemy in a suicidal attack) - - - - - Only the values 0, 1 and 2 occur in the decompiled scripts. Most likely refers directly to the values also described as AttackRange in combatbehaviour.meta: - 0: CR_Near - 1: CR_Medium - 2: CR_Far - - - - - This native is used to set component variation on a ped. Components, drawables and textures IDs are related to the ped model. - - ### MP Freemode list of components - - **0**: Face - **1**: Mask - **2**: Hair - **3**: Torso - **4**: Leg - **5**: Parachute / bag - **6**: Shoes - **7**: Accessory - **8**: Undershirt - **9**: Kevlar - **10**: Badge - **11**: Torso 2 - - ### Related and useful natives - - [GET_NUMBER_OF_PED_DRAWABLE_VARIATIONS](#_0x27561561732A7842) - [GET_NUMBER_OF_PED_TEXTURE_VARIATIONS](#_0x8F7156A3142A6BAD) - - [List of component/props ID](gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html) of player_two with examples - - - - - Research help : pastebin.com/fPL1cSwB - New items added with underscore as first char - ----------------------------------------------------------------------- - enum PedConfigFlags - { - PED_FLAG_CAN_FLY_THRU_WINDSCREEN = 32, - PED_FLAG_DIES_BY_RAGDOLL = 33, - _PED_FLAG_PUT_ON_MOTORCYCLE_HELMET = 35, - PED_FLAG_NO_COLLISION = 52, - _PED_FLAG_IS_SHOOTING = 58, - _PED_FLAG_IS_ON_GROUND = 60, - PED_FLAG_NO_COLLIDE = 62, - PED_FLAG_DEAD = 71, - PED_FLAG_IS_SNIPER_SCOPE_ACTIVE = 72, - PED_FLAG_SUPER_DEAD = 73, - _PED_FLAG_IS_IN_AIR = 76, - PED_FLAG_IS_AIMING = 78, - PED_FLAG_DRUNK = 100, - _PED_FLAG_IS_NOT_RAGDOLL_AND_NOT_PLAYING_ANIM = 104, - PED_FLAG_NO_PLAYER_MELEE = 122, - PED_FLAG_NM_MESSAGE_466 = 125, - PED_FLAG_INJURED_LIMP = 166, - PED_FLAG_INJURED_LIMP_2 = 170, - _PED_FLAG_DISABLE_SHUFFLING_TO_DRIVER_SEAT = 184, - PED_FLAG_INJURED_DOWN = 187, - PED_FLAG_SHRINK = 223, - PED_FLAG_MELEE_COMBAT = 224, - _PED_FLAG_IS_ON_STAIRS = 253, - _PED_FLAG_HAS_ONE_LEG_ON_GROUND = 276, - PED_FLAG_NO_WRITHE = 281, - PED_FLAG_FREEZE = 292, - PED_FLAG_IS_STILL = 301, - PED_FLAG_NO_PED_MELEE = 314, - _PED_SWITCHING_WEAPON = 331, - PED_FLAG_ALPHA = 410, - _PED_FLAG_DISABLE_STARTING_VEH_ENGINE = 429, - }; - (*) When flagId is set to 33 and the bool value to true, peds will die by starting ragdoll, so you should set this flag to false when you resurrect a ped. - When flagId is set to 62 and the boolvalue to false this happens: Ped is taken out of vehicle and can't get back in when jacking their empty vehicle. If in a plane it falls from the sky and crashes. Sometimes peds vehicle continue to drive the route without its driver who's running after. - (*) - JUMPING CHANGES 60,61,104 TO FALSE - BEING ON WATER CHANGES 60,61 TO FALSE AND 65,66,168 TO TRUE - FALLING CHANGES 60,61,104,276 TO FALSE AND TO 76 TRUE - DYING CHANGES 60,61,104,276* TO FALSE AND (NONE) TO TRUE - DYING MAKES 60,61,104 TO FALSE - BEING IN A CAR CHANGES 60,79,104 TO FALSE AND 62 TO TRUE - (*)Maximum value for flagId is 0x1AA (426) in b944. - ID 0xF0 (240) appears to be a special flag which is handled different compared to the others IDs. - - - - - teleports ped to coords along with the vehicle ped is in - - - - - p1: Only "CODE_HUMAN_STAND_COWER" found in the b617d scripts. - - - - - Has 5 parameters since latest patches. - - - - - Sets Ped Default Clothes - - - - - • Usage - → Use this native inside a looped function. - → Values: - → 0.0 = no peds on streets - → 1.0 = normal peds on streets - - - - - [16/06/2017 by ins1de] : - Drops the weapon object from selected peds and turns it into a pickup. - Offset defines the next position of the weapon, ammo count is the stored ammo in the pickup (if ammoCount == 0, pickup won't be created) - Default offset values (freemode.c): - if (is_ped_walking(player_ped_id())) - { - vVar1 = {0.6f, 4.7f, -0.1f}; - } - else if (is_ped_sprinting(player_ped_id())) - { - vVar1 = {0.6f, 5.7f, -0.1f}; - } - else if (is_ped_running(player_ped_id())) - { - vVar1 = {0.6f, 4.7f, -0.1f}; - } - else - { - vVar1 = {0.4f, 4.7f, -0.1f}; - } - - - - - This is the SET_CHAR_DUCKING from GTA IV, that makes Peds duck. This function does nothing in GTA V. It cannot set the ped as ducking in vehicles, and IS_PED_DUCKING will always return false. - - - - - This is a hash collision... - _IS_VEHICLE_NEAR_ENTITY - - - - - Values look to be between 0.0 and 1.0 - From decompiled scripts: 0.0, 0.6, 0.65, 0.8, 1.0 - You are correct, just looked in IDA it breaks from the function if it's less than 0.0f or greater than 1.0f. - - - - - FIRING_PATTERN_BURST_FIRE = 0xD6FF6D61 ( 1073727030 ) - FIRING_PATTERN_BURST_FIRE_IN_COVER = 0x026321F1 ( 40051185 ) - FIRING_PATTERN_BURST_FIRE_DRIVEBY = 0xD31265F2 ( -753768974 ) - FIRING_PATTERN_FROM_GROUND = 0x2264E5D6 ( 577037782 ) - FIRING_PATTERN_DELAY_FIRE_BY_ONE_SEC = 0x7A845691 ( 2055493265 ) - FIRING_PATTERN_FULL_AUTO = 0xC6EE6B4C ( -957453492 ) - FIRING_PATTERN_SINGLE_SHOT = 0x5D60E4E0 ( 1566631136 ) - FIRING_PATTERN_BURST_FIRE_PISTOL = 0xA018DB8A ( -1608983670 ) - FIRING_PATTERN_BURST_FIRE_SMG = 0xD10DADEE ( 1863348768 ) - FIRING_PATTERN_BURST_FIRE_RIFLE = 0x9C74B406 ( -1670073338 ) - FIRING_PATTERN_BURST_FIRE_MG = 0xB573C5B4 ( -1250703948 ) - FIRING_PATTERN_BURST_FIRE_PUMPSHOTGUN = 0x00BAC39B ( 12239771 ) - FIRING_PATTERN_BURST_FIRE_HELI = 0x914E786F ( -1857128337 ) - FIRING_PATTERN_BURST_FIRE_MICRO = 0x42EF03FD ( 1122960381 ) - FIRING_PATTERN_SHORT_BURSTS = 0x1A92D7DF ( 445831135 ) - FIRING_PATTERN_SLOW_FIRE_TANK = 0xE2CA3A71 ( -490063247 ) - if anyone is interested firing pattern info: pastebin.com/Px036isB - - - - - Bool probably has something to do with vehicles, maybe if the ped can use vehicle to flee? - Values used as attributes are those in sequence of powers of two, 1, 2, 4, 8, 16, 32, 64.... 65536. - jedijosh920: Setting attribute "2" to true will make the ped steal a vehicle. - - - - - p1/gadgetHash was always 0xFBAB5776 ("GADGET_PARACHUTE"). - p2 is always true. - - - - - From the scripts: - PED::SET_PED_GESTURE_GROUP(PLAYER::PLAYER_PED_ID(), - "ANIM_GROUP_GESTURE_MISS_FRA0"); - PED::SET_PED_GESTURE_GROUP(PLAYER::PLAYER_PED_ID(), - "ANIM_GROUP_GESTURE_MISS_DocksSetup1"); - - - - - enable or disable the gravity of a ped - Examples: - PED::SET_PED_GRAVITY(PLAYER::PLAYER_PED_ID(), 0x00000001); - PED::SET_PED_GRAVITY(Local_289[iVar0 -- [[20]] ], 0x00000001); - - - - - The "shape" parameters control the shape of the ped's face. The "skin" parameters control the skin tone. ShapeMix and skinMix control how much the first and second IDs contribute,(typically mother and father.) ThirdMix overrides the others in favor of the third IDs. IsParent is set for "children" of the player character's grandparents during old-gen character creation. It has unknown effect otherwise. - The IDs start at zero and go Male Non-DLC, Female Non-DLC, Male DLC, and Female DLC. - !!!Can someone add working example for this??? - try this: - headBlendData headData; - _GET_PED_HEAD_BLEND_DATA(PLAYER_PED_ID(), &headData); - SET_PED_HEAD_BLEND_DATA(PLAYER_PED_ID(), headData.shapeFirst, headData.shapeSecond, headData.shapeThird, headData.skinFirst, headData.skinSecond - , headData.skinThird, headData.shapeMix, headData.skinMix, headData.skinThird, 0); - For more info please refer to this topic. - gtaforums.com/topic/858970-all-gtao-face-ids-pedset-ped-head-blend-data-explained - - - - - OverlayID ranges from 0 to 12, index from 0 to _GET_NUM_OVERLAY_VALUES(overlayID)-1, and opacity from 0.0 to 1.0. - overlayID Part Index, to disable - 0 Blemishes 0 - 23, 255 - 1 Facial Hair 0 - 28, 255 - 2 Eyebrows 0 - 33, 255 - 3 Ageing 0 - 14, 255 - 4 Makeup 0 - 74, 255 - 5 Blush 0 - 6, 255 - 6 Complexion 0 - 11, 255 - 7 Sun Damage 0 - 10, 255 - 8 Lipstick 0 - 9, 255 - 9 Moles/Freckles 0 - 17, 255 - 10 Chest Hair 0 - 16, 255 - 11 Body Blemishes 0 - 11, 255 - 12 Add Body Blemishes 0 - 1, 255 - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - Ped: The ped to warp. - vehicle: The vehicle to warp the ped into. - Seat_Index: [-1 is driver seat, -2 first free passenger seat] - Moreinfo of Seat Index - DriverSeat = -1 - Passenger = 0 - Left Rear = 1 - RightRear = 2 - - - - - PED::SET_PED_IN_VEHICLE_CONTEXT(l_128, GAMEPLAY::GET_HASH_KEY("MINI_PROSTITUTE_LOW_PASSENGER")); - PED::SET_PED_IN_VEHICLE_CONTEXT(l_128, GAMEPLAY::GET_HASH_KEY("MINI_PROSTITUTE_LOW_RESTRICTED_PASSENGER")); - PED::SET_PED_IN_VEHICLE_CONTEXT(l_3212, GAMEPLAY::GET_HASH_KEY("MISS_FAMILY1_JIMMY_SIT")); - PED::SET_PED_IN_VEHICLE_CONTEXT(l_3212, GAMEPLAY::GET_HASH_KEY("MISS_FAMILY1_JIMMY_SIT_REAR")); - PED::SET_PED_IN_VEHICLE_CONTEXT(l_95, GAMEPLAY::GET_HASH_KEY("MISS_FAMILY2_JIMMY_BICYCLE")); - PED::SET_PED_IN_VEHICLE_CONTEXT(num3, GAMEPLAY::GET_HASH_KEY("MISSFBI2_MICHAEL_DRIVEBY")); - PED::SET_PED_IN_VEHICLE_CONTEXT(PLAYER::PLAYER_PED_ID(), GAMEPLAY::GET_HASH_KEY("MISS_ARMENIAN3_FRANKLIN_TENSE")); - PED::SET_PED_IN_VEHICLE_CONTEXT(PLAYER::PLAYER_PED_ID(), GAMEPLAY::GET_HASH_KEY("MISSFBI5_TREVOR_DRIVING")); - - - - - Sets the ped drunk sounds. Only works with PLAYER_PED_ID - ==================================================== - As mentioned above, this only sets the drunk sound to ped/player. - To give the Ped a drunk effect with drunk walking animation try using SET_PED_MOVEMENT_CLIPSET - Below is an example - if (!Function.Call<bool>(Hash.HAS_ANIM_SET_LOADED, "move_m@drunk@verydrunk")) - { - Function.Call(Hash.REQUEST_ANIM_SET, "move_m@drunk@verydrunk"); - } - Function.Call(Hash.SET_PED_MOVEMENT_CLIPSET, Ped.Handle, "move_m@drunk@verydrunk", 0x3E800000); - And to stop the effect use - RESET_PED_MOVEMENT_CLIPSET - - - - - "IK" stands for "Inverse kinematics." I assume this has something to do with how the ped uses his legs to balance. In the scripts, the second parameter is always an int with a value of 2, 0, or sometimes 1 - - - - - sets the maximum health of a ped - I think it's never been used in any script - - - - - Ped will stay on the ground after being stunned for at lest ms time. (in milliseconds) - - - - - Maximum possible amount of money on MP is 2000. ~JX - ----------------------------------------------------------------------------- - Maximum amount that a ped can theoretically have is 65535 (0xFFFF) since the amount is stored as an unsigned short (uint16_t) value. - - - - - p2 is usually 1.0f - EDIT 12/24/16: - p2 does absolutely nothing no matter what the value is. - EDIT 08/16/17: - p2 is the time for a smooth changing to the new clipset. - List of movement clipsets: - Thanks to elsewhat for list. - "ANIM_GROUP_MOVE_BALLISTIC" - "ANIM_GROUP_MOVE_LEMAR_ALLEY" - "clipset@move@trash_fast_turn" - "FEMALE_FAST_RUNNER" - "missfbi4prepp1_garbageman" - "move_characters@franklin@fire" - "move_characters@Jimmy@slow@" - "move_characters@michael@fire" - "move_f@flee@a" - "move_f@scared" - "move_f@sexy@a" - "move_heist_lester" - "move_injured_generic" - "move_lester_CaneUp" - "move_m@bag" - "MOVE_M@BAIL_BOND_NOT_TAZERED" - "MOVE_M@BAIL_BOND_TAZERED" - "move_m@brave" - "move_m@casual@d" - "move_m@drunk@moderatedrunk" - "MOVE_M@DRUNK@MODERATEDRUNK" - "MOVE_M@DRUNK@MODERATEDRUNK_HEAD_UP" - "MOVE_M@DRUNK@SLIGHTLYDRUNK" - "MOVE_M@DRUNK@VERYDRUNK" - "move_m@fire" - "move_m@gangster@var_e" - "move_m@gangster@var_f" - "move_m@gangster@var_i" - "move_m@JOG@" - "MOVE_M@PRISON_GAURD" - "MOVE_P_M_ONE" - "MOVE_P_M_ONE_BRIEFCASE" - "move_p_m_zero_janitor" - "move_p_m_zero_slow" - "move_ped_bucket" - "move_ped_crouched" - "move_ped_mop" - "MOVE_M@FEMME@" - "MOVE_F@FEMME@" - "MOVE_M@GANGSTER@NG" - "MOVE_F@GANGSTER@NG" - "MOVE_M@POSH@" - "MOVE_F@POSH@" - "MOVE_M@TOUGH_GUY@" - "MOVE_F@TOUGH_GUY@" - ~ NotCrunchyTaco - - - - - Min: 0.00 - Max: 10.00 - Can be used in combo with fast run cheat. - When value is set to 10.00: - Sprinting without fast run cheat: 66 m/s - Sprinting with fast run cheat: 77 m/s - Needs to be looped! - Note: According to IDA for the Xbox360 xex, when they check bgt they seem to have the min to 0.0f, but the max set to 1.15f not 10.0f. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - *untested but char *name could also be a hash for a localized string - - - - - The distance between these points, is the diagonal of a box (remember it's 3D). - - - - - Hash collision!!! Actual name: SET_PED_PATH_MAY_ENTER_WATER - - - - - p2 could be time. Only example in the decompiled scripts uses it as -1. - - - - - **This native does absolutely nothing, just a nullsub** - - ``` - Points to the same function as for example GET_RANDOM_VEHICLE_MODEL_IN_MEMORY and it does absolutely nothing. - ``` - - - - - This is only called once in the scripts. - sub_1CD9(&l_49, 0, getElem(3, &l_34, 4), "MICHAEL", 0, 1); - sub_1CA8("WORLD_HUMAN_SMOKING", 2); - PED::SET_PED_PRIMARY_LOOKAT(getElem(3, &l_34, 4), PLAYER::PLAYER_PED_ID()); - - - - - This native is used to set prop variation on a ped. Components, drawables and textures IDs are related to the ped model. - - ### MP Freemode list of props - - **0**: Hat - **1**: Glass - **2**: Ear - **6**: Watch - **7**: Bracelet - - ### Related and useful natives - - [GET_NUMBER_OF_PED_PROP_DRAWABLE_VARIATIONS](#_0x5FAF9754E789FB47) - [GET_NUMBER_OF_PED_PROP_TEXTURE_VARIATIONS](#_0xA6E7F1CEB523E171) - - [List of component/props ID](gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html) of player_two with examples - - - - - Causes Ped to ragdoll on collision with any object (e.g Running into trashcan). If applied to player you will sometimes trip on the sidewalk. - - - - - p1 is always false in R* scripts. - Quick disassembly seems to indicate that p1 is unused. - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - PED::SET_PED_RESET_FLAG(PLAYER::PLAYER_PED_ID(), 240, 1); - - - - - shootRate 0-1000 - - - - - p1 is usually 0 in the scripts. action is either 0 or a pointer to "DEFAULT_ACTION". - - - - - ped cannot be headshot if this is set to false - - - - - Sweat is set to 100.0 or 0.0 in the decompiled scripts. - - - - - Hash collision!!! - SET_VEHICLE_I* - destroyType is 1 for opens on damage, 2 for breaks on damage. - - - - - Only 1 and 2 appear in the scripts. combatbehaviour.meta seems to only have TLR_SearchForTarget for all peds, but we don't know if that's 1 or 2. - - - - - time1- Time Ped is in ragdoll mode(ms) - time2- Unknown time, in milliseconds - ragdollType- - 0 : Normal ragdoll - 1 : Falls with stiff legs/body - 2 : Narrow leg stumble(may not fall) - 3 : Wide leg stumble(may not fall) - p4, p5, p6- No idea. In R*'s scripts they are usually either "true, true, false" or "false, false, false". - EDIT 3/11/16: unclear what 'mircoseconds' mean-- a microsecond is 1000x a ms, so time2 must be 1000x time1? more testing needed. -sob - Edit Mar 21, 2017: removed part about time2 being the microseconds version of time1. this just isn't correct. time2 is in milliseconds, and time1 and time2 don't seem to be connected in any way. - - - - - Return variable is never used in R*'s scripts. - Not sure what p2 does. It seems like it would be a time judging by it's usage in R*'s scripts, but didn't seem to affect anything in my testings. - x, y, and z are coordinates, most likely to where the ped will fall. - p7 is probably the force of the fall, but untested, so I left the variable name the same. - p8 to p13 are always 0f in R*'s scripts. - (Simplified) Example of the usage of the function from R*'s scripts: - ped::set_ped_to_ragdoll_with_fall(ped, 1500, 2000, 1, -entity::get_entity_forward_vector(ped), 1f, 0f, 0f, 0f, 0f, 0f, 0f); - - - - - p2 is usually -1 in the scripts. action is either 0 or "DEFAULT_ACTION". - - - - - This native refers to the field of vision the ped has above them, starting at 0 degrees. 90f would let the ped see enemies directly above of them. - - - - - This native refers to the field of vision the ped has below them, starting at 0 degrees. The angle value should be negative. - - - - - tintIndex can be the following: - 1 - 2 - 3 - 4 - 5 - 6 - 7 - - - - - combined with PED::SET_PED_WETNESS_HEIGHT(), this native makes the ped drenched in water up to the height specified in the other function - - - - - It adds the wetness level to the player clothing/outfit. As if player just got out from water surface. - - - - - duration specifies the time until the next respawn, in ms. (known values: 600000). - Usage Example: - Pickup pickup = OBJECT::CREATE_PICKUP_ROTATE(...); - OBJECT::SET_PICKUP_REGENERATION_TIME(pickup, 600000); // 10mins - - - - - This native sets the turbulence multiplier. It only works for planes. - 0.0 = no turbulence at all. - 1.0 = heavy turbulence. - - Works by just calling it once, does not need to be called every tick. - - - - - Hash collision! Disables speech. - - - - - Sets whether this player can be hassled by gangs. - - - - - Set whether this player should be able to do drive-bys. - "A drive-by is when a ped is aiming/shooting from vehicle. This includes middle finger taunts. By setting this value to false I confirm the player is unable to do all that. Tested on tick." - - - - - Sets whether this player can take cover. - - - - - 6 matches across 4 scripts. 5 occurrences were 240. The other was 255. - - - - - Every occurrence was either 0 or 2. - - - - - Every occurrence of p1 I found was true.1.0.335.2, 1.0.350.1/2, 1.0.372.2, 1.0.393.2, 1.0.393.4, 1.0.463.1; - - - - - Flags used in the scripts: 0,4,16,24,32,56,60,64,128,134,256,260,384,512,640,768,896,900,952,1024,1280,2048,2560 - Note to people who needs this with camera mods, etc.: - Flags(0, 4, 16, 24, 32, 56, 60, 64, 128, 134, 512, 640, 1024, 2048, 2560) - - Disables camera rotation as well. - Flags(256, 260, 384, 768, 896, 900, 952, 1280) - [ translation: cameraRotation = flags & (1 << 8) - sfink] - - - - - Hash collision - - - - - Simply sets you as invincible (Health will not deplete). - Use 0x733A643B5B0C53C1 instead if you want Ragdoll enabled, which is equal to: - *(DWORD *)(playerPedAddress + 0x188) |= (1 << 9); - - - - - Example from fm_mission_controler.ysc.c4: - PLAYER::SET_PLAYER_LOCKON(PLAYER::PLAYER_ID(), 1); - All other decompiled scripts using this seem to be using the player id as the first parameter, so I feel the need to confirm it as so. - No need to confirm it says PLAYER_ID() so it uses PLAYER_ID() lol. - - - - - Affects the range of auto aim target. - - - - - Default is 100. Use player id and not ped id. For instance: PLAYER::SET_PLAYER_MAX_ARMOUR(PLAYER::PLAYER_ID(), 100); // main_persistent.ct4 - - - - - Set the model for a specific Player. Be aware that this will destroy the current Ped for the Player and create a new one, any - reference to the old ped should be reset (by using the GetPlayerPed native). - - ``` - Make sure to request the model first and wait until it has loaded. - ``` - - - - - example: - PLAYER::SET_PLAYER_PARACHUTE_MODEL_OVERRIDE(PLAYER::PLAYER_ID(), 0x73268708); - - - - - tints 0 - 1 - 2 - 3 - 4 - - - - - Tints: - None = -1, - Rainbow = 0, - Red = 1, - SeasideStripes = 2, - WidowMaker = 3, - Patriot = 4, - Blue = 5, - Black = 6, - Hornet = 7, - AirFocce = 8, - Desert = 9, - Shadow = 10, - HighAltitude = 11, - Airbone = 12, - Sunrise = 13, - - - - - p1 was always 5. - p4 was always false. - - - - - Tints: - None = -1, - Rainbow = 0, - Red = 1, - SeasideStripes = 2, - WidowMaker = 3, - Patriot = 4, - Blue = 5, - Black = 6, - Hornet = 7, - AirFocce = 8, - Desert = 9, - Shadow = 10, - HighAltitude = 11, - Airbone = 12, - Sunrise = 13, - - - - - example: - flags: 0-6 - PLAYER::SET_PLAYER_RESET_FLAG_PREFER_REAR_SEATS(PLAYER::PLAYER_ID(), 6); - wouldnt the flag be the seatIndex? - - - - - Values around 1.0f to 2.0f used in game scripts. - - - - - 77 - - - - - the status of default voip system. It affects on `NETWORK_IS_PLAYER_TALKING` and `mp_facial` animation. - This function doesn't need to be called every frame, it works like a switcher. - - - - - Sets your targeting mode. - 0 = Traditional GTA - 1 = Assisted Aiming - 2 = Free Aim - Even tho gtaforums nor Alexander B supports this, if you're online in freemode already it's nice to have this since retail or otherwise you have to go to SP to change it. - - - - - Set player team on deathmatch and last team standing.. - - - - - # Predominant call signatures - PLAYER::SET_PLAYER_WANTED_CENTRE_POSITION(PLAYER::PLAYER_ID(), ENTITY::GET_ENTITY_COORDS(PLAYER::PLAYER_PED_ID(), 1)); - # Parameter value ranges - P0: PLAYER::PLAYER_ID() - P1: ENTITY::GET_ENTITY_COORDS(PLAYER::PLAYER_PED_ID(), 1) - P2: Not set by any call - - - - - Call SET_PLAYER_WANTED_LEVEL_NOW for immediate effect - wantedLevel is an integer value representing 0 to 5 stars even though the game supports the 6th wanted level but no police will appear since no definitions are present for it in the game files - disableNoMission- Disables When Off Mission- appears to always be false - - - - - Forces any pending wanted level to be applied to the specified player immediately. - Call SET_PLAYER_WANTED_LEVEL with the desired wanted level, followed by SET_PLAYER_WANTED_LEVEL_NOW. - Second parameter is unknown (always false). - - - - - p2 is always false in R* scripts - - - - - This modifies the damage value of your weapon. Whether it is a multiplier or base damage is unknown. - Based on tests, it is unlikely to be a multiplier. - - - - - The player will be ignored by the police if toggle is set to true - - - - - If toggle is set to false: - The police won't be shown on the (mini)map - If toggle is set to true: - The police will be shown on the (mini)map - - - - - List of interior hashes: pastebin.com/1FUyXNqY - Not for every interior zoom > 0 available. - - - - - zoomLevel ranges from 0 to 200 - - - - - Sets radio station by index. - - - - - For a full list, see here: pastebin.com/Kj9t38KF - - - - - Only found this one in the decompiled scripts: - AUDIO::SET_RADIO_TRACK("RADIO_03_HIPHOP_NEW", "ARM1_RADIO_STARTS"); - - - - - If the parameter is true, sets the random event flag to true, if the parameter is false, the function does nothing at all. - Does nothing if the mission flag is set. - - - - - Sets the relationship between two groups. This should be called twice (once for each group). - Relationship types: - 0 = Companion - 1 = Respect - 2 = Like - 3 = Neutral - 4 = Dislike - 5 = Hate - 255 = Pedestrians - Example: - PED::SET_RELATIONSHIP_BETWEEN_GROUPS(2, l_1017, 0xA49E591C); - PED::SET_RELATIONSHIP_BETWEEN_GROUPS(2, 0xA49E591C, l_1017); - - - - - makes the train all jumbled up and derailed as it moves on the tracks (though that wont stop it from its normal operations) - - - - - Sets the player's rich presence detail state for social platform providers to a specified string. - - - - - missing a last parameter int p6 - - - - - bool p7 - always 1 - - - - - -- [[ Corrected conflicting parameter names ]] - - - - - -- [[ Corrected conflicting parameter names ]] - - - - - Sets a pixel in the specified runtime texture. This will have to be committed using `COMMIT_RUNTIME_TEXTURE` to have any effect. - - - - - Multiplier goes up to 1.49 any value above will be completely overruled by the game and the multiplier will not take effect, this can be edited in memory however. - Just call it one time, it is not required to be called once every tick. - Note: At least the IDA method if you change the max float multiplier from 1.5 it will change it for both this and SWIM above. I say 1.5 as the function blrs if what you input is greater than or equal to 1.5 hence why it's 1.49 max default. - It is not possible to "decrease" speed. Anything below 1 will be ignored. - - - - - The bool is not a toggle!!! - - - - - Occurrences in the b617d scripts: pastebin.com/Tvg2PRHU - - - - - Sets a value indicating whether scenario peds should be returned by the next call to a command that returns peds. Eg. GET_CLOSEST_PED. - - - - - p0 and p1 are always the same - - - - - seems to enable/disable specific scenario-types from happening in the game world. - Here are some scenario types from the scripts: - "WORLD_MOUNTAIN_LION_REST" - "WORLD_MOUNTAIN_LION_WANDER" - "DRIVE" - "WORLD_VEHICLE_POLICE_BIKE" - "WORLD_VEHICLE_POLICE_CAR" - "WORLD_VEHICLE_POLICE_NEXT_TO_CAR" - "WORLD_VEHICLE_DRIVE_SOLO" - "WORLD_VEHICLE_BIKER" - "WORLD_VEHICLE_DRIVE_PASSENGERS" - "WORLD_VEHICLE_SALTON_DIRT_BIKE" - "WORLD_VEHICLE_BICYCLE_MOUNTAIN" - "PROP_HUMAN_SEAT_CHAIR" - "WORLD_VEHICLE_ATTRACTOR" - "WORLD_HUMAN_LEANING" - "WORLD_HUMAN_HANG_OUT_STREET" - "WORLD_HUMAN_DRINKING" - "WORLD_HUMAN_SMOKING" - "WORLD_HUMAN_GUARD_STAND" - "WORLD_HUMAN_CLIPBOARD" - "WORLD_HUMAN_HIKER" - "WORLD_VEHICLE_EMPTY" - "WORLD_VEHICLE_BIKE_OFF_ROAD_RACE" - "WORLD_HUMAN_PAPARAZZI" - "WORLD_VEHICLE_PARK_PERPENDICULAR_NOSE_IN" - "WORLD_VEHICLE_PARK_PARALLEL" - "WORLD_VEHICLE_CONSTRUCTION_SOLO" - "WORLD_VEHICLE_CONSTRUCTION_PASSENGERS" - "WORLD_VEHICLE_TRUCK_LOGS" - -alphazolam - scenarioType could be the same as scenarioName, used in for example AI::TASK_START_SCENARIO_AT_POSITION. - - - - - For a full list, see here: pastebin.com/yLNWicUi - - - - - This function anchors script draws to a side of the safe zone. This needs to be called to make the interface - independent of the player's safe zone configuration. - - These values are equivalent to `alignX` and `alignY` in `common:/data/ui/frontend.xml`, which can be used as a baseline - for default alignment. - - Valid values for `horizontalAlign`, from original documentation: - - - **C (67)** - Center: DRAW_TEXT starts in the middle of the screen, while DRAW_RECT starts on the right; both move with - the right side of the screen. - - **L (76)** - Left: Anchors to the left side, DRAW_RECT starts on the left side of the screen, same as DRAW_TEXT when - centered. - - **R (82)** - Right: DRAW_TEXT starts on the left side (normal 0,0), while DRAW_RECT starts some short distance away - from the right side of the screen, both move with the right side of the screen. - - Valid values for `verticalAlign`, from original documentation: - - - **B (66)** - Bottom: DRAW_RECT starts about as far as the middle of the map from the bottom, while DRAW_TEXT is about - rather centered. - - **C (67)** - Center: It starts at a certain distance from the bottom, but the distance is fixed, the distance is - different from 66. - - **T (84)** - Top: Anchors to the top, DRAW_RECT starts on the top of the screen, DRAW_TEXT just below it. - - Using any other value (including 0) will result in the safe zone not being taken into account for this draw. The - canonical value for this is 'I' (73). - - For example, you can use `SET_SCRIPT_GFX_ALIGN(0, 84)` to only scale on the Y axis (to the top), but not change the X - axis. - - To reset the value, use `RESET_SCRIPT_GFX_ALIGN`. - - - - - Sets the draw offset/calculated size for `SET_SCRIPT_GFX_ALIGN`. If using any alignment other than left/top, the game - expects the width/height to be configured using this native in order to get a proper starting position for the draw - command. - - - - - Sets a flag defining whether or not script draw commands should continue being drawn behind the pause - menu. This is usually used for TV channels and other draw commands that are used with a world render target. - - - - - Sets the draw order for script draw commands. - - Examples from decompiled scripts: - - ```cpp - GRAPHICS::SET_SCRIPT_GFX_DRAW_ORDER(7); - GRAPHICS::DRAW_RECT(0.5, 0.5, 3.0, 3.0, v_4, v_5, v_6, a_0._f172, 0); - GRAPHICS::SET_SCRIPT_GFX_DRAW_ORDER(1); - GRAPHICS::DRAW_RECT(0.5, 0.5, 1.5, 1.5, 0, 0, 0, 255, 0); - ``` - - - - - Only called once in the decompiled scripts. Presumably activates the specified generator. - - - - - Toggles Heatvision on/off. - - - - - Hardcoded to not work in multiplayer. - Used to lock/unlock doors to interior areas of the game. - (Possible) Door Types: - pastebin.com/9S2m3qA4 - Heading is either 1, 0 or -1 in the scripts. Means default closed(0) or opened either into(1) or out(-1) of the interior. - Locked means that the heading is locked. - p6 is always 0. - 225 door types, model names and coords found in stripclub.c4: - pastebin.com/gywnbzsH - get door info: pastebin.com/i14rbekD - - - - - Example: - AUDIO::SET_STATIC_EMITTER_ENABLED((Any*)"LOS_SANTOS_VANILLA_UNICORN_01_STAGE", false); AUDIO::SET_STATIC_EMITTER_ENABLED((Any*)"LOS_SANTOS_VANILLA_UNICORN_02_MAIN_ROOM", false); AUDIO::SET_STATIC_EMITTER_ENABLED((Any*)"LOS_SANTOS_VANILLA_UNICORN_03_BACK_ROOM", false); - This turns off surrounding sounds not connected directly to peds. - - - - - Access to the store for shark cards etc... - - - - - Swim speed multiplier. - Multiplier goes up to 1.49 - Just call it one time, it is not required to be called once every tick. - Note copied from below native. - Note: At least the IDA method if you change the max float multiplier from 1.5 it will change it for both this and RUN_SPRINT below. I say 1.5 as the function blrs if what you input is greater than or equal to 1.5 hence why it's 1.49 max default. - - - - - This is not tested - it's just an assumption. - Doesn't seem to work. I'll try with an int instead. --JT - Read the scripts, im dumpass. - Doesn't work at all, wether with an bool neither an int - if (!VEHICLE::IS_TAXI_LIGHT_ON(l_115)) { - VEHICLE::SET_TAXI_LIGHTS(l_115, 1); - } - - - - - Sets the drop shadow for the current text style. - - - - - **This native does absolutely nothing, just a nullsub** - - - - - fonts that mess up your text where made for number values/misc stuff - - - - - Types - - 0: Center-Justify - 1: Left-Justify - 2: Right-Justify - Right-Justify requires SET_TEXT_WRAP, otherwise it will draw to the far right of the screen - - - - - from script am_mp_yacht.c int? - ui::set_text_leading(2); - - - - - **This native does absolutely nothing, just a nullsub** - - - - - Size range : 0f to 1.0f - - - - - It sets the text in a specified box and wraps the text if it exceeds the boundries. Both values are for X axis. Useful when positioning text set to center or aligned to the right. - start - left boundry on screen position (0.0 - 1.0) - end - right boundry on screen position (0.0 - 1.0) - - - - - Loads the specified timecycle modifier. Modifiers are defined separately in another file (e.g. "timecycle_mods_1.xml") - Parameters: - modifierName - The modifier to load (e.g. "V_FIB_IT3", "scanline_cam", etc.) - For a full list, see here: pastebin.com/kVPwMemE - - - - - Hash collision. Please change back to _0x_ - - - - - hash collision? - - - - - Maximum value is 1. - At a value of 0 the game will still run at a minimum time scale. - Slow Motion 1: 0.6 - Slow Motion 2: 0.4 - Slow Motion 3: 0.2 - - - - - For a full list, see here: pastebin.com/kVPwMemE - - - - - Might be more appropriate in AUDIO? - Rockstar made it like this. - Probably changes tvs from being a 3d audio to being "global" audio - - - - - Hash collision! Please change back to _0xEF4CED81CEBEDC6D - - - - - From the scripts, p0: - "ArmWrestlingIntensity", - "INOUT", - "Monkey_Stream", - "ZoomLevel" - - - - - Makes the vehicle accept no passengers. - - - - - This is an alias of SET_ENTITY_AS_NO_LONGER_NEEDED. - - - - - Please change to void. - - - - - Disables the vehicle from being repaired when a vehicle extra is enabled. - - - - - p2 often set to 1000.0 in the decompiled scripts. - - - - - SET_VEHICLE_BOOST_ACTIVE(vehicle, 1, 0); - SET_VEHICLE_BOOST_ACTIVE(vehicle, 0, 0); - Will give a boost-soundeffect. - - - - - On accelerating, spins the driven wheels with the others braked, so you don't go anywhere. - - - - - This has not yet been tested - it's just an assumption of what the types could be. - - - - - Previously named GET_VEHICLE_DEFORMATION_GET_TREE (hash collision) - from Decrypted Scripts I found - VEHICLE::SET_VEHICLE_CEILING_HEIGHT(l_BD9[2 -- [[2]] ], 420.0); - - - - - colorPrimary & colorSecondary are the paint index for the vehicle. - For a list of valid paint indexes, view: pastebin.com/pwHci0xK - ------------------------------------------------------------------------- - Use this to get the number of color indices: pastebin.com/RQEeqTSM - Note: minimum color index is 0, maximum color index is (numColorIndices - 1) - - - - - Sets the selected vehicle's colors to their default value (specific variant specified using the colorCombination parameter). - - Range of possible values for colorCombination is currently unknown, I couldn't find where these values are stored either (Disquse's guess was vehicles.meta but I haven't seen it in there.) - - - - - p1, p2, p3 are RGB values for color (255,0,0 for Red, ect) - - - - - p1, p2, p3 are RGB values for color (255,0,0 for Red, ect) - - - - - Apply damage to vehicle at a location. Location is relative to vehicle model (not world). - Radius of effect damage applied in a sphere at impact location - - - - - This fixes the deformation of a vehicle but the vehicle health doesn't improve - - - - - • Usage - → Use this native inside a looped function. - → Values: - → 0.0 = no vehicles on streets - → 1.0 = normal vehicles on streets - - - - - You can't use values greater than 15.0 - You can see why here: pastebin.com/Wbn34fGD - Also, R* does (float)(rand() % 15) to get a random dirt level when generating a vehicle. - - - - - 1 - 2 - CARLOCK_LOCKED (locked) - 3 - 4 - CARLOCK_LOCKED_PLAYER_INSIDE (can get in, can't leave) - (maybe, these are leftovers from GTA:VC) - 5 - 6 - 7 - (source: GTA VC miss2 leak, matching constants for 0/2/4, testing) - They use 10 in am_mp_property_int, don't know what it does atm. - - - - - After some analysis, I've decided that these are what the parameters are. - We can see this being used in R* scripts such as "am_mp_property_int.ysc.c4": - l_11A1 = PED::GET_VEHICLE_PED_IS_IN(PLAYER::PLAYER_PED_ID(), 1); - ... - VEHICLE::SET_VEHICLE_DOORS_LOCKED_FOR_ALL_PLAYERS(l_11A1, 1); - - - - - Closes all doors of a vehicle: - - - - - doorIndex: - 0 = Front Right Door - 1 = Front Left Door - 2 = Back Right Door - 3 = Back Left Door - 4 = Hood - 5 = Trunk - Changed last paramater from CreateDoorObject To NoDoorOnTheFloor because when on false, the door object is created,and not created when on true...the former parameter name was counter intuitive...(by Calderon) - - - - - doorIndex: - 0 = Front Left Door (driver door) - 1 = Front Right Door - 2 = Back Left Door - 3 = Back Right Door - 4 = Hood - 5 = Trunk - 6 = Trunk2 - p2: - mostly use 0 and 1, very rare using 3 and 5 - p3: - It seems it is an angle - Example in VB: - Public Shared Sub Set_Vehicle_Door_Angle(Vehicle As Vehicle, Door As VehicleDoor, Angle As Single) - Native.Function.Call(Hash.SET_VEHICLE_DOOR_CONTROL, Vehicle.Handle, Door, 1, Angle) - End Sub - I'm Not MentaL - sfink: p2 is speed, 5 is fast, 1 is slow 3 is medium - - - - - When lock is false other entities can overwrite it. - - - - - doorIndex: - 0 = Front Left Door - 1 = Front Right Door - 2 = Back Left Door - 3 = Back Right Door - 4 = Hood - 5 = Trunk - 6 = Back - 7 = Back2 - - - - - doorIndex: - 0 = Front Left Door - 1 = Front Right Door - 2 = Back Left Door - 3 = Back Right Door - 4 = Hood - 5 = Trunk - 6 = Trunk2 - - - - - Money pickups are created around cars when they explodes. Only works when the vehicle model is a car. A single pickup is between 1 and 18 dollars in size. All car models seems to give the same amount of money. - youtu.be/3arlUxzHl5Y - i.imgur.com/WrNpYFs.jpg - From the scripts: - VEHICLE::_068F64F2470F9656(l_36, 0); - Found a "correct" name for this :P - _dead_vehicle_pickups_dies_when_set_exploded_destroy_it_drops_on_money - SET_VEHICLE_D* or SET_VEHICLE_E* - - - - - 1000 is max health - Begins leaking gas at around 650 health - -999.90002441406 appears to be minimum health, although nothing special occurs <- false statement - ------------------------- - Minimum: -4000 - Maximum: 1000 - -4000: Engine is destroyed - 0 and below: Engine catches fire and health rapidly declines - 300: Engine is smoking and losing functionality - 1000: Engine is perfect - - - - - Starts or stops the engine on the specified vehicle. - vehicle: The vehicle to start or stop the engine on. - value: true to turn the vehicle on; false to turn it off. - instantly: if true, the vehicle will be set to the state immediately; otherwise, the current driver will physically turn on or off the engine. - -------------------------------------- - from what I've tested when I do this to a helicopter the propellers turn off after the engine has started. so is there any way to keep the heli propellers on? - -------------------------------------- - And what's with BOOL otherwise, what does it do??? - - - - - formerly known as _SET_VEHICLE_PAINT_FADE - The parameter fade is a value from 0-1, where 0 is fresh paint. - ------------------------------------------------------------------------------------ - The actual value isn't stored as a float but as an unsigned char (BYTE). More info here: pastebin.com/r0h6EM5s - -------------- - Separate Person: I didn't want to be rude and remove it, but whom ever posted that pastebin above please remove it as the paste says it has been removed. - - - - - Seems according to TU27 X360 Scripts, this has 3 arguments as well. - SET_VEHICLE_EXCLUSIVE_DRIVER(vehicle, 0, 0); in freemode.c - In case 5 of a switch case, is the only time it shows Arg2 being PLAYER_PED_ID(), otherwise it's 0. Arg3 always seems to be 0. - - - - - Sets a vehicle to be strongly resistant to explosions. p0 is the vehicle; set p1 to false to toggle the effect on/off. - - - - - Note: only some vehicle have extras - extra ids are from 1 - 9 depending on the vehicle - ------------------------------------------------- - ^ not sure if outdated or simply wrong. Max extra ID for b944 is 14 - ------------------------------------------------- - p2 is not a on/off toggle. mostly 0 means on and 1 means off. - not sure if it really should be a BOOL. - ------------------------------------------------- - Confirmed p2 does not work as a bool. Changed to int. [0=on, 1=off] - - - - - They use the same color indexs as SET_VEHICLE_COLOURS. - - - - - SCALE: Setting the speed to 30 would result in a speed of roughly 60mph, according to speedometer. - Speed is in meters per second - You can convert meters/s to mph here: - http://www.calculateme.com/Speed/MetersperSecond/ToMilesperHour.htm - - - - - Seems to be related to the metal parts, not tyres (like i was expecting lol) - Must be called every tick. - - - - - It switch to highbeam when p1 is set to true. - - - - - Sets a handling override for a specific vehicle. Certain handling flags can only be set globally using `SET_HANDLING_FIELD`, this might require some experimentation. - Example: `SetVehicleHandlingField(vehicle, 'CHandlingData', 'fSteeringLock', 360.0)` - - - - - Sets a handling override for a specific vehicle. Certain handling flags can only be set globally using `SET_HANDLING_FLOAT`, this might require some experimentation. - Example: `SetVehicleHandlingFloat(vehicle, 'CHandlingData', 'fSteeringLock', 360.0)` - - - - - Sets a handling override for a specific vehicle. Certain handling flags can only be set globally using `SET_HANDLING_INT`, this might require some experimentation. - - - - - Sets a handling override for a specific vehicle. Certain handling flags can only be set globally using `SET_HANDLING_VECTOR`, this might require some experimentation. - - - - - if true, axles won't bend. - - - - - Sets the turn signal enabled for a vehicle. - Set turnSignal to 1 for left light, 0 for right light. - - - - - Setting this to false, makes the specified vehicle to where if you press Y your character doesn't even attempt the animation to enter the vehicle. Hence it's not considered aka ignored. - - - - - Sets the wanted state of this vehicle. - - - - - set's if the vehicle has lights or not. - not an on off toggle. - p1 = 0 ;vehicle normal lights, off then lowbeams, then highbeams - p1 = 1 ;vehicle doesn't have lights, always off - p1 = 2 ;vehicle has always on lights - p1 = 3 ;or even larger like 4,5,... normal lights like =1 - note1: when using =2 on day it's lowbeam,highbeam - but at night it's lowbeam,lowbeam,highbeam - note2: when using =0 it's affected by day or night for highbeams don't exist in daytime. - - - - - multiplier = brightness of head lights. - this value isn't capped afaik. - multiplier = 0.0 no lights - multiplier = 1.0 default game value - - - - - Note: Only seems to work on Emergency Vehicles - - - - - In b944, there are 50 (0 - 49) mod types. - Sets the vehicle mod. - The vehicle must have a mod kit first. - Any out of range ModIndex is stock. - #Mod Type - Spoilers - Front Bumper - Rear Bumper - Side Skirt - Exhaust - Frame - Grille - Hood - Fender - Right Fender - Roof - Engine - Brakes - Transmission - Horns - 14 (modIndex from 0 to 51) - Suspension - Armor - Front Wheels - Back Wheels - 24 //only for motocycles - Plate holders - Trim Design - Ornaments - Dial Design - Steering Wheel - Shifter Leavers - Plaques - Hydraulics - Livery - ENUMS: pastebin.com/QzEAn02v - - - - - seems to make the vehicle stop spawning naturally in traffic. Here's an essential example: - VEHICLE::SET_VEHICLE_MODEL_IS_SUPPRESSED(GAMEPLAY::GET_HASH_KEY("taco"), true); - god I hate taco vans - Confirmed to work? Needs to be looped? Can not get it to work. - - - - - paintType: - 0: Normal - 1: Metallic - 2: Pearl - 3: Matte - 4: Metal - 5: Chrome - color: number of the color. - p3 seems to always be 0. - - - - - Changes the secondary paint type and color - paintType: - 0: Normal - 1: Metallic - 2: Pearl - 3: Matte - 4: Metal - 5: Chrome - color: number of the color - - - - - Set modKit to 0 if you plan to call SET_VEHICLE_MOD. That's what the game does. Most body modifications through SET_VEHICLE_MOD will not take effect until this is set to 0. - --------- - Setting the modKit to 0 also seems to load some livery related vehicle information. For example, using GET_LIVERY_NAME() will return NULL if you haven't set the modKit to 0 in advance. As soon as you set it to 0, GET_LIVERY_NAME() will work properly. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - Sets a vehicle's license plate text. 8 chars maximum. - Example: - Ped playerPed = PLAYER::PLAYER_PED_ID(); - Vehicle veh = PED::GET_VEHICLE_PED_IS_USING(playerPed); - char *plateText = "KING"; - VEHICLE::SET_VEHICLE_NUMBER_PLATE_TEXT(veh, plateText); - - - - - Plates: - Blue/White - Yellow/black - Yellow/Blue - Blue/White2 - Blue/White3 - Yankton - - - - - Sets a vehicle on the ground on all wheels. Returns whether or not the operation was successful. - sfink: This has an additional param(Vehicle vehicle, float p1) which is always set to 5.0f in the b944 scripts. - - - - - Tested on the player's current vehicle. Unless you kill the driver, the vehicle doesn't loose control, however, if enabled, explodeOnImpact is still active. The moment you crash, boom. - - - - - 1000 is max health - Begins leaking gas at around 650 health - - - - - can't seem to enable radio on cop cars etc - - - - - Reduces grip significantly so it's hard to go anywhere. - - - - - Only works during nighttime. - And only if there is a driver in heli. - - - - - Commands the driver of an armed vehicle (p0) to shoot its weapon at a target (p1). p3, p4 and p5 are the coordinates of the target. Example: - WEAPON::SET_CURRENT_PED_VEHICLE_WEAPON(pilot,GAMEPLAY::GET_HASH_KEY("VEHICLE_WEAPON_PLANE_ROCKET"));VEHICLE::SET_VEHICLE_SHOOT_AT_TARGET(pilot, target, targPos.x, targPos.y, targPos.z); - - - - - Activate siren on vehicle (Only works if the vehicle has a siren). - - - - - Locks the vehicle's steering to the desired angle, explained below. - Requires to be called onTick. Steering is unlocked the moment the function stops being called on the vehicle. - Steer bias: - -1.0 = full right - 0.0 = centered steering - 1.0 = full left - - - - - If set to true, vehicle will not take crash damage, but is still susceptible to damage from bullets and explosives - - - - - VEHICLE::SET_VEHICLE_TIMED_EXPLOSION(v_3, PLAYER::GET_PLAYER_PED(v_5), 1); - - - - - Allows you to toggle bulletproof tires. - - - - - "To burst tyres VEHICLE::SET_VEHICLE_TYRE_BURST(vehicle, 0, true, 1000.0) - to burst all tyres type it 8 times where p1 = 0 to 7. - p3 seems to be how much damage it has taken. 0 doesn't deflate them, 1000 completely deflates them. - '0 = wheel_lf / bike, plane or jet front - '1 = wheel_rf - '2 = wheel_lm / in 6 wheels trailer, plane or jet is first one on left - '3 = wheel_rm / in 6 wheels trailer, plane or jet is first one on right - '4 = wheel_lr / bike rear / in 6 wheels trailer, plane or jet is last one on left - '5 = wheel_rr / in 6 wheels trailer, plane or jet is last one on right - '45 = 6 wheels trailer mid wheel left - '47 = 6 wheels trailer mid wheel right - - - - - tyreIndex = 0 to 4 on normal vehicles - '0 = wheel_lf / bike, plane or jet front - '1 = wheel_rf - '2 = wheel_lm / in 6 wheels trailer, plane or jet is first one on left - '3 = wheel_rm / in 6 wheels trailer, plane or jet is first one on right - '4 = wheel_lr / bike rear / in 6 wheels trailer, plane or jet is last one on left - '5 = wheel_rr / in 6 wheels trailer, plane or jet is last one on right - '45 = 6 wheels trailer mid wheel left - '47 = 6 wheels trailer mid wheel right - - - - - Sets the tire smoke's color of this vehicle. - vehicle: The vehicle that is the target of this method. - r: The red level in the RGB color code. - g: The green level in the RGB color code. - b: The blue level in the RGB color code. - Note: - setting r,g,b to 0 will give the car independance day tyre smoke - - - - - Player won't be able to drive the car or enter it, unless you task him to get into any other seat than the driver one. - - - - - Example script: <https://pastebin.com/J6XGbkCW> - - List of known states: - - ``` - 1: Not wheeling. - 65: Vehicle is ready to do wheelie (burnouting). - 129: Vehicle is doing wheelie. - ``` - - - - - 0: Sport - 1: Muscle - 2: Lowrider - 3: SUV - 4: Offroad - 5: Tuner - 6: Bike Wheels - 7: High End - - - - - Adjusts the offset of the specified wheel relative to the wheel's axle center. - Needs to be called every frame in order to function properly, as GTA will reset the offset otherwise. - This function can be especially useful to set the track width of a vehicle, for example: - - ``` - function SetVehicleFrontTrackWidth(vehicle, width) - SetVehicleWheelXOffset(vehicle, 0, -width/2) - SetVehicleWheelXOffset(vehicle, 1, width/2) - end - ``` - - - - - enum WindowTints - { - WINDOWTINT_NONE, - WINDOWTINT_PURE_BLACK, - WINDOWTINT_DARKSMOKE, - WINDOWTINT_LIGHTSMOKE, - WINDOWTINT_STOCK, - WINDOWTINT_LIMO, - WINDOWTINT_GREEN - }; - - - - - For a full list, see here: pastebin.com/Kj9t38KF - - - - - Max value is 1.0 - - - - - **instructionalKey enum list**: - - ``` - enum INSTRUCTIONAL_BUTTON_TYPES - { - NONE = 0, - SELECT = 1, - OK = 2, - YES = 4, - BACK = 8, - BACK_SELECT = 9, - BACK_OK = 10, - BACK_YES = 12, - CANCEL = 16, - CANCEL_SELECT = 17, - CANCEL_OK = 18, - CANCEL_YES = 20, - NO = 32, - NO_SELECT = 33, - NO_OK = 34, - YES_NO = 36, - RETRY = 64, - RETRY_SELECT = 65, - RETRY_OK = 66, - RETRY_YES = 68, - RETRY_BACK = 72, - RETRY_BACK_SELECT = 73, - RETRY_BACK_OK = 74, - RETRY_BACK_YES = 76, - RETRY_CANCEL = 80, - RETRY_CANCEL_SELECT = 81, - RETRY_CANCEL_OK = 82, - RETRY_CANCEL_YES = 84, - SKIP = 256, - SKIP_SELECT = 257, - SKIP_OK = 258, - SKIP_YES = 260, - SKIP_BACK = 264, - SKIP_BACK_SELECT = 265, - SKIP_BACK_OK = 266, - SKIP_BACK_YES = 268, - SKIP_CANCEL = 272, - SKIP_CANCEL_SELECT = 273, - SKIP_CANCEL_OK = 274, - SKIP_CANCEL_YES = 276, - CONTINUE = 16384, - BACK_CONTINUE = 16392, - CANCEL_CONTINUE = 16400, - LOADING_SPINNER = 134217728, - SELECT_LOADING_SPINNER = 134217729, - OK_LOADING_SPINNER = 134217730, - YES_LOADING_SPINNER = 134217732, - BACK_LOADING_SPINNER = 134217736, - BACK_SELECT_LOADING_SPINNER = 134217737, - BACK_OK_LOADING_SPINNER = 134217738, - BACK_YES_LOADING_SPINNER = 134217740, - CANCEL_LOADING_SPINNER = 134217744, - CANCEL_SELECT_LOADING_SPINNER = 134217745, - CANCEL_OK_LOADING_SPINNER = 134217746, - CANCEL_YES_LOADING_SPINNER = 134217748 - } - ``` - - Note: this list is definitely NOT complete, but these are the ones I've been able to find before giving up because it's such a boring thing to look for 'good' combinations. - - **Result of the example code:** - <https://i.imgur.com/imwoimm.png> - - - - - You can only use text entries. No custom text. - C# Example : - Function.Call(Hash._SET_WARNING_MESSAGE_2, "HUD_QUIT", "HUD_CGIGNORE", 2, "HUD_CGINVITE", 0, -1, 0, 0, 1); - you can recreate this easily with scaleforms - --------------- - Fixed native name, from before nativedb restoration. - - - - - This native removes the current waypoint from the map. - Example: - C#: - Function.Call(Hash.SET_WAYPOINT_OFF); - C++: - UI::SET_WAYPOINT_OFF(); - - - - - Changes the selected ped aiming animation style. - Note : You must use GET_HASH_KEY! - Strings to use with GET_HASH_KEY : - "Ballistic", - "Default", - "Fat", - "Female", - "FirstPerson", - "FirstPersonAiming", - "FirstPersonFranklin", - "FirstPersonFranklinAiming", - "FirstPersonFranklinRNG", - "FirstPersonFranklinScope", - "FirstPersonMPFemale", - "FirstPersonMichael", - "FirstPersonMichaelAiming", - "FirstPersonMichaelRNG", - "FirstPersonMichaelScope", - "FirstPersonRNG", - "FirstPersonScope", - "FirstPersonTrevor", - "FirstPersonTrevorAiming", - "FirstPersonTrevorRNG", - "FirstPersonTrevorScope", - "Franklin", - "Gang", - "Gang1H", - "GangFemale", - "Hillbilly", - "MP_F_Freemode", - "Michael", - "SuperFat", - "Trevor" - - - - - Hash collision, real name is: IS_FLASH_LIGHT_ON - - - - - The following weatherTypes are used in the scripts: - "CLEAR" - "EXTRASUNNY" - "CLOUDS" - "OVERCAST" - "RAIN" - "CLEARING" - "THUNDER" - "SMOG" - "FOGGY" - "XMAS" - "SNOWLIGHT" - "BLIZZARD" - - - - - The following weatherTypes are used in the scripts: - "CLEAR" - "EXTRASUNNY" - "CLOUDS" - "OVERCAST" - "RAIN" - "CLEARING" - "THUNDER" - "SMOG" - "FOGGY" - "XMAS" - "SNOWLIGHT" - "BLIZZARD" - - - - - The following weatherTypes are used in the scripts: - "CLEAR" - "EXTRASUNNY" - "CLOUDS" - "OVERCAST" - "RAIN" - "CLEARING" - "THUNDER" - "SMOG" - "FOGGY" - "XMAS" - "SNOWLIGHT" - "BLIZZARD" - - - - - Sets the the raw wind speed value. - - - - - This is NOT a heading. It's a FLOAT value from 0.0-7.0. Look at this image: - i.imgur.com/FwVpGS6.png - ---------------------------- - This appears to be a heading, in radians (0-2*pi) -PNWParksFan - - - - - Using this native will clamp the wind speed value to a range of 0.0- 12.0. Using SET_WIND sets the same value but without the restriction. - - - - - Possible shake types (updated b617d): - DEATH_FAIL_IN_EFFECT_SHAKE - DRUNK_SHAKE - FAMILY5_DRUG_TRIP_SHAKE - HAND_SHAKE - JOLT_SHAKE - LARGE_EXPLOSION_SHAKE - MEDIUM_EXPLOSION_SHAKE - SMALL_EXPLOSION_SHAKE - ROAD_VIBRATION_SHAKE - SKY_DIVING_SHAKE - VIBRATE_SHAKE - - - - - p0 argument found in the b617d scripts: "DRUNK_SHAKE" - - - - - Possible shake types (updated b617d): - DEATH_FAIL_IN_EFFECT_SHAKE - DRUNK_SHAKE - FAMILY5_DRUG_TRIP_SHAKE - HAND_SHAKE - JOLT_SHAKE - LARGE_EXPLOSION_SHAKE - MEDIUM_EXPLOSION_SHAKE - SMALL_EXPLOSION_SHAKE - ROAD_VIBRATION_SHAKE - SKY_DIVING_SHAKE - VIBRATE_SHAKE - - - - - this is what p7 does in disassembly - __int8 var = 32; - if (isInvisible) - { - var = 16; - } - int v110 = var | 2 * p7; - - - - - Returns true if the game is using the metric measurement system, false if imperial is used. - This is what r\* uses for the different label types (either ones with miles in them or with km, as well as some other measurement related labels). - - - - - Enables or disables the blue half circle ![](https://i.imgur.com/iZes9Ec.png) around the specified blip on the left side of the blip. This is used to indicate that the player is in your crew in GTA:O. Color is changeable by using [`SET_BLIP_SECONDARY_COLOUR`](#_0x14892474891E09EB). - - To toggle the right side of the circle use: [`SHOW_FRIEND_INDICATOR_ON_BLIP`](#_0x23C3EB807312F01A). - - Example code result: - ![](https://i.imgur.com/iZ9tNWl.png) - - - - - Highlights a blip by a half cyan circle on the right side of the blip. ![](https://i.imgur.com/FrV9M4e.png) Indicating that that player is a friend (in GTA:O). This color can not be changed. - - To toggle the left side (crew member indicator) of the half circle around the blip, use: [`SHOW_CREW_INDICATOR_ON_BLIP`](#_0xDCFB5D4DB8BF367E). - - - - - Adds the GTA: Online player heading indicator to a blip. - - - - - Toggles a cyan outline around the blip. - - Color can be changed with `SET_BLIP_SECONDARY_COLOUR`. Enabling this circle will override the "crew" and "friend" half-circles (see [`SHOW_CREW_INDICATOR_ON_BLIP`](#_0xDCFB5D4DB8BF367E) and [`SHOW_FRIEND_INDICATOR_ON_BLIP`](#_0x23C3EB807312F01A)). - - ~~Oddly enough, this native is called `_SET_BLIP_FRIENDLY`, but the color of the circle is only changable for the 'crew' half-circle (using `SET_BLIP_SECONDARY_COLOUR`), the 'friendly' side can NOT be changed and will always stay cyan/blue. This makes it seem more likely that this should be called `_SET_BLIP_CREW_CIRCLE` or something similar?~~ - - Real name is `SHOW_OUTLINE_INDICATOR_ON_BLIP`, discovered by Blattersturm. - - - - - Adds a green checkmark on top of a blip. - - - - - Starts a new singleplayer game (at the prologue). - - - - - Shuts down the `loadingScreen` NUI frame, similarly to `SHUTDOWN_LOADING_SCREEN`. - - - - - This is to make the player walk without accepting input from INPUT. - gaitType is in increments of 100s. 2000, 500, 300, 200, etc. - p4 is always 1 and p5 is always 0. - C# Example : - Function.Call(Hash.SIMULATE_PLAYER_INPUT_GAIT, Game.Player, 1.0f, 100, 1.0f, 1, 0); //Player will go forward for 100ms - - - - - Returns true if the object has finished moving. - If false, moves the object towards the specified X, Y and Z coordinates with the specified X, Y and Z speed. - See also: gtag.gtagaming.com/opcode-database/opcode/034E/ - - - - - p1 appears as 5, 10, 15, 25, or 30. p2 is always true. - - - - - p1 appears to always be 1 (only comes up twice) - - - - - 2 matches. p1 was always true. - - - - - Only 1 match. Both p1 & p2 were true. - - - - - normalizedValue is from 0.0 - 1.0 - p2 is always 1 - - - - - Every occurrence of p1 & p2 were both true. - - - - - p1 was always true. - - - - - Also known as _RECHARGE_SPECIAL_ABILITY - - - - - Hash collision!!! PLAY_STREAM_FROM_POSITION is the correct name! - - - - - Example: - This will start the alarm at Fort Zancudo. - AUDIO::START_ALARM("PORT_OF_LS_HEIST_FORT_ZANCUDO_ALARMS", 1); - First parameter (char) is the name of the alarm. - Second parameter (bool) is unknown, it does not seem to make a difference if this one is 0 or 1. - ---------- - It DOES make a difference but it has to do with the duration or something I dunno yet - ---------- - Found in the b617d scripts: - AUDIO::START_ALARM("AGENCY_HEIST_FIB_TOWER_ALARMS", 0); - AUDIO::START_ALARM("AGENCY_HEIST_FIB_TOWER_ALARMS_UPPER", 1); - AUDIO::START_ALARM("AGENCY_HEIST_FIB_TOWER_ALARMS_UPPER_B", 0); - AUDIO::START_ALARM("BIG_SCORE_HEIST_VAULT_ALARMS", a_0); - AUDIO::START_ALARM("FBI_01_MORGUE_ALARMS", 1); - AUDIO::START_ALARM("FIB_05_BIOTECH_LAB_ALARMS", 0); - AUDIO::START_ALARM("JEWEL_STORE_HEIST_ALARMS", 0); - AUDIO::START_ALARM("PALETO_BAY_SCORE_ALARM", 1); - AUDIO::START_ALARM("PALETO_BAY_SCORE_CHICKEN_FACTORY_ALARM", 0); - AUDIO::START_ALARM("PORT_OF_LS_HEIST_FORT_ZANCUDO_ALARMS", 1); - AUDIO::START_ALARM("PORT_OF_LS_HEIST_SHIP_ALARMS", 0); - AUDIO::START_ALARM("PRISON_ALARMS", 0); - AUDIO::START_ALARM("PROLOGUE_VAULT_ALARMS", 0); - - - - - Used to prepare a scene where the surrounding sound is muted or a bit changed. This does not play any sound. - List of all usable scene names found in b617d. Sorted alphabetically and identical names removed: pastebin.com/MtM9N9CC - - - - - some kind of flag. Usually 0. - - - - - p3: some kind of flag. Usually 0. - - - - - network fx - - - - - Console Hash: 0xF478EFCF - network fx - - - - - network fx - - - - - network fx - - - - - network fx - - - - - Examples: - g_384A = SYSTEM::START_NEW_SCRIPT("cellphone_flashhand", 1424); - l_10D = SYSTEM::START_NEW_SCRIPT("taxiService", 1828); - SYSTEM::START_NEW_SCRIPT("AM_MP_YACHT", 5000); - SYSTEM::START_NEW_SCRIPT("emergencycall", 512); - SYSTEM::START_NEW_SCRIPT("emergencycall", 512); - SYSTEM::START_NEW_SCRIPT("FM_maintain_cloud_header_data", 1424); - SYSTEM::START_NEW_SCRIPT("FM_Mission_Controller", 31000); - SYSTEM::START_NEW_SCRIPT("tennis_family", 3650); - SYSTEM::START_NEW_SCRIPT("Celebrations", 3650); - Decompiled examples of usage when starting a script: - SCRIPT::REQUEST_SCRIPT(a_0); - if (SCRIPT::HAS_SCRIPT_LOADED(a_0)) { - SYSTEM::START_NEW_SCRIPT(a_0, v_3); - SCRIPT::SET_SCRIPT_AS_NO_LONGER_NEEDED(a_0); - return 1; - } - or: - v_2 = "MrsPhilips2"; - SCRIPT::REQUEST_SCRIPT(v_2); - while (!SCRIPT::HAS_SCRIPT_LOADED(v_2)) { - SCRIPT::REQUEST_SCRIPT(v_2); - SYSTEM::WAIT(0); - } - sub_8792(36); - SYSTEM::START_NEW_SCRIPT(v_2, 17000); - SCRIPT::SET_SCRIPT_AS_NO_LONGER_NEEDED(v_2); - All native script names: pastebin.com/K9adDsu4 and pastebin.com/yLNWicUi - - - - - return : script thread id, 0 if failed - Pass pointer to struct of args in p1, size of struct goes into p2 - - - - - GRAPHICS::START_PARTICLE_FX_LOOPED_AT_COORD("scr_fbi_falling_debris", 93.7743f, -749.4572f, 70.86904f, 0f, 0f, 0f, 0x3F800000, 0, 0, 0, 0) - p11 seems to be always 0 - - - - - list: pastebin.com/N9unUFWY - - - - - GRAPHICS::START_PARTICLE_FX_NON_LOOPED_AT_COORD("scr_paleto_roof_impact", -140.8576f, 6420.789f, 41.1391f, 0f, 0f, 267.3957f, 0x3F800000, 0, 0, 0); - Axis - Invert Axis Flags - list: pastebin.com/N9unUFWY - ------------------------------------------------------------------- - C# - Function.Call<int>(Hash.START_PARTICLE_FX_NON_LOOPED_AT_COORD, = you are calling this function. - char *effectname = This is an in-game effect name, for e.g. "scr_fbi4_trucks_crash" is used to give the effects when truck crashes etc - float x, y, z pos = this one is Simple, you just have to declare, where do you want this effect to take place at, so declare the ordinates - float xrot, yrot, zrot = Again simple? just mention the value in case if you want the effect to rotate. - float scale = is declare the scale of the effect, this may vary as per the effects for e.g 1.0f - bool xaxis, yaxis, zaxis = To bool the axis values. - example: - Function.Call<int>(Hash.START_PARTICLE_FX_NON_LOOPED_AT_COORD, "scr_fbi4_trucks_crash", GTA.Game.Player.Character.Position.X, GTA.Game.Player.Character.Position.Y, GTA.Game.Player.Character.Position.Z + 4f, 0, 0, 0, 5.5f, 0, 0, 0); - - - - - Starts a particle effect on an entity for example your player. - List: pastebin.com/N9unUFWY - Example: - C#: - Function.Call(Hash.REQUEST_NAMED_PTFX_ASSET, "scr_rcbarry2"); Function.Call(Hash._SET_PTFX_ASSET_NEXT_CALL, "scr_rcbarry2"); Function.Call(Hash.START_PARTICLE_FX_NON_LOOPED_ON_ENTITY, "scr_clown_appears", Game.Player.Character, 0.0, 0.0, -0.5, 0.0, 0.0, 0.0, 1.0, false, false, false); - Internally this calls the same function as GRAPHICS::START_PARTICLE_FX_NON_LOOPED_ON_PED_BONE - however it uses -1 for the specified bone index, so it should be possible to start a non looped fx on an entity bone using that native - - - - - GRAPHICS::START_PARTICLE_FX_NON_LOOPED_ON_PED_BONE("scr_sh_bong_smoke", PLAYER::PLAYER_PED_ID(), -0.025f, 0.13f, 0f, 0f, 0f, 0f, 31086, 0x3F800000, 0, 0, 0); - Axis - Invert Axis Flags - list: pastebin.com/N9unUFWY - - - - - // this enum comes directly from R* so don't edit this - enum ePlayerSwitchType - { - SWITCH_TYPE_AUTO, - SWITCH_TYPE_LONG, - SWITCH_TYPE_MEDIUM, - SWITCH_TYPE_SHORT - }; - Use GET_IDEAL_PLAYER_SWITCH_TYPE for the best switch type. Or just auto, because it calls the same function in executable. - ---------------------------------------------------- - Examples from the decompiled scripts: - STREAMING::START_PLAYER_SWITCH(l_832._f3, PLAYER::PLAYER_PED_ID(), 0, 3); - STREAMING::START_PLAYER_SWITCH(l_832._f3, PLAYER::PLAYER_PED_ID(), 2050, 3); - STREAMING::START_PLAYER_SWITCH(PLAYER::PLAYER_PED_ID(), l_832._f3, 1024, 3); - STREAMING::START_PLAYER_SWITCH(g_141F27, PLAYER::PLAYER_PED_ID(), 513, v_14); - Note: DO NOT, use SWITCH_TYPE_LONG with flag 513. It leaves you stuck in the clouds. You'll have to call STOP_PLAYER_SWITCH() to return to your ped. - Flag 8 w/ SWITCH_TYPE_LONG will zoom out 3 steps, then zoom in 2/3 steps and stop on the 3rd and just hang there. - Flag 8 w/ SWITCH_TYPE_MEDIUM will zoom out 1 step, and just hang there. - - - - - Starts a fire: - xyz: Location of fire - maxChildren: The max amount of times a fire can spread to other objects. Must be 25 or less, or the function will do nothing. - isGasFire: Whether or not the fire is powered by gasoline. - - - - - Raycast from point to point, where the ray has a radius. - flags: - vehicles=10 - peds =12 - Iterating through flags yields many ped / vehicle/ object combinations - p9 = 7, but no idea what it does - Entity is an entity to ignore - - - - - Returns a ray (?) going from x1, y1, z1 to x2, y2, z2. - entity = 0 most of the time. - p8 = 7 most of the time. - Result of this function is passed to WORLDPROBE::_GET_RAYCAST_RESULT as a first argument. - - - - - Sounds the horn for the specified vehicle. - vehicle: The vehicle to activate the horn for. - mode: The hash of "NORMAL" or "HELDDOWN". Can be 0. - duration: The duration to sound the horn, in milliseconds. - Note: If a player is in the vehicle, it will only sound briefly. - - - - - Please change to "void"! - --------------------------------- - Example: - for (v_2 = 0; v_2 <= 4; v_2 += 1) { - STATS::STAT_CLEAR_SLOT_FOR_RELOAD(v_2); - } - - - - - p2 - Default value? Seems to be -1 most of the time. - - - - - p2 appears to always be -1 - - - - - p1 is always -1 in the script files - - - - - Needs more research. Seems to return "STAT_UNKNOWN" if no such user id exists. - - - - - p1 always true. - - - - - 'value' is a structure to a structure, 'numFields' is how many fields there are in said structure (usually 7). - The structure looks like this: - int year - int month - int day - int hour - int minute - int second - int millisecond - The decompiled scripts use TIME::GET_POSIX_TIME to fill this structure. - - - - - The following values have been found in the decompiled scripts: - "RC_ABI1" - "RC_ABI2" - "RC_BA1" - "RC_BA2" - "RC_BA3" - "RC_BA3A" - "RC_BA3C" - "RC_BA4" - "RC_DRE1" - "RC_EPS1" - "RC_EPS2" - "RC_EPS3" - "RC_EPS4" - "RC_EPS5" - "RC_EPS6" - "RC_EPS7" - "RC_EPS8" - "RC_EXT1" - "RC_EXT2" - "RC_EXT3" - "RC_EXT4" - "RC_FAN1" - "RC_FAN2" - "RC_FAN3" - "RC_HAO1" - "RC_HUN1" - "RC_HUN2" - "RC_JOS1" - "RC_JOS2" - "RC_JOS3" - "RC_JOS4" - "RC_MAU1" - "RC_MIN1" - "RC_MIN2" - "RC_MIN3" - "RC_MRS1" - "RC_MRS2" - "RC_NI1" - "RC_NI1A" - "RC_NI1B" - "RC_NI1C" - "RC_NI1D" - "RC_NI2" - "RC_NI3" - "RC_OME1" - "RC_OME2" - "RC_PA1" - "RC_PA2" - "RC_PA3" - "RC_PA3A" - "RC_PA3B" - "RC_PA4" - "RC_RAM1" - "RC_RAM2" - "RC_RAM3" - "RC_RAM4" - "RC_RAM5" - "RC_SAS1" - "RC_TON1" - "RC_TON2" - "RC_TON3" - "RC_TON4" - "RC_TON5" - - - - - Add Cash example: - for (int i = 0; i < 3; i++) - { - char statNameFull[32]; - sprintf_s(statNameFull, "SP%d_TOTAL_CASH", i); - Hash hash = GAMEPLAY::GET_HASH_KEY(statNameFull); - int val; - STATS::STAT_GET_INT(hash, &val, -1); - val += 1000000; - STATS::STAT_SET_INT(hash, val, 1); - } - - - - - Hash collision!!! - SET_VEHICLE_IS_* - p1 (toggle) was always 1 (true) except in one case in the b678 scripts. - - - - - Example: - This will stop the alarm at Fort Zancudo. - AUDIO::STOP_ALARM("PORT_OF_LS_HEIST_FORT_ZANCUDO_ALARMS", 1); - First parameter (char) is the name of the alarm. - Second parameter (bool) has to be true (1) to have any effect. - - - - - From re_drunkdriver: - • AI::STOP_ANIM_PLAYBACK(l_5B[0 -- [[1]] ], 0, 0); - Looks like p1 may be a flag, still need to do some research, though. - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - ?? - - - - - Needs to be called every frame. - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - RAGEPluginHook list: docs.ragepluginhook.net/html/62951c37-a440-478c-b389-c471230ddfc5.htm - - - - - This doesn't stop fire nor the fire propagation in a loop... for some reasons. - - - - - p1 is always 0 in the native scripts - - - - - Disables the player's teleportation - - - - - In drunk_controller.c4, sub_309 - if (CAM::_C912AF078AF19212()) { - CAM::_1C9D7949FA533490(0); - } - - - - - p1 sync task id? - - - - - Returns false if it's a null or empty string or if the string is too long. outInteger will be set to -999 in that case. - If all checks have passed successfully, the return value will be set to whatever strtol(string, 0i64, 10); returns. - - - - - Returns tangent value of p0. - - - - - Makes the specified ped achieve the specified heading. - pedHandle: The handle of the ped to assign the task to. - heading: The desired heading. - timeout: The time, in milliseconds, to allow the task to complete. If the task times out, it is cancelled, and the ped will stay at the heading it managed to reach in the time. - - - - - - - - - - duration: the amount of time in milliseconds to do the task. -1 will keep the task going until either another task is applied, or CLEAR_ALL_TASKS() is called with the ped - - - - - Example from "me_amanda1.ysc.c4": - AI::TASK_ARREST_PED(l_19F -- [[ This is a Ped ]] , PLAYER::PLAYER_PED_ID()); - Example from "armenian1.ysc.c4": - if (!PED::IS_PED_INJURED(l_B18[0 -- [[1]] ])) { - AI::TASK_ARREST_PED(l_B18[0 -- [[1]] ], PLAYER::PLAYER_PED_ID()); - } - I would love to have time to experiment to see if a player Ped can arrest another Ped. Might make for a good cop mod. - Looks like only the player can be arrested this way. Peds react and try to arrest you if you task them, but the player charater doesn't do anything if tasked to arrest another ped. - - - - - You need to call PED::SET_BLOCKING_OF_NON_TEMPORARY_EVENTS after TASK_BOAT_MISSION in order for the task to execute. - Working example - float vehicleMaxSpeed = VEHICLE::_GET_VEHICLE_MAX_SPEED(ENTITY::GET_ENTITY_MODEL(pedVehicle)); - AI::TASK_BOAT_MISSION(pedDriver, pedVehicle, 0, 0, waypointCoord.x, waypointCoord.y, waypointCoord.z, 4, vehicleMaxSpeed, 786469, -1.0, 7); - PED::SET_BLOCKING_OF_NON_TEMPORARY_EVENTS(pedDriver, 1); - P8 appears to be driving style flag - see gtaforums.com/topic/822314-guide-driving-styles/ for documentation - - - - - p2 tend to be 16, 17 or 1 - p3 to p7 tend to be 0.0 - - - - - Not clear what it actually does, but here's how script uses it - - if (OBJECT::HAS_PICKUP_BEEN_COLLECTED(...) - { - if(ENTITY::DOES_ENTITY_EXIST(PLAYER::PLAYER_PED_ID())) - { - AI::TASK_CLEAR_LOOK_AT(PLAYER::PLAYER_PED_ID()); - } - ... - } - Another one where it doesn't "look" at current player - - AI::TASK_PLAY_ANIM(l_3ED, "missheist_agency2aig_2", "look_at_phone_a", 1000.0, -2.0, -1, 48, v_2, 0, 0, 0); - PED::_2208438012482A1A(l_3ED, 0, 0); - AI::TASK_CLEAR_LOOK_AT(l_3ED); - - - - - Climbs or vaults the nearest thing. - - - - - Despite its name, it only attacks ONE hated target. The one closest hated target. - p2 seems to be always 0 - - - - - Despite its name, it only attacks ONE hated target. The one closest to the specified position. - - - - - Makes the specified ped attack the target ped. - p2 should be 0 - p3 should be 16 - - - - - Example: - AI::TASK_DRIVE_BY(l_467[1 -- [[22]] ], PLAYER::PLAYER_PED_ID(), 0, 0.0, 0.0, 2.0, 300.0, 100, 0, ${firing_pattern_burst_fire_driveby}); - Needs working example. Doesn't seem to do anything. - I marked p2 as targetVehicle as all these shooting related tasks seem to have that in common. - I marked p6 as distanceToShoot as if you think of GTA's Logic with the native SET_VEHICLE_SHOOT natives, it won't shoot till it gets within a certain distance of the target. - I marked p7 as pedAccuracy as it seems it's mostly 100 (Completely Accurate), 75, 90, etc. Although this could be the ammo count within the gun, but I highly doubt it. I will change this comment once I find out if it's ammo count or not. - - - - - speed 1.0 = walk, 2.0 = run - p5 1 = normal, 3 = teleport to vehicle, 16 = teleport directly into vehicle - p6 is always 0 - Usage of seat - -1 = driver - 0 = passenger - 1 = left back seat - 2 = right back seat - 3 = outside left - 4 = outside right - - - - - MulleKD19: Adds a new point to the current point route. Call TASK_FLUSH_ROUTE before the first call to this. Call TASK_FOLLOW_POINT_ROUTE to make the Ped go the route. - A maximum of 8 points can be added. - - - - - MulleKD19: Clears the current point route. Call this before TASK_EXTEND_ROUTE and TASK_FOLLOW_POINT_ROUTE. - - - - - If no timeout, set timeout to -1. - - - - - MulleKD19: Makes the ped go on the created point route. - ped: The ped to give the task to. - speed: The speed to move at in m/s. - int: Unknown. Can be 0, 1, 2 or 3. - Example: - TASK_FLUSH_ROUTE(); - TASK_EXTEND_ROUTE(0f, 0f, 70f); - TASK_EXTEND_ROUTE(10f, 0f, 70f); - TASK_EXTEND_ROUTE(10f, 10f, 70f); - TASK_FOLLOW_POINT_ROUTE(GET_PLAYER_PED(), 1f, 0); - - - - - p6 always -1 - p7 always 10.0 - p8 always 1 - - - - - p2 always false - [30/03/2017] ins1de : - See dev-c.com/nativedb/func/info/f28965d04f570dca - - - - - eg - AI::TASK_GOTO_ENTITY_AIMING(v_2, PLAYER::PLAYER_PED_ID(), 5.0, 25.0); - ped = Ped you want to perform this task. - target = the Entity they should aim at. - distanceToStopAt = distance from the target, where the ped should stop to aim. - StartAimingDist = distance where the ped should start to aim. - - - - - The ped will walk or run towards goToLocation, aiming towards goToLocation or focusLocation (depending on the aimingFlag) and shooting if shootAtEnemies = true to any enemy in his path. - If the ped is closer than noRoadsDistance, the ped will ignore pathing/navmesh and go towards goToLocation directly. This could cause the ped to get stuck behind tall walls if the goToLocation is on the other side. To avoid this, use 0.0f and the ped will always use pathing/navmesh to reach his destination. - If the speed is set to 0.0f, the ped will just stand there while aiming, if set to 1.0f he will walk while aiming, 2.0f will run while aiming. - The ped will stop aiming when he is closer than distanceToStopAt to goToLocation. - I still can't figure out what unkTrue is used for. I don't notice any difference if I set it to false but in the decompiled scripts is always true. - I think that unkFlag, like the driving styles, could be a flag that "work as a list of 32 bits converted to a decimal integer. Each bit acts as a flag, and enables or disables a function". What leads me to this conclusion is the fact that in the decompiled scripts, unkFlag takes values like: 0, 1, 5 (101 in binary) and 4097 (4096 + 1 or 1000000000001 in binary). For now, I don't know what behavior enable or disable this possible flag so I leave it at 0. - Note: After some testing, using unkFlag = 16 (0x10) enables the use of sidewalks while moving towards goToLocation. - The aimingFlag takes 2 values: 0 to aim at the focusLocation, 1 to aim at where the ped is heading (goToLocation). - Example: - enum AimFlag - { - AimAtFocusLocation, - AimAtGoToLocation - }; - Vector3 goToLocation1 = { 996.2867f, 0, -2143.044f, 0, 28.4763f, 0 }; // remember the padding. - Vector3 goToLocation2 = { 990.2867f, 0, -2140.044f, 0, 28.4763f, 0 }; // remember the padding. - Vector3 focusLocation = { 994.3478f, 0, -2136.118f, 0, 29.2463f, 0 }; // the coord z should be a little higher, around +1.0f to avoid aiming at the ground - // 1st example - AI::TASK_GO_TO_COORD_AND_AIM_AT_HATED_ENTITIES_NEAR_COORD(pedHandle, goToLocation1.x, goToLocation1.y, goToLocation1.z, focusLocation.x, focusLocation.y, focusLocation.z, 2.0f -- [[run]] , true -- [[shoot]] , 3.0f -- [[stop at]] , 0.0f -- [[noRoadsDistance]] , true -- [[always true]] , 0 -- [[possible flag]] , AimFlag::AimAtGoToLocation, -957453492 -- [[FullAuto pattern]] ); - // 2nd example - AI::TASK_GO_TO_COORD_AND_AIM_AT_HATED_ENTITIES_NEAR_COORD(pedHandle, goToLocation2.x, goToLocation2.y, goToLocation2.z, focusLocation.x, focusLocation.y, focusLocation.z, 1.0f -- [[walk]] , false -- [[don't shoot]] , 3.0f -- [[stop at]] , 0.0f -- [[noRoadsDistance]] , true -- [[always true]] , 0 -- [[possible flag]] , AimFlag::AimAtFocusLocation, -957453492 -- [[FullAuto pattern]] ); - 1st example: The ped (pedhandle) will run towards goToLocation1. While running and aiming towards goToLocation1, the ped will shoot on sight to any enemy in his path, using "FullAuto" firing pattern. The ped will stop once he is closer than distanceToStopAt to goToLocation1. - 2nd example: The ped will walk towards goToLocation2. This time, while walking towards goToLocation2 and aiming at focusLocation, the ped will point his weapon on sight to any enemy in his path without shooting. The ped will stop once he is closer than distanceToStopAt to goToLocation2. - - - - - example from fm_mission_controller - AI::TASK_GO_TO_COORD_ANY_MEANS(l_649, sub_f7e86(-1, 0), 1.0, 0, 0, 786603, 0xbf800000); - - - - - movement_speed: mostly 2f, but also 1/1.2f, etc. - p8: always false - p9: 2f - p10: 0.5f - p11: true - p12: 0 / 512 / 513, etc. - p13: 0 - firing_pattern: ${firing_pattern_full_auto}, 0xC6EE6B4C - - - - - The entity will move towards the target until time is over (duration) or get in target's range (distance). p5 and p6 are unknown, but you could leave p5 = 1073741824 or 100 or even 0 (didn't see any difference but on the decompiled scripts, they use 1073741824 mostly) and p6 = 0 - Note: I've only tested it on entity -> ped and target -> vehicle. It could work differently on other entities, didn't try it yet. - Example: AI::TASK_GO_TO_ENTITY(pedHandle, vehicleHandle, 5000, 4.0, 100, 1073741824, 0) - Ped will run towards the vehicle for 5 seconds and stop when time is over or when he gets 4 meters(?) around the vehicle (with duration = -1, the task duration will be ignored). - - - - - shootatEntity: - If true, peds will shoot at Entity till it is dead. - If false, peds will just walk till they reach the entity and will cease shooting. - - - - - From re_prisonvanbreak: - AI::TASK_GUARD_CURRENT_POSITION(l_DD, 35.0, 35.0, 1); - - - - - p0 - Guessing PedID - p1, p2, p3 - XYZ? - p4 - ??? - p5 - Maybe the size of sphere from XYZ? - p6 - ??? - p7, p8, p9 - XYZ again? - p10 - Maybe the size of sphere from second XYZ? - - - - - In the scripts, p3 was always -1. - p3 seems to be duration or timeout of turn animation. - Also facingPed can be 0 or -1 so ped will just raise hands up. - - - - - Ped pilot should be in a heli. - EntityToFollow can be a vehicle or Ped. - x,y,z appear to be how close to the EntityToFollow the heli should be. Scripts use 0.0, 0.0, 80.0. Then the heli tries to position itself 80 units above the EntityToFollow. If you reduce it to -5.0, it tries to go below (if the EntityToFollow is a heli or plane) - NOTE: If the pilot finds enemies, it will engage them, then remain there idle, not continuing to chase the Entity given. - - - - - EDITED (8/16/2017) - DESCRIPTION: - Allow a ped to fly to a specific destination. - USAGE: - -- REQUIRED -- - • pilot = The ped flying the aircraft. - • aircraft = The aircraft the pilot is flying. - -- OPTIONAL -- [atleast 1 must be assigned] - • targetVehicle = The vehicle the pilot will target. - • targetPed = The ped the pilot will target. - • destinationX, destinationY, destinationZ = The location the pilot will target. - -- LOGIC -- - • missionFlag = The type of mission. - • maxSpeed = The speed in mph that the pilot will limit his/her self to while flying. - • landingRadius = The distance from the destination that the pilot must be to land. - • targetHeading = The heading that the pilot will try to achieve while flying. - • unk1, unk2 = Set to -1 and it will be okay. - • unk3 = I'm almost sure this is a vehicle record/waypoint recording hash. A value of -1 is for none. Maybe it's a float? Idk. - • landingFlags = Bit flags used for landing. All I know is: - 0 = Hover over the destination. - 32 = Land on destination. - 1024 = Erratic, crash into nearby obstacles. - 4096 = Rushed movement + Hover over destination - Known Mission Types: - 4 = FlyToCoord - 8 = FleeFromPed - 9 = CircleAroundTarget - 10 = CopyTargetHeading - 20 = LandNearPed - 21 = Crash - Example C#: - Function.Call(Hash.TASK_HELI_MISSION, driver, heli, 0, 0, position.X, position.Y, position.Z, 4, 50.0, 10.0, (position - heli.Position).ToHeading(), -1, -1, -1, 32); - OLD USAGE: pastebin.com/ndkSjaaW - - - - - Definition is wrong. This has 4 parameters (Not sure when they were added. v350 has 2, v678 has 4). - v350: Ped ped, bool unused - v678: Ped ped, bool unused, bool flag1, bool flag2 - flag1 = super jump, flag2 = do nothing if flag1 is false and doubles super jump height if flag1 is true. - - - - - Flags from decompiled scripts: - 0 = normal exit and closes door. - 1 = normal exit and closes door. - 16 = teleports outside, door kept closed. - 64 = normal exit and closes door, maybe a bit slower animation than 0. - 256 = normal exit but does not close the door. - 4160 = ped is throwing himself out, even when the vehicle is still. - 262144 = ped moves to passenger seat first, then exits normally - Others to be tried out: 320, 512, 131072. - - - - - p5 = 0, p6 = 2 - - - - - param3: duration in ms, use -1 to look forever - param4: using 2048 is fine - param5: using 3 is fine - - - - - This function has a third parameter as well (bool). - Second parameter is unused. - seconds parameter was for jetpack in the early stages of gta and the hard coded code is now removed - - - - - makes ped parachute to coords x y z. Works well with PATHFIND::GET_SAFE_COORD_FOR_PED - - - - - After looking at some scripts the second parameter seems to be an id of some kind. Here are some I found from some R* scripts: - "miss_Tower_01" (this went from 01 - 10) - "miss_Ass0" (0, 4, 6, 3) - "MISS_PATROL_8" - I think they're patrol routes, but I'm not sure. And I believe the 3rd parameter is a BOOL, but I can't confirm other than only seeing 0 and 1 being passed. - As far as I can see the patrol routes names such as "miss_Ass0" have been defined earlier in the scripts. This leads me to believe we can defined our own new patrol routes by following the same approach. - From the scripts - AI::OPEN_PATROL_ROUTE("miss_Ass0"); - AI::ADD_PATROL_ROUTE_NODE(0, "WORLD_HUMAN_GUARD_STAND", l_738[0 -- [[3]] ], -139.4076690673828, -993.4732055664062, 26.2754, GAMEPLAY::GET_RANDOM_INT_IN_RANGE(5000, 10000)); - AI::ADD_PATROL_ROUTE_NODE(1, "WORLD_HUMAN_GUARD_STAND", l_738[1 -- [[3]] ], -116.1391830444336, -987.4984130859375, 26.38541030883789, GAMEPLAY::GET_RANDOM_INT_IN_RANGE(5000, 10000)); - AI::ADD_PATROL_ROUTE_NODE(2, "WORLD_HUMAN_GUARD_STAND", l_738[2 -- [[3]] ], -128.46847534179688, -979.0340576171875, 26.2754, GAMEPLAY::GET_RANDOM_INT_IN_RANGE(5000, 10000)); - AI::ADD_PATROL_ROUTE_LINK(0, 1); - AI::ADD_PATROL_ROUTE_LINK(1, 2); - AI::ADD_PATROL_ROUTE_LINK(2, 0); - AI::CLOSE_PATROL_ROUTE(); - AI::CREATE_PATROL_ROUTE(); - - - - - Stand still (?) - - - - - Function.Call(Hash.TASK_PLANE_LAND, pilot, selectedAirplane, runwayStartPoint.X, runwayStartPoint.Y, runwayStartPoint.Z, runwayEndPoint.X, runwayEndPoint.Y, runwayEndPoint.Z); - - - - - EDITED (7/13/2017) - NOTE: If you want air combat, AI::TASK_COMBAT_PED (while your pilot is in an aircraft) also does the same thing as this native. - DESCRIPTION: - Ever wish your buddy could shoot down one of your enemies for you? Ever wanted an auto-pilot? Well look no further! This is the native for you! (Ped intelligence may vary) - USAGE: - -- REQUIRED -- - • pilot = The ped flying the aircraft. - • aircraft = The aircraft the pilot is flying - -- OPTIONAL -- [atleast 1 must be assigned] - • targetVehicle = The vehicle the pilot will target. - • targetPed = The ped the pilot will target. - • destinationX, destinationY, destinationZ = The location the pilot will target. - -- LOGIC -- - • missionFlag = The type of mission. pastebin.com/R8x73dbv - • angularDrag = The higher the value, the slower the plane will rotate. Value ranges from 0 - Infinity. - • unk = Set to 0, and you'll be fine. - • targetHeading = The target angle (from world space north) that the pilot will try to acheive before executing an attack/landing. - • maxZ = Maximum Z coordinate height for flying. - • minZ = Minimum Z coordinate height for flying. - Z: 2,700 is the default max height a pilot will be able to fly. Anything greater and he will fly downward until reaching 2,700 again. - Mission Types (incase you don't like links..): - 0 = None - 1 = Unk - 2 = CTaskVehicleRam - 3 = CTaskVehicleBlock - 4 = CTaskVehicleGoToPlane - 5 = CTaskVehicleStop - 6 = CTaskVehicleAttack - 7 = CTaskVehicleFollow - 8 = CTaskVehicleFleeAirborne - 9 = CTaskVehicleCircle - 10 = CTaskVehicleEscort - 15 = CTaskVehicleFollowRecording - 16 = CTaskVehiclePoliceBehaviour - 17 = CTaskVehicleCrash - Example C#: - Function.Call(Hash.TASK_PLANE_MISSION, pilot, vehicle, 0, Game.Player.Character, 0, 0, 0, 6, 0f, 0f, 0f, 2500.0f, -1500f); - Example C++ - AI::TASK_PLANE_MISSION(pilot, vehicle, 0, PLAYER::GET_PLAYER_PED(PLAYER::GET_PLAYER_INDEX()), 0, 0, 0, 6, 0.0, 0.0, 0.0, 2500.0, -1500.0); - [DEPRECATED] EXAMPLE USAGE: - pastebin.com/gx7Finsk - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - float blendInSpeed > normal speed is 8.0f - ---------------------- - float blendOutSpeed > normal speed is 8.0f - ---------------------- - int duration: time in millisecond - ---------------------- - -1 _ _ _ _ _ _ _> Default (see flag) - 0 _ _ _ _ _ _ _ > Not play at all - Small value _ _ > Slow down animation speed - Other _ _ _ _ _ > freeze player control until specific time (ms) has - _ _ _ _ _ _ _ _ _ passed. (No effect if flag is set to be - _ _ _ _ _ _ _ _ _ controllable.) - int flag: - ---------------------- - enum eAnimationFlags - { - ANIM_FLAG_NORMAL = 0, - ANIM_FLAG_REPEAT = 1, - ANIM_FLAG_STOP_LAST_FRAME = 2, - ANIM_FLAG_UPPERBODY = 16, - ANIM_FLAG_ENABLE_PLAYER_CONTROL = 32, - ANIM_FLAG_CANCELABLE = 120, - }; - Odd number : loop infinitely - Even number : Freeze at last frame - Multiple of 4: Freeze at last frame but controllable - 01 to 15 > Full body - 10 to 31 > Upper body - 32 to 47 > Full body > Controllable - 48 to 63 > Upper body > Controllable - ... - 001 to 255 > Normal - 256 to 511 > Garbled - ... - playbackRate: - values are between 0.0 and 1.0 - lockX: - 0 in most cases 1 for rcmepsilonism8 and rcmpaparazzo_3 - > 1 for mini@sprunk - lockY: - 0 in most cases - 1 for missfam5_yoga, missfra1mcs_2_crew_react - lockZ: - 0 for single player - Can be 1 but only for MP - - - - - It's similar to the one above, except the first 6 floats let you specify the initial position and rotation of the task. (Ped gets teleported to the position). animTime is a float from 0.0 -> 1.0, lets you start an animation from given point. The rest as in AI::TASK_PLAY_ANIM. - Rotation information : rotX and rotY don't seem to have any effect, only rotZ works. - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Example from the scripts: - AI::TASK_PLAY_PHONE_GESTURE_ANIMATION(PLAYER::PLAYER_PED_ID(), v_3, v_2, v_4, 0.25, 0.25, 0, 0); - ========================================================= - ^^ No offense, but Idk how that would really help anyone. - As for the animDict & animation, they're both store in a global in all 5 scripts. So if anyone would be so kind as to read that global and comment what strings they use. Thanks. - Known boneMaskTypes' - "BONEMASK_HEADONLY" - "BONEMASK_HEAD_NECK_AND_ARMS" - "BONEMASK_HEAD_NECK_AND_L_ARM" - "BONEMASK_HEAD_NECK_AND_R_ARM" - p4 known args - 0.0f, 0.5f, 0.25f - p5 known args - 0.0f, 0.25f - p6 known args - 1 if a global if check is passed. - p7 known args - 1 if a global if check is passed. - The values found above, I found within the 5 scripts this is ever called in. (fmmc_launcher, fm_deathmatch_controller, fm_impromptu_dm_controller, fm_mission_controller, and freemode). - ========================================================= - - - - - from armenian3.c4 - AI::TASK_PUT_PED_DIRECTLY_INTO_MELEE(PlayerPed, armenianPed, 0.0, -1.0, 0.0, 0); - - - - - Only appears twice in the scripts. - AI::TASK_RAPPEL_FROM_HELI(PLAYER::PLAYER_PED_ID(), 0x41200000); - AI::TASK_RAPPEL_FROM_HELI(a_0, 0x41200000); - Fixed, definitely not a float and since it's such a big number obviously not a bool. All though note when I thought it was a bool and set it to 1 it seemed to work that same as int 0x41200000. - 0x41200000 = 10.0 as float. - Not all helicopters support rappelling. - - - - - The 2nd param (unused) is not implemented. - ----------------------------------------------------------------------- - The only occurrence I found in a R* script ("assassin_construction.ysc.c4"): - if (((v_3 < v_4) && (AI::GET_SCRIPT_TASK_STATUS(PLAYER::PLAYER_PED_ID(), 0x6a67a5cc) != 1)) && (v_5 > v_3)) { - AI::TASK_RELOAD_WEAPON(PLAYER::PLAYER_PED_ID(), 1); - } - - - - - From fm_mission_controller.c: - reserve_network_mission_objects(get_num_reserved_mission_objects(0) + 1); - vVar28 = {0.094f, 0.02f, -0.005f}; - vVar29 = {-92.24f, 63.64f, 150.24f}; - func_253(&uVar30, joaat("prop_ld_case_01"), Global_1592429.imm_34757[iParam1 <268>], 1, 1, 0, 1); - set_entity_lod_dist(net_to_ent(uVar30), 500); - attach_entity_to_entity(net_to_ent(uVar30), iParam0, get_ped_bone_index(iParam0, 28422), vVar28, vVar29, 1, 0, 0, 0, 2, 1); - Var31.imm_4 = 1065353216; - Var31.imm_5 = 1065353216; - Var31.imm_9 = 1065353216; - Var31.imm_10 = 1065353216; - Var31.imm_14 = 1065353216; - Var31.imm_15 = 1065353216; - Var31.imm_17 = 1040187392; - Var31.imm_18 = 1040187392; - Var31.imm_19 = -1; - Var32.imm_4 = 1065353216; - Var32.imm_5 = 1065353216; - Var32.imm_9 = 1065353216; - Var32.imm_10 = 1065353216; - Var32.imm_14 = 1065353216; - Var32.imm_15 = 1065353216; - Var32.imm_17 = 1040187392; - Var32.imm_18 = 1040187392; - Var32.imm_19 = -1; - Var31 = 1; - Var31.imm_1 = "weapons@misc@jerrycan@mp_male"; - Var31.imm_2 = "idle"; - Var31.imm_20 = 1048633; - Var31.imm_4 = 0.5f; - Var31.imm_16 = get_hash_key("BONEMASK_ARMONLY_R"); - task_scripted_animation(iParam0, &Var31, &Var32, &Var32, 0f, 0.25f); - set_model_as_no_longer_needed(joaat("prop_ld_case_01")); - remove_anim_dict("anim@heists@biolab@"); - - - - - from michael2: - AI::TASK_SEEK_COVER_TO_COORDS(ped, 967.5164794921875, -2121.603515625, 30.479299545288086, 978.94677734375, -2125.84130859375, 29.4752, -1, 1); - appears to be shorter variation - from michael3: - AI::TASK_SEEK_COVER_TO_COORDS(ped, -2231.011474609375, 263.6326599121094, 173.60195922851562, -1, 0); - - - - - I cant believe I have to define this, this is one of the best natives. - It makes the ped ignore basically all shocking events around it. Occasionally the ped may comment or gesture, but other than that they just continue their daily activities. This includes shooting and wounding the ped. And - most importantly - they do not flee. - Since it is a task, every time the native is called the ped will stop for a moment. - - - - - p1 is always GET_HASH_KEY("empty") in scripts, for the rare times this is used - - - - - //this part of the code is to determine at which entity the player is aiming, for example if you want to create a mod where you give orders to peds - Entity aimedentity; - Player player = PLAYER::PLAYER_ID(); - PLAYER::_GET_AIMED_ENTITY(player, &aimedentity); - //bg is an array of peds - AI::TASK_SHOOT_AT_ENTITY(bg[i], aimedentity, 5000, GAMEPLAY::GET_HASH_KEY("FIRING_PATTERN_FULL_AUTO")); - in practical usage, getting the entity the player is aiming at and then task the peds to shoot at the entity, at a button press event would be better. - - - - - Makes the specified ped shuffle to the next vehicle seat. - The ped MUST be in a vehicle and the vehicle parameter MUST be the ped's current vehicle. - - - - - Makes the specified ped flee the specified distance from the specified position. - - - - - Makes a ped run away from another ped (fleeTarget). - distance = ped will flee this distance. - fleeTime = ped will flee for this amount of time, set to "-1" to flee forever - - - - - scenarioName example: "WORLD_HUMAN_GUARD_STAND" - - - - - Makes the specified ped stand still for (time) milliseconds. - - - - - List of scenarioNames: pastebin.com/6mrYTdQv - Also a few more listed at AI::TASK_START_SCENARIO_IN_PLACE just above. - --------------- - The first parameter in every scenario has always been a Ped of some sort. The second like TASK_START_SCENARIO_IN_PLACE is the name of the scenario. - The next 4 parameters were harder to decipher. After viewing "hairdo_shop_mp.ysc.c4", and being confused from seeing the case in other scripts, they passed the first three of the arguments as one array from a function, and it looked like it was obviously x, y, and z. - I haven't seen the sixth parameter go to or over 360, making me believe that it is rotation, but I really can't confirm anything. - I have no idea what the last 3 parameters are, but I'll try to find out. - -going on the last 3 parameters, they appear to always be "0, 0, 1" - p6 -1 also used in scrips - p7 used for sitting scenarios - p8 teleports ped to position - - - - - Plays a scenario on a Ped at their current location. - unkDelay - Usually 0 or -1, doesn't seem to have any effect. Might be a delay between sequences. - playEnterAnim - Plays the "Enter" anim if true, otherwise plays the "Exit" anim. Scenarios that don't have any "Enter" anims won't play if this is set to true. - ---- - From "am_hold_up.ysc.c4" at line 339: - AI::TASK_START_SCENARIO_IN_PLACE(NETWORK::NET_TO_PED(l_8D._f4), sub_adf(), 0, 1); - I'm unsure of what the last two parameters are, however sub_adf() randomly returns 1 of 3 scenarios, those being: - WORLD_HUMAN_SMOKING - WORLD_HUMAN_HANG_OUT_STREET - WORLD_HUMAN_STAND_MOBILE - This makes sense, as these are what I commonly see when going by a liquor store. - ------------------------- - List of scenarioNames: pastebin.com/6mrYTdQv - (^ Thank you so fucking much for this) - Also these: - WORLD_FISH_FLEE - DRIVE - WORLD_HUMAN_HIKER - WORLD_VEHICLE_ATTRACTOR - WORLD_VEHICLE_BICYCLE_MOUNTAIN - WORLD_VEHICLE_BIKE_OFF_ROAD_RACE - WORLD_VEHICLE_BIKER - WORLD_VEHICLE_CONSTRUCTION_PASSENGERS - WORLD_VEHICLE_CONSTRUCTION_SOLO - WORLD_VEHICLE_DRIVE_PASSENGERS - WORLD_VEHICLE_DRIVE_SOLO - WORLD_VEHICLE_EMPTY - WORLD_VEHICLE_PARK_PARALLEL - WORLD_VEHICLE_PARK_PERPENDICULAR_NOSE_IN - WORLD_VEHICLE_POLICE_BIKE - WORLD_VEHICLE_POLICE_CAR - WORLD_VEHICLE_POLICE_NEXT_TO_CAR - WORLD_VEHICLE_SALTON_DIRT_BIKE - WORLD_VEHICLE_TRUCK_LOGS - - - - - Makes the ped run to take cover - - - - - Stealth kill action name hashes: - stealth kills can be found here: Grand Theft Auto V\common.rpf\data\action\stealth_kills.meta - ... - { - "ACT_stealth_kill_a", - "ACT_stealth_kill_weapon", - "ACT_stealth_kill_b", - "ACT_stealth_kill_c", - "ACT_stealth_kill_d", - "ACT_stealth_kill_a_gardener" - } - Only known script using this native: fbi4_prep2 - EXAMPLE: - ai::task_stealth_kill(iParam1, Local_252, gameplay::get_hash_key("AR_stealth_kill_a"), 1f, 0);ai::task_stealth_kill(iParam1, Local_252, gameplay::get_hash_key("AR_stealth_kill_knife"), 1f, 0); - Also it may be important to note, that each time this task is called, it's followed by AI::CLEAR_PED_TASKS on the target - - - - - This function is called on peds in vehicles. - anim: animation name - p2, p3, p4: "sweep_low", "sweep_med" or "sweep_high" - p5: no idea what it does but is usually -1 - - - - - AI::TASK_SYNCHRONIZED_SCENE(ped, scene, "creatures@rottweiler@in_vehicle@std_car", "get_in", 1000.0, -8.0, 4, 0, 0x447a0000, 0); - Animations List : www.ls-multiplayer.com/dev/index.php?section=3 - - - - - In every case of this native, I've only seen the first parameter passed as 0, although I believe it's a Ped after seeing tasks around it using 0. That's because it's used in a Sequence Task. - The last 3 parameters are definitely coordinates after seeing them passed in other scripts, and even being used straight from the player's coordinates. - --- - It seems that - in the decompiled scripts - this native was used on a ped who was in a vehicle to throw a projectile out the window at the player. This is something any ped will naturally do if they have a throwable and they are doing driveby-combat (although not very accurately). - It is possible, however, that this is how SWAT throws smoke grenades at the player when in cover. - ---------------------------------------------------- - The first comment is right it definately is the ped as if you look in script finale_heist2b.c line 59628 in Xbox Scripts atleast you will see task_throw_projectile and the first param is Local_559[2 <14>] if you look above it a little bit line 59622 give_weapon_to_ped uses the same exact param Local_559[2 <14>] and we all know the first param of that native is ped. So it guaranteed has to be ped. 0 just may mean to use your ped by default for some reason. - - - - - used in sequence task - both parameters seems to be always 0 - - - - - duration in milliseconds - - - - - duration: the amount of time in milliseconds to do the task. -1 will keep the task going until either another task is applied, or CLEAR_ALL_TASKS() is called with the ped - - - - - Actually has 3 params, not 2. - p0: Ped - p1: int (or bool?) - p2: int - - - - - Updated variables - An alternative to AI::TASK_USE_NEAREST_SCENARIO_TO_COORD_WARP. Makes the ped walk to the scenario instead. - - - - - chases targetEnt fast and aggressively - -- - Makes ped (needs to be in vehicle) chase targetEnt. - - - - - info about driving modes: HTTP://gtaforums.com/topic/822314-guide-driving-styles/ - --------------------------------------------------------------- - Passing P6 value as floating value didn't throw any errors, though unsure what is it exactly, looks like radius or something. - P10 though, it is mentioned as float, however, I used bool and set it to true, that too worked. - Here the e.g. code I used - Function.Call(Hash.TASK_VEHICLE_DRIVE_TO_COORD, Ped, Vehicle, Cor X, Cor Y, Cor Z, 30f, 1f, Vehicle.GetHashCode(), 16777216, 1f, true); - - - - - Makes a ped follow the targetVehicle with <minDistance> in between. - note: minDistance is ignored if drivingstyle is avoiding traffic, but Rushed is fine. - Mode: The mode defines the relative position to the targetVehicle. The ped will try to position its vehicle there. - -1 = behind - 0 = ahead - 1 = left - 2 = right - 3 = back left - 4 = back right - if the target is closer than noRoadsDistance, the driver will ignore pathing/roads and follow you directly. - Driving Styles guide: gtaforums.com/topic/822314-guide-driving-styles/ - - - - - task_vehicle_follow_waypoint_recording(Ped p0, Vehicle p1, string p2, int p3, int p4, int p5, int p6, float.x p7, float.Y p8, float.Z p9, bool p10, int p11) - p2 = Waypoint recording string (found in update\update.rpf\x64\levels\gta5\waypointrec.rpf - p3 = 786468 - p4 = 0 - p5 = 16 - p6 = -1 (angle?) - p7/8/9 = usually v3.zero - p10 = bool (repeat?) - p11 = 1073741824 - - - - - Differs from TASK_VEHICLE_DRIVE_TO_COORDS in that it will pick the shortest possible road route without taking one-way streets and other "road laws" into consideration. - WARNING: - A behaviorFlag value of 0 will result in a clunky, stupid driver! - Recommended settings: - speed = 30.0f, - behaviorFlag = 156, - stoppingRange = 5.0f; - If you simply want to have your driver move to a fixed location, call it only once, or, when necessary in the event of interruption. - If using this to continually follow a Ped who is on foot: You will need to run this in a tick loop. Call it in with the Ped's updated coordinates every 20 ticks or so and you will have one hell of a smart, fast-reacting NPC driver -- provided he doesn't get stuck. If your update frequency is too fast, the Ped may not have enough time to figure his way out of being stuck, and thus, remain stuck. One way around this would be to implement an "anti-stuck" mechanism, which allows the driver to realize he's stuck, temporarily pause the tick, unstuck, then resume the tick. - EDIT: This is being discussed in more detail at http://gtaforums.com/topic/818504-any-idea-on-how-to-make-peds-clever-and-insanely-fast-c/ - - - - - pilot, vehicle and altitude are rather self-explanatory. - p4: is unused variable in the function. - entityToFollow: you can provide a Vehicle entity or a Ped entity, the heli will protect them. - 'targetSpeed': The pilot will dip the nose AS MUCH AS POSSIBLE so as to reach this value AS FAST AS POSSIBLE. As such, you'll want to modulate it as opposed to calling it via a hard-wired, constant #. - 'radius' isn't just "stop within radius of X of target" like with ground vehicles. In this case, the pilot will fly an entire circle around 'radius' and continue to do so. - NOT CONFIRMED: p7 appears to be a FlyingStyle enum. Still investigating it as of this writing, but playing around with values here appears to result in different -behavior- as opposed to offsetting coordinates, altitude, target speed, etc. - NOTE: If the pilot finds enemies, it will engage them until it kills them, but will return to protect the ped/vehicle given shortly thereafter. - - - - - Example from fm_mission_controller.c4: - AI::TASK_VEHICLE_MISSION_COORS_TARGET(l_65E1, l_65E2, 324.84588623046875, 325.09619140625, 104.3525, 4, 15.0, 802987, 5.0, 5.0, 0); - - - - - Modes: - 8= flees - 1=drives around the ped - 4=drives and stops near - 7=follows - 10=follows to the left - 11=follows to the right - 12 = follows behind - 13=follows ahead - 14=follows, stop when near - - - - - Modes: - 0 - ignore heading - 1 - park forward - 2 - park backwards - Depending on the angle of approach, the vehicle can park at the specified heading or at its exact opposite (-180) angle. - Radius seems to define how close the vehicle has to be -after parking- to the position for this task considered completed. If the value is too small, the vehicle will try to park again until it's exactly where it should be. 20.0 Works well but lower values don't, like the radius is measured in centimeters or something. - - - - - Most probably plays a specific animation on vehicle. For example getting chop out of van etc... - Here's how its used - - AI::TASK_VEHICLE_PLAY_ANIM(l_325, "rcmnigel1b", "idle_speedo"); - AI::TASK_VEHICLE_PLAY_ANIM(l_556[0 -- [[1]] ], "missfra0_chop_drhome", "InCar_GetOutofBack_Speedo"); - FYI : Speedo is the name of van in which chop was put in the mission. - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - '1 - '3 - brake + reverse - '4 - turn left 90 + braking - '5 - turn right 90 + braking - '6 - brake strong (handbrake?) until time ends - '7 - turn left + accelerate - '7 - turn right + accelerate - '9 - weak acceleration - '10 - turn left + restore wheel pos to center in the end - '11 - turn right + restore wheel pos to center in the end - '13 - turn left + go reverse - '14 - turn left + go reverse - '16 - crash the game after like 2 seconds :) - '17 - keep actual state, game crashed after few tries - '18 - game crash - '19 - strong brake + turn left/right - '20 - weak brake + turn left then turn right - '21 - weak brake + turn right then turn left - '22 - brake + reverse - '23 - accelerate fast - '24 - '25 - brake turning left then when almost stopping it turns left more - '26 - brake turning right then when almost stopping it turns right more - '27 - brake until car stop or until time ends - '28 - brake + strong reverse acceleration - '30 - performs a burnout (brake until stop + brake and accelerate) - '31 - accelerate + handbrake - '32 - accelerate very strong - Seems to be this: - Works on NPCs, but overrides their current task. If inside a task sequence (and not being the last task), "time" will work, otherwise the task will be performed forever until tasked with something else - - - - - Makes ped walk around the area. - set p1 to 10.0f and p2 to 10 if you want the ped to walk anywhere without a duration. - - - - - Seat Numbers - ------------------------------- - Driver = -1 - Any = -2 - Left-Rear = 1 - Right-Front = 0 - Right-Rear = 2 - Extra seats = 3-14(This may differ from vehicle type e.g. Firetruck Rear Stand, Ambulance Rear) - - - - - EX: Function.Call(Ped1, Ped2, Time, 0); - The last parameter is always 0 for some reason I do not know. The first parameter is the pedestrian who will writhe to the pedestrian in the other parameter. The third paremeter is how long until the Writhe task ends. When the task ends, the ped will die. If set to -1, he will not die automatically, and the task will continue until something causes it to end. This can be being touched by an entity, being shot, explosion, going into ragdoll, having task cleared. Anything that ends the current task will kill the ped at this point. - MulleDK19: Third parameter does not appear to be time. The last parameter is not implemented (It's not used, regardless of value). - - - - - For a full list, see here: pastebin.com/yLNWicUi - - - - - I guess p3 is shape test flags? - - - - - Counts up. Every 1000 is 1 real-time second. Use SETTIMERA(int value) to set the timer (e.g.: SETTIMERA(0)). - - - - - Gets the current frame time. - - - - - Toggles: - UNK17 - Turbo - UNK19 - Tire Smoke - UNK21 - Xenon Headlights - - - - - in script hook .net - Vehicle v = ...; - Function.Call(Hash.TRACK_VEHICLE_VISIBILITY, v.Handle); - - - - - The backing function for TriggerEvent. - - - - - List of all usable event names found in b617d used with this native. Sorted alphabetically and identical names removed: pastebin.com/RzDFmB1W - All music event names found in the b617d scripts: pastebin.com/GnYt0R3P - - - - - yis - eventGroup: 0 = CEventGroupScriptAI, 1 = CEventGroupScriptNetwork - ^^ I'm assuming it's like the rest with this parameter. - - - - - The backing function for TriggerServerEvent. - - - - - I see this as a native that would of been used back in GTA III when you finally unlocked the bridge to the next island and such. - - - - - Does something similar to INTERIOR::DISABLE_INTERIOR. - You don't fall through the floor but everything is invisible inside and looks the same as when INTERIOR::DISABLE_INTERIOR is used. Peds behaves normally inside. - - - - - gtaforums.com/topic/885580-ped-headshotmugshot-txd/ - - - - - **This native does absolutely nothing, just a nullsub** - - ``` - On last-gen this just runs blr and this func is called by several other functions other then the native's table. - ``` - - - - - Returns the current status of the onscreen keyboard, and updates the output. - Status Codes: - 0 - User still editing - 1 - User has finished editing - 2 - User has canceled editing - 3 - Keyboard isn't active - - - - - See SET_PED_HEAD_BLEND_DATA(). - - - - - hash collision? - - - - - Hash collision - If this is a hash collision, it's a very lucky one. It does seem strangely named but it is used to toggle the mission creator mode. - - - - - hash collision? - - - - - Calculates distance between vectors. - - - - - Calculates distance between vectors but does not perform Sqrt operations. (Its way faster) - - - - - calls from vehicle to net. - - - - - Calculates the magnitude of a vector. - - - - - Calculates the magnitude of a vector but does not perform Sqrt operations. (Its way faster) - - - - - Pauses execution of the current script, please note this behavior is only seen when called from one of the game script files(ysc). In order to wait an asi script use - static void WAIT(DWORD time); - found in main.h - -------------------------------------------------------------------- - It does not actually seem to wait the amount of milliseconds stated like the normal WAIT() command does, but it does seem to make task sequences work more smoothly - System native hashes do not change on gameupdate - - - - - Hash collision - - - - - Returns whether or not the currently executing event was canceled. - - - - - Despite this function's name, it simply returns whether the specified handle is a Ped. - - - - - For a full list, see here: pastebin.com/Tp0XpBMN - For a full list of the points, see here: goo.gl/wIH0vn - - - - - For a full list, see here: pastebin.com/Tp0XpBMN - For a full list of the points, see here: goo.gl/wIH0vn - - - - - For a full list, see here: pastebin.com/Tp0XpBMN - For a full list of the points, see here: goo.gl/wIH0vn - - - - - First parameter was previously an Entity but after further research it is definitely a hash. - - - - - Aborts the current message in the text chat. - - - - - Show Rockstar Editor Menu - by I'm Not MentaL - ---------- - "new_editor" menu - - - - - Adds a rectangular blip for the specified coordinates/area. - - It is recommended to use [SET_BLIP_ROTATION](#_0xF87683CDF73C3F6E) and [SET_BLIP_COLOUR](#_0x03D7FB09E75D6B7E) to make the blip not rotate along with the camera. - - By default, the blip will show as a _regular_ blip with the specified color/sprite if it is outside of the minimap view. - - Example image: - ![minimap](https://w.wew.wtf/pdcjig.png) - ![big map](https://w.wew.wtf/zgcjcm.png) - - (Native name is _likely_ to actually be ADD_BLIP_FOR_AREA, but due to the usual reasons this can't be confirmed) - - - - - Now has 15 parameters, previous declaration: - BOOL _0x428BDCB9DA58DA53(Any p0, Any p1, Any p2, float p3, float p4, float p5, float p6, float p7, float p8, float p9, float p10, float p11, float p12, Any p13) - boneIndex is always chassis_dummy in the scripts. The x/y/z params are location relative to the chassis bone. They are usually rotations and measurements. Haven't reversed which are what yet. - Scale is how big the decal will be. - p13 is always 0. - For alpha, 200 seems to match what the game is doing, I think. I don't have access to the new scripts to see what this parameter is, but based on guessing this seems (kind of) accurate. - - - - - REQUEST_STREAMED_TEXTURE_DICT("MPOnMissMarkers", false); - *uParam0.f_809 = add_decal(9120, vParam1, vVar4, vVar7, 2f, 2f, to_float(iVar0) / 255f, to_float(iVar1) / 255f, to_float(iVar2) / 255f, 1f, -1f, 1, 0, 0); - _0x8A35C742130C6080(9120, "MPOnMissMarkers", "Capture_The_Flag_Base_Icon"); - - - - - This is used to add a speedzone on a position. - Example usage C#: - uint speedZone = Function.Call<uint>((Hash) 0x2CE544C68FB812A0, Game.PlayerPed.Position.X, Game.PlayerPed.Position.Y, Game.PlayerPed.Position.Z, 100.0f, 0.0f, false); - (Thanks to alexguirre for his help!) - ========================================== - What is the point in adding a speed zone? Does it just generally affect the speed NPCs will drive? I can imagine running this on every section of the interstate setting it to 3 MPH rip. - - - - - p1 was always -1. - used for phone applications; scaleform - - - - - This native (along with 0x6C188BE134E074AA and 0x94CF4AC034C9C986) do not actually filter anything. They simply add the provided text (as of 944) - did you even check the disassembly? - > Do you even lift bro? The PLAYER_NAME and WEBSITE natives are the correct names, it doesn't matter if they're filtered or not. Blame R* for that matter. Hashes don't lie, and it's extremely unlikely the validated names are collisions (what are the odds??) - - - - - Seems to animate the gameplay camera zoom. - Eg. _ANIMATE_GAMEPLAY_CAM_ZOOM(1f, 1000f); - will animate the camera zooming in from 1000 meters away. - Game scripts use it like this: - // Setting this to 1 prevents V key from changing zoom - PLAYER::SET_PLAYER_FORCED_ZOOM(PLAYER::PLAYER_ID(), 1); - // These restrict how far you can move cam up/down left/right - CAM::_CLAMP_GAMEPLAY_CAM_YAW(-20f, 50f); - CAM::_CLAMP_GAMEPLAY_CAM_PITCH(-60f, 0f); - CAM::_ANIMATE_GAMEPLAY_CAM_ZOOM(1f, 1f); - - - - - Returns true when the bomb bay doors of this plane are open. False if they're closed. - - - - - Returns true if the coords are colliding with the outdoors, and false if they collide with an interior. - - - - - Found this in the decompiled scripts, I'd do more research before changing the name -- - if (!ENTITY::IS_ENTITY_DEAD(l_1911)) { - if (!VEHICLE::_755D6D5267CBBD7E(l_1911)) { - sub_1ba80("TRAFFICKING AIR: FAILING - PROPELLERS ARE DAMAGED"); - l_12CE = 9; - } - } - - - - - ADD_A_MARKER_OVER_VEHICLE was a hash collision!!! - Can be used for planes only! - - - - - Types: - 1 = Boolean - 2 = Integer - 3 = Float - 4 = String - 5 = Vector3 - 6 = Object - 7 = Array - - - - - This native works with vehicles only. - Bone indexes are usually given by this native [GET_ENTITY_BONE_INDEX_BY_NAME](#_0xFB71170B7E76ACBA). - - - - - MulleDK19: Starts a new enumeration of the current threads. - Call this first, then _GET_ID_OF_NEXT_THREAD_IN_ENUMERATION (0x30B4FA1C82DD4B9F) - see _GET_ID_OF_NEXT_THREAD_IN_ENUMERATION (0x30B4FA1C82DD4B9F) for an example - - - - - Pushes a function from the Hud component Scaleform onto the stack. Same behavior as GRAPHICS::_PUSH_SCALEFORM_MOVIE_FUNCTION, just a hud component id instead of a Scaleform. - Known components: - 19 - 20 - This native requires more research - all information can be found inside of 'hud.gfx'. Using a decompiler, the different components are located under "scripts\__Packages\com\rockstargames\gtav\hud\hudComponents" and "scripts\__Packages\com\rockstargames\gtav\Multiplayer". - - - - - Initializes the text entry for the the text next to a loading prompt. All natives for for building UI texts can be used here - BEGIN_TEXT_COMMAND_PRINT - e.g - void StartLoadingMessage(char *text, int spinnerType = 3) - { - _SET_LOADING_PROMPT_TEXT_ENTRY("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - _SHOW_LOADING_PROMPT(spinnerType); - } - -- [[OR]] - void ShowLoadingMessage(char *text, int spinnerType = 3, int timeMs = 10000) - { - _SET_LOADING_PROMPT_TEXT_ENTRY("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - _SHOW_LOADING_PROMPT(spinnerType); - WAIT(timeMs); - _REMOVE_LOADING_PROMPT(); - } - These are some localized strings used in the loading spinner. - "PM_WAIT" = Please Wait - "CELEB_WPLYRS" = Waiting For Players. - "CELL_SPINNER2" = Scanning storage. - "ERROR_CHECKYACHTNAME" = Registering your yacht's name. Please wait. - "ERROR_CHECKPROFANITY" = Checking your text for profanity. Please wait. - "FM_COR_AUTOD" = Just spinner no text - "FM_IHELP_WAT2" = Waiting for other players - "FM_JIP_WAITO" = Game options are being set - "FMMC_DOWNLOAD" = Downloading - "FMMC_PLYLOAD" = Loading - "FMMC_STARTTRAN" = Launching session - "HUD_QUITTING" = Quiting session - "KILL_STRIP_IDM" = Waiting for to accept - "MP_SPINLOADING" = Loading - - - - - get's line count - int GetLineCount(char *text, float x, float y) - { - _BEGIN_TEXT_COMMAND_LINE_COUNT("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - return _END_TEXT_COMMAND_GET_LINE_COUNT(x, y); - } - - - - - nothin doin. - void message() - { - _BEGIN_TEXT_COMMAND_OBJECTIVE("AHT_RTIT"); - _END_TEXT_COMMAND_OBJECTIVE(0); - } - - - - - void message(char *text) - { - _BEGIN_TEXT_COMMAND_TIMER("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - _END_TEXT_COMMAND_TIMER(0); - } - - - - - Example: - _BEGIN_TEXT_COMMAND_WIDTH("NUMBER"); - ADD_TEXT_COMPONENT_FLOAT(69.420f, 2); - float width = _END_TEXT_COMMAND_GET_WIDTH(true); - - - - - calling this each frame, it stops the player from receiving a weapon via the weapon wheel. - - - - - Calls the Scaleform function and passes the parameters as floats. - The number of parameters passed to the function varies, so the end of the parameter list is represented by -1.0. - - - - - Calls the Scaleform function and passes both float and string parameters (in their respective order). - The number of parameters passed to the function varies, so the end of the float parameters is represented by -1.0, and the end of the string parameters is represented by 0 (NULL). - NOTE: The order of parameters in the function prototype is important! All float parameters must come first, followed by the string parameters. - Examples: - // function MY_FUNCTION(floatParam1, floatParam2, stringParam) - GRAPHICS::_CALL_SCALEFORM_MOVIE_FUNCTION_MIXED_PARAMS(scaleform, "MY_FUNCTION", 10.0, 20.0, -1.0, -1.0, -1.0, "String param", 0, 0, 0, 0); - // function MY_FUNCTION_2(floatParam, stringParam1, stringParam2) - GRAPHICS::_CALL_SCALEFORM_MOVIE_FUNCTION_MIXED_PARAMS(scaleform, "MY_FUNCTION_2", 10.0, -1.0, -1.0, -1.0, -1.0, "String param #1", "String param #2", 0, 0, 0); - - - - - Calls the Scaleform function and passes the parameters as strings. - The number of parameters passed to the function varies, so the end of the parameter list is represented by 0 (NULL). - - - - - Returns true if ped1 can see ped2 in their line of vision - - - - - Checks if the ped can play the speech or has the speech file, last parameter is usually 0 - - - - - if(_CAN_PLAY_ONLINE() == 0) means the player is banned(Social Club or Rockstar) - - - - - When calling this, the current frame will have the players "arrow icon" be focused on the dead center of the radar. - - - - - minimum: Degrees between -90f and 90f. - maximum: Degrees between -90f and 90f. - Clamps the gameplay camera's current pitch. - Eg. _CLAMP_GAMEPLAY_CAM_PITCH(0.0f, 0.0f) will set the vertical angle directly behind the player. - - - - - minimum: Degrees between -180f and 180f. - maximum: Degrees between -180f and 180f. - Clamps the gameplay camera's current yaw. - Eg. _CLAMP_GAMEPLAY_CAM_YAW(0.0f, 0.0f) will set the horizontal angle directly behind the player. - - - - - GAMEPLAY::_0x957838AAF91BD12D(x, y, z, radius, false, false, false, false); seem to make all objects go away, peds, vehicles etc. All booleans set to true doesn't seem to change anything. - - - - - Clears the secondary timecycle modifier usually set with [`SetExtraTimecycleModifier`](#_0X3B2FD68DB5F8331C) - - - - - Clears a disabled GPS route area from a certain index previously set using [`SET_GPS_DISABLED_ZONE_AT_INDEX`](#_0xD0BC1C6FB18EE154). - - - - - _CLEAR_NOTIFICATIONS_POS(0.5f); - - - - - creates single lightning+thunder at random position - - - - - p0 was the return of NET_TO_PED in fm_mission_controler. - p4 was always "". - returns headDisplayId - - - - - Console Hash: 0x8DE5382F - The native name is correct but the db automatically prefixes "_" to unknown natives when changed. - - - - - Console Hash: 0xBC7BD5CB - The native name is correct but the db automatically prefixes "_" to unknown natives when changed. - - - - - Detaches the vehicle's windscreen. - For further information, see : gtaforums.com/topic/859570-glass/#entry1068894566 - - - - - Disables first person camera for the current frame. - Found in decompiled scripts: - GRAPHICS::DRAW_DEBUG_TEXT_2D("Disabling First Person Cam", 0.5, 0.8, 0.0, 0, 0, 255, 255); - CAM::_DE2EF5DA284CC8DF(); - - - - - Disables the phone up-button, oddly enough. - i.e.: When the phone is out, and this method is called with false as it's parameter, the phone will not be able to scroll up. However, when you use the down arrow key, it's functionality still, works on the phone. - When the phone is not out, and this method is called with false as it's parameter, you will not be able to bring up the phone. Although the up arrow key still works for whatever functionality it's used for, just not for the phone. - This can be used for creating menu's when trying to disable the phone from being used. - You do not have to call the function again with false as a parameter, as soon as the function stops being called, the phone will again be usable. - - - - - confirmed working - - - - - Toggles to render distant vehicles. They may not be vehicles but images to look like vehicles. - - - - - Shows a hud element for reporting jobs - - - - - only documented to be continued... - - - - - Returns true only when the magnet is active, will return false if the hook is active - console hash 0x4778CA0A - - - - - Returns true if a destructible object with this handle exists, false otherwise. - - - - - Example: - if (OBJECT::_DOES_DOOR_EXIST(doorHash)) - { - OBJECT::REMOVE_DOOR_FROM_SYSTEM(doorHash); - } - - - - - formerly _IS_STREAMED_SCRIPT_RUNNING - Jenkins hash: 0x19EAE282 - - - - - This function is called before ADD_CLAN_DECAL_TO_VEHICLE to see if it needs to run. IDK if it's for clan decal or not, but the 2nd parameter might be decal index? It's always passed 0. Not sure what this function really does. But it does return 0 if the clan tag is not on, and 1 if it is. - - - - - OBJECT::_9B12F9A24FABEDB0(${prop_gate_prison_01}, 1845.0, 2605.0, 45.0, 0, 0.0, 50.0, 0); //door unlocked - OBJECT::_9B12F9A24FABEDB0(${prop_gate_prison_01}, 1845.0, 2605.0, 45.0, 1, 0.0, 50.0, 0); //door locked - locked simply tells the game whether or not the door is locked. - x,y,z RotMult are multipliers that specify how fast the door/gate will rotate in degrees per second. - - - - - Downloads prod.cloud.rockstargames.com/titles/gta5/<platform>/check.json - - - - - instructionalKey enum list: - - ``` - Buttons = { - Empty = 0, - Select = 1, -- (RETURN) - Ok = 2, -- (RETURN) - Yes = 4, -- (RETURN) - Back = 8, -- (ESC) - Cancel = 16, -- (ESC) - No = 32, -- (ESC) - RetrySpace = 64, -- (SPACE) - Restart = 128, -- (SPACE) - Skip = 256, -- (SPACE) - Quit = 512, -- (ESC) - Adjust = 1024, -- (ARROWS) - SpaceKey = 2048, -- (SPACE) - Share = 4096, -- (SPACE) - SignIn = 8192, -- (SPACE) - Continue = 16384, -- (RETURN) - AdjustLeftRight = 32768, -- (SCROLL L/R) - AdjustUpDown = 65536, -- (SCROLL U/D) - Overwrite = 131072, -- (SPACE) - SocialClubSignup = 262144, -- (RETURN) - Confirm = 524288, -- (RETURN) - Queue = 1048576, -- (RETURN) - RetryReturn = 2097152, -- (RETURN) - BackEsc = 4194304, -- (ESC) - SocialClub = 8388608, -- (RETURN) - Spectate = 16777216, -- (SPACE) - OkEsc = 33554432, -- (ESC) - CancelTransfer = 67108864, -- (ESC) - LoadingSpinner = 134217728, - NoReturnToGTA = 268435456, -- (ESC) - CancelEsc = 536870912, -- (ESC) - } - - Alt = { - Empty = 0, - No = 1, -- (SPACE) - Host = 2, -- (ESC) - SearchForJob = 4, -- (RETURN) - ReturnKey = 8, -- (TURN) - Freemode = 16, -- (ESC) - } - ``` - - **Result of the example code:** <https://i.imgur.com/TvmNF4k.png> - - - - - Similar to [\_DRAW_SPRITE](#_0xE7FFAE5EBF23D890), but seems to be some kind of "interactive" sprite, at least used by render targets. - These seem to be the only dicts ever requested by this native: - - ``` - prop_screen_biker_laptop - Prop_Screen_GR_Disruption - Prop_Screen_TaleOfUs - prop_screen_nightclub - Prop_Screen_IE_Adhawk - prop_screen_sm_free_trade_shipping - prop_screen_hacker_truck - MPDesktop - Prop_Screen_Nightclub - And a few others - ``` - - - - - Draws a notification above the map and returns the notifications handle - Color syntax: - ~r~ = Red - ~b~ = Blue - ~g~ = Green - ~y~ = Yellow - ~p~ = Purple - ~o~ = Orange - ~c~ = Grey - ~m~ = Darker Grey - ~u~ = Black - ~n~ = New Line - ~s~ = Default White - ~w~ = White - ~h~ = Bold Text - ~nrt~ = ??? - Special characters: - ¦ = Rockstar Verified Icon (U+00A6:Broken Bar - Alt+0166) - ÷ = Rockstar Icon (U+00F7:Division Sign - Alt+0247) - ∑ = Rockstar Icon 2 (U+2211:N-Ary Summation) - Example C#: - Function.Call(Hash._ADD_TEXT_COMPONENT_STRING3, "Now I need you to bring the ~b~vehicle~w~ back to me!"); - ---- - showInBrief==true: the notification will appear in the "Brief/Info" -> "Notifications" tab in the pause menu. - showInBrief==false: the notification will NOT appear in the pause menu. - - - - - This function and the one below it are for after you receive an invite, not sending it. - p0 = 1 or 0 - nothin doin. - int invite(Player player) - { - int iVar2, iVar3; - networkHandleMgr handle; - NETWORK_HANDLE_FROM_PLAYER(player, &handle.netHandle, 13); - networkClanMgr clan; - char *playerName = GET_PLAYER_NAME(player); - _SET_NOTIFICATION_TEXT_ENTRY("STRING"); - _SET_NOTIFACTION_COLOR_NEXT(0); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(playerName); - if (NETWORK_CLAN_PLAYER_GET_DESC(&clan, 35, &handle.netHandle)) - { - iVar2 = 0; - if (ARE_STRINGS_EQUAL(clan.unk22, "Leader") && clan.unk30 == 0) - { - iVar2 = 1; - } - if (clan.unk21 > 0) - { - iVar3 = 0; - } - else - { - iVar3 = 1; - } - BOOL unused = _0x54E79E9C(&clan.clanHandle, 35); - return _DRAW_NOTIFICATION_APARTMENT_INVITE(iVar3, 0 -- [[unused]] , &clan.unk17, clan.unk30, iVar2, 0, clan.clanHandle, 0, 0, 0); - } - } - - - - - Shows an "award" notification above the minimap, lua example result: - - ![](https://i.imgur.com/e2DNaKX.png) - - Old description: - - ``` - Example: - UI::_SET_NOTIFICATION_TEXT_ENTRY("HUNT"); - UI::_0xAA295B6F28BD587D("Hunting", "Hunting_Gold_128", 0, 109, "HUD_MED_UNLKED"); - ``` - - - - - p0 = 1 or 0 - crashes my game... - this is for sending invites to network players - jobs/apartment/ect... - return notification handle - int invite(Player player) - { - networkHandleMgr netHandle; - networkClanMgr clan; - char *playerName = GET_PLAYER_NAME(player); - _SET_NOTIFICATION_TEXT_ENTRY("STRING"); - _SET_NOTIFACTION_COLOR_NEXT(1); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(playerName); - NETWORK_HANDLE_FROM_PLAYER(player, &netHandle.netHandle, 13); - if (NETWORK_CLAN_PLAYER_IS_ACTIVE(&netHandle.netHandle)) - { - NETWORK_CLAN_PLAYER_GET_DESC(&clan.clanHandle, 35, &netHandle.netHandle); - _DRAW_NOTIFICATION_CLAN_INVITE(0, _0x54E79E9C(&clan.clanHandle, 35), &clan.unk17, clan.isLeader, 0, 0, clan.clanHandle, playerName, 0, 0, 0); - } - } - - - - - returns a notification handle, prints out a notification like below: - type range: 0 - if you set type to 1, button accepts "~INPUT_SOMETHING~" - example: - UI::_0xDD6CB2CCE7C2735C(1, "~INPUT_TALK~", "Who you trynna get crazy with, ese? Don't you know I'm LOCO?!"); - - imgur.com/UPy0Ial - Examples from the scripts: - l_D1[1 -- [[1]] ]=UI::_DD6CB2CCE7C2735C(1,"~INPUT_REPLAY_START_STOP_RECORDING~",""); - l_D1[2 -- [[1]] ]=UI::_DD6CB2CCE7C2735C(1,"~INPUT_SAVE_REPLAY_CLIP~",""); - l_D1[1 -- [[1]] ]=UI::_DD6CB2CCE7C2735C(1,"~INPUT_REPLAY_START_STOP_RECORDING~",""); - l_D1[2 -- [[1]] ]=UI::_DD6CB2CCE7C2735C(1,"~INPUT_REPLAY_START_STOP_RECORDING_SECONDARY~",""); - - - - - returns a notification handle, prints out a notification like below: - type range: 0 - if you set type to 1, image goes from 0 - 39 - Xbox you can add text to - example: - UI::_0xD202B92CBF1D816F(1, 20, "Who you trynna get crazy with, ese? Don't you know I'm LOCO?!"); - - - - - what the heck does this one do differently from the one above? - - - - - It's called after 0xD3A10FC7FD8D98CD and 0xF1CEA8A4198D8E9A - p0 was always "CELEBRATION_WINNER" - - - - - shadowId: each call to this native in the same tick should have a different value passed to this parameter, if two or more calls have the same values, only the first one will render its shadow properly - - - - - ADD_E* (most likely ADD_ENTITY_*) - All found occurrences in b678d: - pastebin.com/ceu67jz8 - Still not sure on the functionality of this native but it has something to do with dynamic mixer groups defined in dynamix.dat15 - - - - - Shows the crosshair even if it wouldn't show normally. Only works for one frame, so make sure to call it repeatedly. - - - - - More info: http://gtaforums.com/topic/836367-adding-props-to-interiors/ - - - - - Pops and calls the Scaleform movie on the stack. Returns data from the function (not sure if this is a string). - - - - - This does NOT get called per frame. Call it once to show, then use UI::_REMOVE_LOADING_PROMPT to remove it - Changes the the above native's (UI::_SET_LOADING_PROMPT_TEXT_ENTRY) spinning circle type. - Types: - enum LoadingPromptTypes - { - LOADING_PROMPT_LEFT, - LOADING_PROMPT_LEFT_2, - LOADING_PROMPT_LEFT_3, - SAVE_PROMPT_LEFT, - LOADING_PROMPT_RIGHT, - }; - - - - - Used with _BEGIN_TEXT_COMMAND_WIDTH. - In scripts, p0 is false when used in combination with "ESMINDOLLA" or "ESDOLLA", otherwise it's true. - Returns from range 0 to 1. - - - - - p0 is always false in scripts. - - - - - Only found twice in decompiled scripts. Something to do with an entity/object? - On a side note, it's very interesting how the hash for this native is "DEADC0DE" - this is usually used as padding for initializing a buffer of some sort. I wonder if this native is actually "dead"? - "carmod_shop.ysc", line 9520: - if (ENTITY::DOES_ENTITY_EXIST(l_324._f6)) { - GRAPHICS::_0xDEADC0DEDEADC0DE(l_324._f6); - } - "fm_mission_controller.ysc", line 189641: - if (GAMEPLAY::IS_BIT_SET(g_1870E1._f7B64[a_0 -- [[104]] ]._f25, 28)) { - GRAPHICS::_0xDEADC0DEDEADC0DE(NETWORK::NET_TO_OBJ(l_4064._f26A._f87[a_0 -- [[1]] ])); - if (!GAMEPLAY::IS_BIT_SET(g_1870E1._f7B64[a_0 -- [[104]] ]._f25, 31)) { - if (!ENTITY::IS_ENTITY_DEAD(v_7)) { - AUDIO::PLAY_SOUND_FROM_ENTITY(-1, "EMP_Vehicle_Hum", v_7, "DLC_HEIST_BIOLAB_DELIVER_EMP_SOUNDS", 0, 0); - GAMEPLAY::SET_BIT(&g_1870E1._f7B64[a_0 -- [[104]] ]._f25, 31); - } - } - } - Console Hash: 0xC12AC47A - ---------- - It's most likely named UPDATE_* (like UPDATE_ENTITY_SHIT_OR_SOMETHING). - - - - - Will change world AABB so that given point will be inside of the world limits. - Example: - You want world limits to be -9000<X<10000 -11000<Y<12000 and leave Z limits as is. - You should call this function two times: - _EXPAND_WORLD_LIMITS(-9000.0,-11000.0,30.0) - _EXPAND_WORLD_LIMITS(10000.0,12000.0,30.0) - Appears only 3 times in the scripts, more specifically in michael1.ysc - Console hash: 0x64ddb07d - - - This can be used to prevent dying if you are "out of the world" - - - - - GTA Online character creation - - - - - milestoneId: - 0 = "percentcomplete" - 1 = "storycomplete" - 2 = "vehicles" - 3 = "properties" - 4 = "psych" - 5 = "mapreveal" - 6 = "prologue" - - - - - if value is set to true, and ambient siren sound will be played. - ------------------------------------------------------------------------- - Appears to enable/disable an audio flag. - - - - - Exits the game and downloads a fresh social club update on next restart. - - - - - This native sets the audio of the specified vehicle to audioName (p1). - Use the audioNameHash found in vehicles.meta - Example: - _FORCE_VEHICLE_ENGINE_SOUND(veh, "ADDER"); - The selected vehicle will now have the audio of the Adder. - FORCE_VEHICLE_??? - - - - - World to relative screen coords - this world to screen will keep the text on screen. it will keep it in the screen pos. good for a deer hunting mod - - Was named _GET_SCREEN_COORD_FROM_WORLD_COORD, but this conflicts with 0x34E82F05DF2974F5 - As that hash actually matches GET_SCREEN_COORD_FROM_WORLD_COORD that one supercedes and this one was renamed - to _GET_2D_COORD_FROM_3D_COORD - - - - - p0 = int (?) - Dr. Underscore (1/6/18): - This gets the progression of an achievement. Returns 0 if the achievement cannot be progressed. - - - - - Returns current screen resolution. - - - - - native only found once in appinternet.c4 - same thing as this but does not need websiteID - Any _0xE3B05614DCE1D014(Any p0) // 0xE3B05614DCE1D014 0xD217EE7E - returns current websitePageID - - - - - Gets the amount of bombs that this vehicle has. As far as I know, this does _not_ impact vehicle weapons or the ammo of those weapons in any way, it is just a way to keep track of the amount of bombs in a specific plane. - - In decompiled scripts this is used to check if the vehicle has enough bombs before a bomb can be dropped (bombs are dropped by using [`_SHOOT_SINGLE_BULLET_BETWEEN_COORDS_WITH_EXTRA_PARAMS`](#_0xBFE5756E7407064A)). - - Use [`_SET_AIRCRAFT_BOMB_COUNT`](#_0xF4B2ED59DEB5D774) to set the amount of bombs on that vehicle. - - - - - Similar to [`_GET_AIRCRAFT_BOMB_COUNT`](#_0xEA12BD130D7569A1), this gets the amount of countermeasures that are present on this vehicle. - - Use [`_SET_AIRCRAFT_COUNTERMEASURE_COUNT`](#_0x9BDA23BF666F0855) to set the current amount. - - - - - Returns the current AI BLIP for the specified ped - - - - - Console Hash: 0x8B5E3E3D = GET_ANIM_DURATION - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Console Hash: 0xE97A4F5E - - - - - Gets the position of the cargobob hook, in world coords. - - - - - Return the mission id of a job. - - - - - if (UI::_2309595AD6145265() == ${fe_menu_version_empty_no_background}) - Seems to get the current frontend menu - - - - - Gets the aggressiveness factor of the ocean waves. - - - - - american = 0 - french = 1 - german = 2 - italian =3 - spanish = 4 - portuguese = 5 - polish = 6 - russian = 7 - korean = 8 - chinesetraditional = 9 - japanese = 10 - mexican = 11 - chinesesimplified = 12 - - - - - Returns the handle for the notification currently displayed on the screen. - - - - - Takes the specified time and writes it to the structure specified in the second argument. - struct date_time - { - alignas(8) int year; - alignas(8) int month; - alignas(8) int day; - alignas(8) int hour; - alignas(8) int minute; - alignas(8) int second; - }; - - - - - Gets a destructible object's handle - Example: - OBJECT::_B48FCED898292E52(-809.9619750976562, 170.919, 75.7406997680664, 3.0, "des_tvsmash"); - All found arguments for p4 starts with "des_" like "DES_FIB_Floor" and "des_shipsink". - - - - - Get a destrictible object's state. - Substract 1 to get the real state. - See _SET_DES_OBJECT_STATE to see the different states - For example, if the object just spawned (state 2), the native will return 3. - - - - - console hash: 0xE8C0C629 - - - - - Gets the heading of the entity physics in degrees, which tends to be more accurate than just "GET_ENTITY_HEADING". This can be clearly seen while, for example, ragdolling a ped/player. - NOTE: The name and description of this native are based on independent research. If you find this native to be more suitable under a different name and/or described differently, please feel free to do so. - - - - - See [`GetTimecycleModifierIndex`](#_0xFDF3D97C674AFB66) for use, works the same just for the secondary timecycle modifier. - - - - - Type equals 0 for male non-dlc, 1 for female non-dlc, 2 for male dlc, and 3 for female dlc. - Used when calling SET_PED_HEAD_BLEND_DATA. - - - - - Gets the gameplay camera's far clipping plane. - - - - - Gets the gameplay camera's far depth of field distance. - - - - - Gets the gameplay camera's near depth of field distance. - - - - - p0 seems to consistently be 2 across scripts - Function is called faily often by CAM::CREATE_CAM_WITH_PARAMS - - - - - it returns a reference to an empty string, the same empty string that's used by 1687 internal gta functions. if it was used in a script (and i cannot find an instance of it being used), it would be as the source for a StringCopy or somesuch. - - - - - only documented to be continued... - - - - - Input: Haircolor index, value between 0 and 63 (inclusive). - Output: RGB values for the haircolor specified in the input. - - This is used with the hair color swatches scaleform. - - Use [`_0x013E5CFC38CD5387`](#_0x013E5CFC38CD5387) to get the makeup colors. - - - - - Max 1000. - At -100 both helicopter rotors will stall. - - - - - Max 1000. - At 0 the main rotor will stall. - - - - - Max 1000. - At 0 the tail rotor will stall. - - - - - MulleDK19: Gets the ID of the next active thread. - First call _BEGIN_ENUMERATE_THREADS (0xDADFADA5A20143A8). - Any subsequent call to this function will then return the ID of the next active thread. - If the function returns 0, the end of the enumeration has been reached. - ----------------------------------------------------------------------- - Here's an example: - std::vector<int> vecCurrentThreads; - void update_current_threads_list() - { - vecCurrentThreads.clear(); - _BEGIN_ENUMERATING_THREADS(); - int id = _GET_ID_OF_NEXT_THREAD_IN_ENUMERATION(); - while (id != 0) - { - id = _GET_ID_OF_NEXT_THREAD_IN_ENUMERATION(); - vecCurrentThreads.push_back(id); - } - } - - - - - Dr. Underscore (1/6/18): - Works exactly like IS_PROJECTILE_TYPE_IN_AREA, but it puts the position of the projectile in the vector. - p8 is probably ownedByPlayer, but not known for sure. (see IS_PROJECTILE_IN_AREA for info) - Unsure of the hash name, could someone confirm this? - - - - - p0 = VEHICLE_NODE_ID - Returns true when the node is Offroad. Alleys, some dirt roads, and carparks return true. - Normal roads where plenty of Peds spawn will return false - - - - - Gets a string literal from a label name. - - - - - gets the length of a null terminated string, without checking unicode encodings - - - - - Input: Makeup color index, value between 0 and 63 (inclusive). - Output: RGB values for the makeup color specified in the input. - - This is used with the makeup color swatches scaleform. - - Use [`_0x4852FC386E2E1BB5`](#_0x4852FC386E2E1BB5) to get the hair colors. - - - - - This is the "actual" GET_MAXIMUM_NUMBER_OF_PHOTOS native. Always returns 96. - - - - - The reversed code looks like this (Sasuke78200) - // - char g_szScriptName[64]; - char* _0xBE7ACD89(int a_iThreadID) - { - scrThread* l_pThread; - // Get the script thread - l_pThread = GetThreadByID(a_iThreadID); - if(l_pThread == 0 || l_pThread->m_iThreadState == 2) - { - strncpy(g_szScriptName, "", 64); - } - else - { - strncpy(g_szScriptName, l_pThread->m_szScriptName, 64); - } - return g_szScriptName; - } - - - - - Needs more research. Gets the stat name of a masked bool? - p4 - Usually "_NGPSTAT_BOOL" or "_NGTATPSTAT_BOOL". There may be more that I missed. - - - - - Needs more research. Gets the stat name of a masked int? - p4 - Usually one of the following (there may be more that I missed): - -----> "_APAPSTAT_INT" - -----> "_LRPSTAT_INT" - -----> "_NGPSTAT_INT" - -----> "_MP_APAPSTAT_INT" - -----> "_MP_LRPSTAT_INT" - - - - - Gets the number of instances of the specified script is currently running. - Actually returns numInstances - 1. - if (scriptPtr) - v3 = GetNumberOfInstancesOfScript(scriptPtr) - 1; - return v3; - - - - - only documented to be continued... - - - - - Returns number of possible values of the componentId argument of GET_FORCED_COMPONENT. - - - - - Used for freemode (online) characters. - - - - - Used with freemode (online) characters. - - - - - Type equals 0 for male non-dlc, 1 for female non-dlc, 2 for male dlc, and 3 for female dlc. - - - - - character is 0 for Michael, 1 for Franklin, 2 for Trevor, 3 for freemode male, and 4 for freemode female. - componentId is between 0 and 11 and corresponds to the usual component slots. - p1 could be the outfit number; unsure. - p2 is usually -1; unknown function. - p3 appears to be a boolean flag; unknown function. - p4 is usually -1; unknown function. - - - - - Online version is defined here: update\update.rpf\common\data\version.txt - Example: - [ONLINE_VERSION_NUMBER] - 1.33 - _GET_ONLINE_VERSION() will return "1.33" - Belongs in NETWORK - - - - - The pointer is to a padded struct that matches the arguments to SET_PED_HEAD_BLEND_DATA(...). There are 4 bytes of padding after each field. - (Edit) Console Hash: 0x44E1680C - pass this struct in the second parameter - typedef struct - { - int shapeFirst, shapeSecond, shapeThird; - int skinFirst, skinSecond, skinThird; - float shapeMix, skinMix, thirdMix; - } headBlendData; - - - - - Likely a char, if that overlay is not set, e.i. "None" option, returns 255; - - - - - Use [`SetPedIlluminatedClothingGlowIntensity`](#_0x4E90D746056E273D) to set the illuminated clothing glow intensity for a specific ped. - - - - - Returns a handle to the first entity within the a circle spawned inside the 2 points from a radius. It could return a ped or an entity, but the scripts expect a ped, but still check if it's a ped. - - - - - Quick disassembly and test seems to indicate that this native gets the Ped currently using the specified door. - - - - - returns pickup hash. - - - - - only documented to be continued... - Dr. Underscore (1/6/18): - Exactly like _GET_PROJECTILE_NEAR_PED_COORDS (_0xDFB4138EEFED7B81), but it gives us the Entity that was found aswell. - p6 is (most likely) ownedByPlayer. (see IS_PROJECTILE_IN_AREA for info) - - - - - From a quick disassembly I can say that this has something to do with weapons. - Added params according to what I could see in IDA. - Dr. Underscore (1/6/18): - Returns if any projectiles of projHash type are in a radius around this ped. If true, projPos is filled with the position of that entity. - This native was only ever used with projectiles, but may not be limited to. - p4 isn't an Entity*, it's actually a Vector3*, which outputs the position of the found entity. - p5 is (most likely) ownedByPlayer. (see IS_PROJECTILE_IN_AREA for info) - - - - - outfit = a structure passing though it - see GET_SHOP_PED_QUERY_OUTFIT - slot - outfit slot - item - hold 3 ints in a struct, you can use Vector3 structure - GET_SHOP_PED_??? - - - - - Returns the room hash key from the current gameplay cam. - - - - - Return the root content id of a job. - - - - - Get a rope's length. Can be modified with ROPE_FORCE_LENGTH - - - - - Returns whether the specified screen effect is active. - See the effects list in _START_SCREEN_EFFECT - Example and list of screen FX: www.pastebin.com/dafBAjs0 - - - - - Calculates the effective X/Y fractions when applying the values set by `SET_SCRIPT_GFX_ALIGN` and - `SET_SCRIPT_GFX_ALIGN_PARAMS`. - - - - - behaves exactly the same way as GET_SHAPE_TEST_RESULT except it has one extra parameter (_materialHash). - Quick disassembly seems to indicate that the unknown is a hash. EDIT: Seems to be the hash of the hit material or surface type. - found a materialFX.dat list of them but not sure if it has to do with this native yet. - materials (full list): pastebin.com/gyHjsYBK - - - - - p0 = VEHICLE_NODE_ID - Returns false for nodes that aren't used for GPS routes. - Example: - Nodes in Fort Zancudo and LSIA are false - - - - - Character types: - - ``` - 0 = Michael, - 1 = Franklin, - 2 = Trevor, - 3 = MPMale, - 4 = MPFemale - ``` - - ```csharp - enum TattooZoneData - { - ZONE_TORSO = 0, - ZONE_HEAD = 1, - ZONE_LEFT_ARM = 2, - ZONE_RIGHT_ARM = 3, - ZONE_LEFT_LEG = 4, - ZONE_RIGHT_LEG = 5, - ZONE_UNKNOWN = 6, - ZONE_NONE = 7, - }; - - struct outComponent - { - // these vars are suffixed with 4 bytes of padding each. - uint unk; - int unk2; - uint tattooCollectionHash; - uint tattooNameHash; - int unk3; - TattooZoneData zoneId; - uint unk4; - uint unk5; - // maybe more, not sure exactly, decompiled scripts are very vague around this part. - } - ``` - - - - - Returns the zoneID for the overlay if it is a member of collection. - enum TattooZoneData - { - ZONE_TORSO = 0, - ZONE_HEAD = 1, - ZONE_LEFT_ARM = 2, - ZONE_RIGHT_ARM = 3, - ZONE_LEFT_LEG = 4, - ZONE_RIGHT_LEG = 5, - ZONE_UNKNOWN = 6, - ZONE_NONE = 7, - }; - - - - - This get's the height of the FONT and not the total text. You need to get the number of lines your text uses, and get the height of a newline (I'm using a smaller value) to get the total text height. - - - - - Determines how many lines the text string will use when drawn on screen. - Must use _BEGIN_TEXT_COMMAND_LINE_COUNT for setting up - - - - - Returns a substring of a specified length starting at a specified position. - Example: - // Get "STRING" text from "MY_STRING" - subStr = UI::_GET_TEXT_SUBSTRING("MY_STRING", 3, 6); - - - - - Returns a substring of a specified length starting at a specified position. The result is guaranteed not to exceed the specified max length. - NOTE: The 'maxLength' parameter might actually be the size of the buffer that is returned. More research is needed. -CL69 - Example: - // Condensed example of how Rockstar uses this function - strLen = UI::GET_LENGTH_OF_LITERAL_STRING(GAMEPLAY::GET_ONSCREEN_KEYBOARD_RESULT()); - subStr = UI::_GET_TEXT_SUBSTRING_SAFE(GAMEPLAY::GET_ONSCREEN_KEYBOARD_RESULT(), 0, strLen, 63); - -- - "fm_race_creator.ysc", line 85115: - // parameters modified for clarity - BOOL sub_8e5aa(char *text, int length) { - for (i = 0; i <= (length - 2); i += 1) { - if (!GAMEPLAY::ARE_STRINGS_EQUAL(UI::_GET_TEXT_SUBSTRING_SAFE(text, i, i + 1, 1), " ")) { - return FALSE; - } - } - return TRUE; - } - - - - - Returns a substring that is between two specified positions. The length of the string will be calculated using (endPosition - startPosition). - Example: - // Get "STRING" text from "MY_STRING" - subStr = UI::_GET_TEXT_SUBSTRING_SLICE("MY_STRING", 3, 9); - // Overflows are possibly replaced with underscores (needs verification) - subStr = UI::_GET_TEXT_SUBSTRING_SLICE("MY_STRING", 3, 10); // "STRING_"? - - - - - Return the content modifier id (the tunables context if you want) of a specific content. - It takes the content hash (which is the mission id hash), and return the content modifier id, used as the tunables context. - The mission id can be found on the Social club, for example, 'socialclub.rockstargames.com/games/gtav/jobs/job/A8M6Bz8MLEC5xngvDCzGwA' - 'A8M6Bz8MLEC5xngvDCzGwA' is the mission id, so the game hash this and use it as the parameter for this native. - - - - - Returns the user's defined langauge as ID - english: 12 - french = 7 - german = 22 - italian = 21 - japanese = 9 - korean = 17 - portuguese = 16 - spanish = 10 - russian = 25 - - - - - console hash: 0xC589CD7D = GET_UTC_TIME - gets current UTC time - - - - - Get the vehicle attached to the object/entity? May also just convert it to a vehicle, but I'm not sure. - - - - - 0 min 100 max - starts at 100 - Seams to have health zones - Front of vehicle when damaged goes from 100-50 and stops at 50. - Rear can be damaged from 100-0 - Only tested with two cars. - any idea how this differs from the first one? - -- - May return the vehicle health on a scale of 0.0 - 100.0 (needs to be confirmed) - example: - v_F = ENTITY::GET_ENTITY_MODEL(v_3); - if (((v_F == ${tanker}) || (v_F == ${armytanker})) || (v_F == ${tanker2})) { - if (VEHICLE::_GET_VEHICLE_BODY_HEALTH_2(v_3) <= 1.0) { - NETWORK::NETWORK_EXPLODE_VEHICLE(v_3, 1, 1, -1); - } - } - - - - - GET_VEHICLE_CLASS_MAX_* - - - - - Returns the headlight color index from the vehicle. Value between 0, 12. - Use [\_SET_VEHICLE_HEADLIGHTS_COLOUR](#_0xE41033B25D003A07) to set the headlights color for the vehicle. - Must enable xenon headlights before it'll take affect. - - List of colors and ids: - - ``` - enum headlightColors { - Default = -1, - White = 0, - Blue = 1, - Electric_Blue = 2, - Mint_Green = 3, - Lime_Green = 4, - Yellow = 5, - Golden_Shower = 6, - Orange = 7, - Red = 8, - Pony_Pink = 9, - Hot_Pink = 10, - Purple = 11, - Blacklight = 12 - } - ``` - - - - - Seems to get the hash of the vehicle's currently installed horn? - - - - - A float indicating the percentage of the hover mode. 1.0 = in VTOL mode, 0.0 = in normal flying mode. - - - - - GET_VEHICLE_MODEL_* - 9.8 * thrust if air vehicle, else 0.38 + drive force? - For a full list, see here: pastebin.com/bJQeDqNd - - - - - GET_VEHICLE_MODEL_MAX_* - max braking if air vehicle, else max braking + 0.1 - ------------------- - For a full list, see here: pastebin.com/Cb9L1Cn0 - - - - - GET_VEHICLE_MODEL_* - Function pertains only to aviation vehicles. - For a full list, see here: pastebin.com/JwuGNp2K - - - - - Returns max speed (without mods) of the specified vehicle model in m/s. - For a full list, see here: pastebin.com/AUuHHK06 - GET_VEHICLE_MODEL_* - - - - - GET_VEHICLE_MODEL_* - called if the vehicle is a boat -- returns vecMoveResistanceX? - For a full list, see here: pastebin.com/Pyb2RhZ9 - - - - - Can be used for IS_DLC_VEHICLE_MOD and _0xC098810437312FFF - - - - - Gets the color of the neon lights of the specified vehicle. - See _SET_VEHICLE_NEON_LIGHTS_COLOUR (0x8E0A582209A62695) for more information - - - - - The resulting entity can be a Vehicle or Ped. - The native is stored between GET_VEHICLE_LIVERY_COUNT and GET_VEHICLE_MAX_BRAKING so the actual name is either GET_VEHICLE_L* or GET_VEHICLE_M* - ========================= - on a side note watching changes in memory this will only store your ped's entityPoolAddress if it's your personal vehicle. So seems to be related to personal vehicles or atleast a specific decor of it maybe. - - - - - Returns index of the current vehicle's rooftop livery. - A getter for [\_SET_VEHICLE_ROOF_LIVERY](#_0xA6D3A8750DC73270). - - - - - Returns a number of available rooftop liveries, or -1 if vehicle has no rooftop liveries available. - - - - - Gets the height of the vehicle's suspension. - The higher the value the lower the suspension. Each 0.002 corresponds with one more level lowered. - 0.000 is the stock suspension. - 0.008 is Ultra Suspension. - - - - - This native does not return damages of weapons from the melee and explosive group. - - - - - returns the weapon hash of pickup - - - - - changed any --> hash - progress_or_time --> percentWeather2, is not time but percent of the 2nd weather (0-1). - weatherType1 is same as GAMEPLAY::GET_PREV_WEATHER_TYPE_HASH_NAME() - and weatherType 2 GAMEPLAY::GET_NEXT_WEATHER_TYPE_HASH_NAME() - -QuantFC - - - - - Console Hash - - - - - This native appears on the cheat_controller script and tracks a combination of buttons, which may be used to toggle cheats in-game. Credits to ThreeSocks for the info. The hash contains the combination, while the "amount" represents the amount of buttons used in a combination. The following page can be used to make a button combination: gta5offset.com/ts/hash/ - INT_SCORES_SCORTED was a hash collision - - - - - Get inputted "Cheat code", for example: - while (TRUE) - { - if (GAMEPLAY::_557E43C447E700A8(${fugitive})) - { - // Do something. - } - SYSTEM::WAIT(0); - } - Calling this will also set the last saved string hash to zero. - - - - - Check to see if hud component Scaleform has loaded? - - - - - Pretty sure it's the real name (not 100% sure so I added the _ prefix); can someone else confirm it? - Only values used in the scripts are: - "heist_mp" - "heistmap_mp" - "instructional_buttons" - "heist_pre" - - - - - Console Hash - - - - - Once called each frame hides all above radar notifications. - - - - - This is the native that is used to hide the exterior of GTA Online apartment buildings when you are inside an apartment. - More info: http://gtaforums.com/topic/836301-hiding-gta-online-apartment-exteriors/ - - - - - draws circular marker at pos - -1 = none - 0 = red - 1 = green - 2 = blue - 3 = green larger - 4 = nothing - 5 = green small - - - - - if "flag" is true, the AI blip will always be displayed for the specified ped, if it has an AI blip - If "flag" is false, the AI blip will only be displayed when the player is in combat with the specified ped, if it has an AI blip - - - - - Seems to return true if the input is currently disabled. "_GET_LAST_INPUT_METHOD" didn't seem very accurate, but I've left the original description below. - -- - index usually 2 - returns true if the last input method was made with mouse + keyboard, false if it was made with a gamepad - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - I may be wrong with this one, but from the looks of the scripts, it sets keyboard related stuff as soon as this returns true. - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - Returns a bool if interior rendering is disabled, if yes, all "normal" rendered interiors are invisible - - - - - Only occurrence was false, in maintransition. - - - - - Gets whether or not NIGHTVISION is Active. - Note: When nightvision is actually active, this native will return TRUE! - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - Console Hash: 0xDD5D08A7 - - - - - Pickup hashes: pastebin.com/8EuSv2r1 - - - - - Returns true when the player is not able to control the cam i.e. when running a benchmark test, switching the player or viewing a cutscene. - Note: I am not 100% sure if the native actually checks if the cam control is disabled but it seems promising. - - - - - Dr. Underscore (1/6/18): - Checks if the projectile is in the radius around that point. - p6 is (most likely) ownedByPlayer. (see IS_PROJECTILE_IN_AREA for info) - - - - - Checks if you're recording, returns TRUE when you start recording (F1) or turn on action replay (F2) - mov al, cs:g_bIsRecordingGameplay // byte_141DD0CD0 in b944 - retn - - - - - if(NETWORK::_IS_ROCKSTAR_BANNED() == 0) means the player is rockstar banned - - - - - Returns whether or not SEETHROUGH is active. - - - - - if(_IS_SOCIALCLUB_BANNED() == 0) means the player is social club banned - - - - - Returns whether or not the text chat (MULTIPLAYER_CHAT Scaleform component) is active. - - - - - Checks if model is a boat, then checks for FLAG_IS_JETSKI. - @whoever named this _IS_THIS_MODEL_AN_EMERGENCY_BOAT: please do some tests before naming natives, thanks. - - - - - Appears to return true if the vehicle has any damage, including cosmetically. - - - - - Only ever used once in decompiled scripts: **am_pi_menu**: - Returns true if the engine is on fire, or if the vehicle engine health is &lt; 0 and it **has been** on fire. - - It sometimes doesn't return true when the vehicle engine has been on fire, and has since been fixed. I'm not really sure what the exact conditions are. - - This usually returns true even if there are no visible flames yet (engine health > 0). However if you monitor engine health you'll see that it starts decreasing as soon as this returns true. - - ``` - if (((ENTITY::DOES_ENTITY_EXIST(Global_1281959) && !ENTITY::IS_ENTITY_DEAD(Global_1281959, 0)) && func_1545(Global_1281959)) && !func_205(PLAYER::PLAYER_ID())) - { - if (VEHICLE::GET_VEHICLE_ENGINE_HEALTH(Global_1281959) > 0f && VEHICLE::GET_IS_VEHICLE_ENGINE_RUNNING(Global_1281959)) - { - bVar0 = true; - } - else - { - bVar0 = false; - } - if (VEHICLE::_0xEC69ADF931AAE0C3(Global_1281959)) // _IS_VEHICLE_ENGINE_ON_FIRE - { - bVar0 = false; - } - } - ``` - - - - - Returns whether or not the vehicle has a CVehicleStreamRequestGfx that's trying to load mods. - True if it isn't loading mods, false if it is. - - - - - indices: - 0 = Left - 1 = Right - 2 = Front - 3 = Back - - - - - Checks for FLAG_NO_RESPRAY - - - - - When I called this with what the script was doing, which was -190f for yaw pitch and roll, all my car did was jitter a little. I also tried 0 and 190f. I altered the p1 variable between TRUE and FALSE and didn't see a difference. - This might have something to do with the physbox of the vehicle, but I'm not sure. - - - - - Load interior - - - - - Loads "common:/data/missioncreatordata" data and sets some values. - - - - - This loads the GTA:O dlc map parts (high end garages, apartments). - Works in singleplayer. - In order to use GTA:O heist IPL's you have to call this native with the following params: _9BAE5AD2508DF078(1); - console hash: 0xC65586A9 - - - - - Loads specified video sequence into the TV Channel - TV_Channel ranges from 0-2 - VideoSequence can be any of the following: - "PL_STD_CNT" CNT Standard Channel - "PL_STD_WZL" Weazel Standard Channel - "PL_LO_CNT" - "PL_LO_WZL" - "PL_SP_WORKOUT" - "PL_SP_INV" - Jay Norris Assassination Mission Fail - "PL_SP_INV_EXP" - Jay Norris Assassination Mission Success - "PL_LO_RS" - Righteous Slaughter Ad - "PL_LO_RS_CUTSCENE" - Righteous Slaughter Cut-scene - "PL_SP_PLSH1_INTRO" - "PL_LES1_FAME_OR_SHAME" - "PL_STD_WZL_FOS_EP2" - "PL_MP_WEAZEL" - Weazel Logo on loop - "PL_MP_CCTV" - Generic CCTV loop - Restart - 0=video sequence continues as normal - 1=sequence restarts from beginning every time that channel is selected - - - - - Loads a User-Generated Content (UGC) file. These files can be found in "[GTA5]\data\ugc" and "[GTA5]\common\patch\ugc". They seem to follow a naming convention, most likely of "[name]_[part].ugc". See example below for usage. - Returns whether or not the file was successfully loaded. - Example: - DATAFILE::_LOAD_UGC_FILE("RockstarPlaylists") // loads "rockstarplaylists_00.ugc" - - - - - Not present in retail version of the game, actual definiton seems to be - _LOG_DEBUG_INFO(char* category, char* debugText); - - - - - is this like setting is as no longer needed? - - - - - For move the finger of player, the value of int goes 1 at 5. - - - - - Console Hash - 0x18867C61 = NETWORK_ACCESS_TUNABLE_BOOL_HASH - - - - - Returns a default value if the tunable don't exist. - Console Hash - - - - - Console Hash - 0x3972551F = NETWORK_ACCESS_TUNABLE_FLOAT_HASH - - - - - Console Hash - 0xB2E83B75 = NETWORK_ACCESS_TUNABLE_INT_HASH - - - - - Console hash: 0xCD69BEA1 - - - - - Returns whether the Rockstar game services are available or not: - SCLB_NO_ROS = The Rockstar game services are unavailable right now. Please try again later. - ros.rockstargames.com - - - - - **This native does absolutely nothing, just a nullsub** - - - - - this function is toggle when people report you and you get the auto mute message - - - - - console hash: 0x3624F054 - - - - - Only documented... - - - - - netScene to scene - - - - - console hash: 0x99F58A07 - Sadly I thought this copied their tattoos, but it just seems to copy their 'blend data'. E.G. skin tone/color, fat/skinny face, etc. - - - - - Console Hash - 0x25915CB9 = NETWORK_DOES_TUNABLE_EXIST_HASH - - - - - Console Hash - 0xA14CC95D = NETWORK_EARN_FROM_AMBIENT_JOB - Example for p1: "AM_DISTRACT_COPS" - - - - - For the money bags that drop a max of $40,000. Often called 40k bags. - Most likely NETWORK_EARN_FROM_ROB*** - MONEY_EARN_JOBS - - - - - Console Hash - 0xAB6BD72F = NETWORK_EARN_FROM_DAILY_OBJECTIVE - - - - - MONEY_EARN_PICKED_UP - - - - - Console Hash - 0xBEE23713 = NETWORK_EARN_FROM_JOB_BONUS - - - - - Console Hash: Probably 0xAA7EA3BD - - - - - Seems to always return 0, but it's used in quite a few loops. - for (num3 = 0; num3 < NETWORK::0xCCD8C02D(); num3++) - { - if (NETWORK::NETWORK_IS_PARTICIPANT_ACTIVE(PLAYER::0x98F3B274(num3)) != 0) - { - var num5 = NETWORK::NETWORK_GET_PLAYER_INDEX(PLAYER::0x98F3B274(num3)); - - - - - Returns the coordinates of another player. - - Does not work if you enter your own player id as p0 (will return `(0.0, 0.0, 0.0)` in that case). - - - - - Same as GAMEPLAY::GET_RANDOM_INT_IN_RANGE - - - - - console hash: 0x5AC9F04D = network_hash_from_gamer_handle - - - - - console hash: 0xF8D7AF3B = NETWORK_HASH_FROM_PLAYER_HANDLE - - - - - console hash: 0xD14D9C07 - - - - - NETWORK_ARE_* - - - - - p1 = 6 - NETWORK_CRC_HASH_CHECK? - - - - - Same as _IS_TEXT_CHAT_ACTIVE, except it does not check if the text chat HUD component is initialized, and therefore may crash. - - - - - Console Hash: 0x6C344AE3 - "NETWORK_OVERRIDE_SEND_RESTRICTIONS" is right, but dev-c put a _ by default. - This is used alongside the native, - 'NETWORK_OVERRIDE_RECEIVE_RESTRICTIONS'. Read it's description for more info. - - - - - fuck this function in particular. - It's similar to unk_0x9A176B6E but this ones got a different stat hash: - 0xBC707798 - - - - - NETWORK_PLAYER_??? - - - - - NETWORK_REQUEST_CLOUD_BACKGROUND_SCRIPTS - Correct console hash is 0x98EFB921 - Start the downloading of BG_NG.RPF from R* Cloud which contains hotfix. - The console hash given is incorrect for Xbox360 that is. I searched in IDA and found 0x98EFB921 which came right after 0x155465EE. Then I searched it in TU27 X360 scripts and found it was the same results same scripts as the PC Hash for this which is obviously correct. I found the correct one as I noticed TU27 X360 script search pulled no results for 0x29532731 when it should have. - As you can see here you will see the 155465EE first then the correct hash for this native. Then the current 29532731 one which could be the native below or the native below's hash could be the has below the 29532731 - puu.sh/nhdQI/e0ca5567b4.png - 0x98EFB921 is the correct console hash for "_DOWNLOAD_BG_SCRIPT_RPF". 0x29532731 is "_HAS_BG_SCRIPT_BEEN_DOWNLOADED" - The code: - seg001:00000000003EFF4C uunk_0x29532731: # CODE XREF: sub_158C8AC+14p - seg001:00000000003EFF4C lis r3, dword_1CFB100@ha - seg001:00000000003EFF50 lwz r3, dword_1CFB100@l(r3) - seg001:00000000003EFF54 ld r3, 0x1020(r3) - seg001:00000000003EFF58 extsw r3, r3 - seg001:00000000003EFF5C blr - seg001:00000000003EFF5C # End of function uunk_0x29532731 - - - - - p4 and p5 are always 0 in scripts - - - - - p0 = 0 or 4 - - - - - String "NETWORK_SEND_PRESENCE_TRANSITION_INVITE" is contained in the function in ida so this one is correct. - - - - - BLR the shit. - - - - - if set to true other network players can't see it - if set to false other network player can see it - ========================================= - ^^ I attempted this by grabbing an object with GET_ENTITY_PLAYER_IS_FREE_AIMING_AT and setting this naive no matter the toggle he could still see it. - pc or last gen? - ^^ last-gen - - - - - This is called shortly after setting Network ID Migration off it seems. Does anyone know the point of this? - Example scenario, - If I were to request and gain control of an online players vehicle then their vehicle's Network ID and turn migration off. I wouldn't need to ever request control again as they wouldn't gain control back. - - scenario over - - So what would be the point hereafter of setting it 'dynamic'? - - - - - **This native does absolutely nothing, just a nullsub** - - ``` - NETWORK_SET_RICH_PRESENCE but for PlayStation? (On PC it's a nullsub) - ``` - - - - - p0 is pointer to a script array - - - - - p0 => unk3::_network_shop_basket_apply_server_data(Global_2590199[iParam0 -- [[76]] ], &uVar6); => script array - - - - - No longer works if you hook it as a stealth money method - Modes------------------ - 1: Wallet - 2: Bank - 4: Bank - 8: Wallet - Only difference I noticed. - - - - - Belongs in UNK3, non-hashed version of 0x247F0F73A182EA0B - - - - - ex.: - v_15 = sub_10cc8(VEHICLE::GET_VEHICLE_WHEEL_TYPE(a_2)); - if (!MOBILE::_247F0F73A182EA0B(v_15)) { - return 1; - } - Belongs in UNK3, hashed version of 0xBD4D7EAF8A30F637 - - - - - bool is always true in game scripts - - - - - Will cancel the transaction - - - - - Console Hash 0xF4287778 = NETWORK_SPENT_REQUEST_HEIST - - - - - used in atm_trigger script. - usage: - int iVar0;STATS::STAT_GET_INT(GAMEPLAY::GET_HASH_KEY("mpply_last_mp_char"), &iVar0, -1); - UNK3::_NETWORK_TRANSFER_WALLET_TO_BANK(iVar0, amount); - used to deposit money into bank from wallet, shows up in transaction log. - - - - - used in atm_trigger script. - usage: - int iVar0; STATS::STAT_GET_INT(GAMEPLAY::GET_HASH_KEY("mpply_last_mp_char"), &iVar0, -1); - UNK3::_NETWORK_TRANSFER_BANK_TO_WALLET(iVar0, amount); - used to withdraw money from bank into wallet, shows up in transaction log. - - - - - Only one occurence in the scripts: - auto sub_cb43(auto a_0, auto a_1) { - if (g_2594CB._f1) { - if (NETWORK::_855BC38818F6F684()) { - NETWORK::_ABD5E88B8A2D3DB2(&a_0._fB93); - g_2594CB._f14 -- [[{13}]] = a_0._fB93; - g_2594CB._f4 -- [["64"]] = a_1; - return 1; - } - } - return 0; - } - other: - looks like it passes a player in the paramater - Contains string "NETWORK_VOICE_CONNECT_TO_PLAYER" in ida - - - - - Sets the value of the specified variable to 0. - Always returns true. - bool _NULLIFY(void* variable, int unused) - { - *variable = NULL; - return true; - } - - - - - Types: - 1 = Boolean - 2 = Integer - 3 = Float - 4 = String - 5 = Vector3 - 6 = Object - 7 = Array - - - - - [23.03.2017 19:08] by ins1de : - "_IS_PED_RELOADING" is totally a wrong name... - This native actually disables the reloading animation and script for the specified ped. Native renamed. - - - - - Plays ambient speech. See also _0x444180DB. - ped: The ped to play the ambient speech. - speechName: Name of the speech to play, eg. "GENERIC_HI". - speechParam: Can be one of the following: - SPEECH_PARAMS_STANDARD - SPEECH_PARAMS_ALLOW_REPEAT - SPEECH_PARAMS_BEAT - SPEECH_PARAMS_FORCE - SPEECH_PARAMS_FORCE_FRONTEND - SPEECH_PARAMS_FORCE_NO_REPEAT_FRONTEND - SPEECH_PARAMS_FORCE_NORMAL - SPEECH_PARAMS_FORCE_NORMAL_CLEAR - SPEECH_PARAMS_FORCE_NORMAL_CRITICAL - SPEECH_PARAMS_FORCE_SHOUTED - SPEECH_PARAMS_FORCE_SHOUTED_CLEAR - SPEECH_PARAMS_FORCE_SHOUTED_CRITICAL - SPEECH_PARAMS_FORCE_PRELOAD_ONLY - SPEECH_PARAMS_MEGAPHONE - SPEECH_PARAMS_HELI - SPEECH_PARAMS_FORCE_MEGAPHONE - SPEECH_PARAMS_FORCE_HELI - SPEECH_PARAMS_INTERRUPT - SPEECH_PARAMS_INTERRUPT_SHOUTED - SPEECH_PARAMS_INTERRUPT_SHOUTED_CLEAR - SPEECH_PARAMS_INTERRUPT_SHOUTED_CRITICAL - SPEECH_PARAMS_INTERRUPT_NO_FORCE - SPEECH_PARAMS_INTERRUPT_FRONTEND - SPEECH_PARAMS_INTERRUPT_NO_FORCE_FRONTEND - SPEECH_PARAMS_ADD_BLIP - SPEECH_PARAMS_ADD_BLIP_ALLOW_REPEAT - SPEECH_PARAMS_ADD_BLIP_FORCE - SPEECH_PARAMS_ADD_BLIP_SHOUTED - SPEECH_PARAMS_ADD_BLIP_SHOUTED_FORCE - SPEECH_PARAMS_ADD_BLIP_INTERRUPT - SPEECH_PARAMS_ADD_BLIP_INTERRUPT_FORCE - SPEECH_PARAMS_FORCE_PRELOAD_ONLY_SHOUTED - SPEECH_PARAMS_FORCE_PRELOAD_ONLY_SHOUTED_CLEAR - SPEECH_PARAMS_FORCE_PRELOAD_ONLY_SHOUTED_CRITICAL - SPEECH_PARAMS_SHOUTED - SPEECH_PARAMS_SHOUTED_CLEAR - SPEECH_PARAMS_SHOUTED_CRITICAL - Note: A list of Name and Parameters can be found here pastebin.com/1GZS5dCL - Full list of speeches and voices names by some spanish shitbag: gist.github.com/alexguirre/0af600eb3d4c91ad4f900120a63b8992 - - - - - Plays ambient speech. See also _0x5C57B85D. - See _PLAY_AMBIENT_SPEECH1 for parameter specifications. - Full list of speeches and voices names: gist.github.com/alexguirre/0af600eb3d4c91ad4f900120a63b8992 - - - - - This is the same as _PLAY_AMBIENT_SPEECH1 and _PLAY_AMBIENT_SPEECH2 but it will allow you to play a speech file from a specific voice file. It works on players and all peds, even animals. - EX (C#): - GTA.Native.Function.Call(Hash._0x3523634255FC3318, Game.Player.Character, "GENERIC_INSULT_HIGH", "s_m_y_sheriff_01_white_full_01", "SPEECH_PARAMS_FORCE_SHOUTED", 0); - The first param is the ped you want to play it on, the second is the speech name, the third is the voice name, the fourth is the speech param, and the last param is usually always 0. - Full list of speeches and voices names: gist.github.com/alexguirre/0af600eb3d4c91ad4f900120a63b8992 - - - - - This method is the equivalent to PUSH_SCALEFORM_MOVIE_FUNCTION_PARAMETER_STRING when using it to add a new button (like "INSTRUCTIONAL_BUTTONS"). - When switching with a controller, the icons update and become the controller's icons. - - - - - GRAPHICS::\_0x77FE3402004CD1B0(HUD::\_GET_LABEL_TEXT("YACHT_GSY")); - GRAPHICS::\_0x77FE3402004CD1B0(PLAYER::GET_PLAYER_NAME(PLAYER::PLAYER_ID())); - - Both \_0xBA7148484BD90365 / \_0x77FE3402004CD1B0 works, but \_0x77FE3402004CD1B0 is usually used for "name" (organisation, players..). - - - - - p0 is the handle returned from _0xFDBF4CDBC07E1706 - - - - - Removes the loading prompt at the bottom right of the screen, created by the UI::_SHOW_LOADING_PROMPT native. - - - - - assetName = For example "core" - console hash: 0xC44762A1 - - - - - Removes a notification instantly instead of waiting for it to disappear - - - - - Used to remove a speedzone. - This is the speed zone native. - Example usage C#: - uint speedZone = Function.Call<uint>((Hash) 0x2CE544C68FB812A0, Game.PlayerPed.Position.X, Game.PlayerPed.Position.Y, Game.PlayerPed.Position.Z, 100.0f, 0.0f, false); - bool speedZoneClosed = Function.Call<bool>((Hash) 0x1033371FC8E842A7, speedZone); - (Thanks to alexguirre for his help!) - - - - - Appears to remove stealth kill action from memory. - ------------------------------------ - I agree with the above statement. - p1 is unknown, my best guess would be if false it marks the stealth kill for immediate deletion, or if true marks it for deletion later. - - - - - This native makes the gameplay camera zoom into first person/third person with a special effect. - For example, if you were first person in a mission and after the cutscene ends, the camera would then zoom into the first person camera view. - if (CAM::GET_FOLLOW_PED_CAM_VIEW_MODE() != 4) - CAM::_C819F3CBB62BF692(1, 0, 3, 0) - This makes the camera zoom in to first person. - -------------------------------------------- - 1st Param Options: 0 or 1 (Changes quit often, toggle?) - 2nd Param Options: 0, 0f, 1f, 3.8f, 10f, 20f (Mostly 0) - 3rd Param Options: 3, 2, 1 (Mostly 3); - Note for the 2nd param 10f (offroad_race.c) and 3rd param 20f (range_modern.c) are the only times those 2 high floats are called. - Note for the 3rd param 2 is only ever set in (franklin0.c), but it also sets it as 3. (0, 0, 3) ||(0, 0f, 2) || (0, 0, 3) - - - - - Example: - CUTSCENE::_0xC23DE0E91C30B58C("JOSH_1_INT_CONCAT", 13, 8); - Cutscene list: pastebin.com/Bbj7ANpQ - - - - - http://gtaforums.com/topic/717612-v-scriptnative-documentation-and-research/?p=1068285912 - - - - - REQUEST_* - Something to do with interiors that have been loaded. - STREAMING::_8A7A40100EDFEC58(l_13BC, "V_FIB01_cur_elev"); - STREAMING::_8A7A40100EDFEC58(l_13BC, "limbo"); - STREAMING::_8A7A40100EDFEC58(l_13BB, "V_Office_gnd_lifts"); - STREAMING::_8A7A40100EDFEC58(l_13BB, "limbo"); - STREAMING::_8A7A40100EDFEC58(l_13BC, "v_fib01_jan_elev"); - STREAMING::_8A7A40100EDFEC58(l_13BC, "limbo"); - - - - - Similar to REQUEST_SCALEFORM_MOVIE, but seems to be some kind of "interactive" scaleform movie? - These seem to be the only scaleforms ever requested by this native: - "breaking_news" - "desktop_pc" - "ECG_MONITOR" - "Hacking_PC" - "TEETH_PULLING" - Note: Unless this hash is out-of-order, this native is next-gen only. - - - - - used for the remote vehicle explode thing with phones - - - - - Sets the waves intensity back to original (1.0 in most cases). - - - - - Sets (almost, not sure) all Rockstar Editor values (bIsRecording etc) to 0. - - - - - Resets the extra timecycle modifier strength normally set with [`SetExtraTimecycleModifierStrength`](#_0x2C328AF17210F009) - - - - - Sets the localplayer playerinfo state back to playing (State 0) - States are: - -1: "Invalid" - 0: "Playing" - 1: "Died" - 2: "Arrested" - 3: "Failed Mission" - 4: "Left Game" - 5: "Respawn" - 6: "In MP Cutscene" - - - - - console hash: 0x9E8D8B72 - Resets the effect of _SET_PARTICLE_FX_ASSET_OLD_TO_NEW - - - - - There seem to be 26 flags - - - - - It returns two lol - li r3, 2 - blr - thats all it does. - mov dword ptr [rax], 2 - Заебись функционал - - - - - Returns the status of a _SC_START_CHECK_STRING_TASK task. - Possible return values: - 0: not a profane string - 1: a profane string - 3: server error occurred - - - - - Returns the nickname of the logged-in Rockstar Social Club account. - - - - - Returns whether or not a task started with _SC_START_CHECK_STRING_TASK has completed. - - - - - Starts a task to check an entered string for profanity on the ROS/Social Club services. - See also: 1753344C770358AE, 82E4A58BABC15AE7. - - - - - This seems to be related to Steam achievements. - p0 and p1 are int (?) - ------ - Can't say anything about the Steam version but it is hardcoded to always return false in the retail version. - Dr. Underscore (1/6/18): - This has to do with achievement progression. If this achievement has progression, it will set the progression of it to this value. - Only tested on un-achieved achievements, Steamworks probably just rejects it if it has already been achieved. - Steamworks also seems to not like reversing achievement progression. - - - - - Sets the amount of bombs that this vehicle has. As far as I know, this does _not_ impact vehicle weapons or the ammo of those weapons in any way, it is just a way to keep track of the amount of bombs in a specific plane. - - In decompiled scripts this is used to deduct from or add to the count whenever bombs are dropped or purchased/restocked. - - Use [`_GET_AIRCRAFT_BOMB_COUNT`](#_0xEA12BD130D7569A1) to get the amount of bombs on that vehicle. - - - - - Similar to [`_SET_AIRCRAFT_BOMB_COUNT`](#_0xF4B2ED59DEB5D774), this sets the amount of countermeasures that are present on this vehicle. - - Use [`_GET_AIRCRAFT_COUNTERMEASURE_COUNT`](#_0xF846AA63DF56B804) to get the current amount. - - - - - Previously named _0x97C65887D4B37FA9. - Sets the maximum view distance for the AI BIP - - - - - Set a ped's AI blip type: - 1 - Yellow blip with no name - 2 - - - - - Only works on bikes, both X and Y work in the -1 - 1 range. - X forces the bike to turn left or right (-1, 1) - Y forces the bike to lean to the left or to the right (-1, 1) - Example with X -1/Y 1 - http://i.imgur.com/TgIuAPJ.jpg - - - - - Makes a blip go small when off the minimap. - - - - - This native has its name defined inside its codE - - - - - This native has a name defined inside its code - - - - - This native has a name defined inside its code - - - - - This native has a name defined inside its code - - - - - if p0 is 0, effect is cancelled - if p0 is 1, effect zooms in, gradually tilts cam clockwise apx 30 degrees, wobbles slowly. Motion blur is active until cancelled. - if p0 is 2, effect immediately tilts cam clockwise apx 30 degrees, begins to wobble slowly, then gradually tilts cam back to normal. The wobbling will continue until the effect is cancelled. - - - - - For now, I changed the last one from bool to int. - According to scripts specifically 'fm_mission_controller' this last parameter is 'false/0' when its called after the create rope native above is called for the magnet and 'true/1' after the create rope native above is called for the hook. - - - - - Console Hash: 0xF57066DA - Won't attract or magnetize to any helicopters or planes of course, but that's common sense. - - - - - console hash 0xCC3CF97D - - - - - Something to do with "high speed bump severity"? - if (!sub_87a46("SET_CAR_HIGH_SPEED_BUMP_SEVERITY_MULTIPLIER")) { - VEHICLE::_84FD40F56075E816(0.0); - sub_8795b("SET_CAR_HIGH_SPEED_BUMP_SEVERITY_MULTIPLIER", 1); - } - - - - - Sets the checkpoint icon color. - - - - - p0 - Scale? Looks to be a normalized value (0.0 - 1.0) - offroad_races.c4, line ~67407: - a_3._f7 = GRAPHICS::CREATE_CHECKPOINT(v_D, v_A, a_4, a_7, v_E, v_F, v_10, sub_62b2(v_A, 220, 255), 0); - UI::GET_HUD_COLOUR(134, &v_E, &v_F, &v_10, &v_11); - GRAPHICS::_SET_CHECKPOINT_ICON_RGBA(a_3._f7, v_E, v_F, v_10, sub_62b2(v_A, 70, 210)); - GRAPHICS::_4B5B4DA5D79F1943(a_3._f7, 0.95); - GRAPHICS::SET_CHECKPOINT_CYLINDER_HEIGHT(a_3._f7, 4.0, 4.0, 100.0); - - - - - This is for simulating player input. - amount is a float value from 0 - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - Sets a value that determines how aggressive the ocean waves will be. Values of 2.0 or more make for very aggressive waves like you see during a thunderstorm. - Works only ~200 meters around the player. - - - - - Renamed to SET_CURSOR_LOCATION (I previously named it _SET_CURSOR_POSTION) which is the correct name as far as I can tell. - - - - - Changes the mouse cursor's sprite. - public enum CursorType - { - None = 0, - Normal = 1, - TransparentNormal = 2, - PreGrab = 3, - Grab = 4, - MiddleFinger = 5, - LeftArrow = 6, - RightArrow = 7, - UpArrow = 8, - DownArrow = 9, - HorizontalExpand = 10, - Add = 11, - Remove = 12, - } - - - - - Specifies a custom respawn position to be used in conjunction with _SET_NEXT_RESPAWN_TO_CUSTOM - - - - - MulleDK19: This starts moving the VTOL engines towards the specified angle ratio (0f-1f). - - - - - Defines the state of a destructible object. - Use the "0xB48FCED898292E52" native to find an object's handle with its name / coords - State 2 == object just spawned - State 4 == Beginning of the animation - State 6 == Start animation - State 9 == End of the animation - - - - - If toggle is true, hides special ability bar / character name in the pause menu - If toggle is false, shows special ability bar / character name in the pause menu - - - - - Sets the acceleration limit of a door. - How fast it can open, or the inverse hinge resistance. - A limit of 0 seems to lock doors. - p2 is always 0, p3 is always 1. - - - - - Sets the ajar angle of a door. - Ranges from -1.0 to 1.0, and 0.0 is closed / default. - p2 is always 0, p3 is always 1. - - - - - console hash: 0xBD0D4831 - internally it calls the same function as 'SET_ENTITY_COLLISION'. but uses a hard coded parameter that only activates when p1 is set to true - ============================= - Weirdly enough in the 3 scripts it's used in on PC, - - director_mode (2 hits) - - re_duel (2 hits) - - re_seaplane (1 hit) - Most of the time in the hits its actually used after the normal SET_ENTITY_COLLISION. Example from re_seaplane, - Local_49[iParam0 -- [[6]] ] = create_ped(26, iVar4, vVar0, fVar3, 1, true); - set_entity_collision(Local_49[iParam0 -- [[6]] ], iVar42, 0); - _0x9EBC85ED0FFFE51C(Local_49[iParam0 -- [[6]] ], !iVar66, 0); (_SET_ENTITY_COLLISION_2) - iVar42 being true so the normal collision native is true, 0 - iVar66 being false so !false so it's true, 0 - Gonna ignore the 'vars' for the create_ped no point in defining them. - - - - - does the same as SET_ENTITY_COORDS. - Console Hash: 0x749B282E - - - - - what does this native do? - bool IsEntitySomething(Entity entity) - { - auto addr = getScriptHandleBaseAddress(entity); - printf("addr: 0x%X \n", addr); - if (addr) - { - DWORD flag = *(DWORD *)(addr + 0x48D); - printf("flag: 0x%X \n", flag); - return ((flag & (1 << 3)) != 0) || ((flag & (1 << 30)) != 0); - } - return false; - } - wot ? - - - - - Sets a secondary timecycle modifier. - - - - - The same as [`SetTimecycleModifierStrength`](#_0x82E7FFCD5B2326B3) but for the secondary tiemcycle modifier. - - - - - When this is set to ON, shadows only draw as you get nearer. - When OFF, they draw from a further distance. (((BUT))) f*ck up nearer shadows quality. - - - - - Sets the near clipping plane of the first person camera. - - - - - Similar to _CLAMP_GAMEPLAY_CAM_PITCH except this is specifically for the FP camera, and it only lets you clamp the pitch within the normal range. - - - - - Override the area where the camera will render the terrain. - p3, p4 and p5 are usually set to 0.0 - - - - - Forces footstep tracks on all surfaces. - - - - - Forces vehicle trails on all surfaces. - - - - - Does nothing - - - - - value between 0.0 and 1.0 - - - - - HUD colors and their values: pastebin.com/d9aHPbXN - - - - - HUD colors and their values: pastebin.com/d9aHPbXN - -------------------------------------------------- - makes hudColorIndex2 color into hudColorIndex color - - - - - If toggle is true, the map is shown in full screen - If toggle is false, the map is shown in normal mode - - - - - Argument must be 0.0f or above 38.0f, or it will be ignored. - - - - - If true, the entire map will be revealed. - - - - - Similar to SET_MISSION_NAME but this one can take any string (must not be greater than 600 chars, should not exceed 64 chars), not just text labels. - p0 must be true. - - - - - Set's the string displayed when flag 3 (AudioSpeaker) active. - - - - - Displays a bunch of icons above the players name, and level, and their name twice - - - - - not tested.... - - - - - Original put name, - _SET_NETWORK_VEHICLE_NON_CONTACT - However changed to 'object' as the instances where this is called in scripts both freemode and golf it's only used on objects after the objects are called OBJ_TO_NET p_parachute_s (freemode) prop_golf_ball (golf). Tho the script search was done via TU27 Xbox360 ones. - Got my hopes up whoever put this as vehicle. I was hoping it was what R* used in non-contact races. - - - - - Sets the next spawn location to the position supplied to _SET_CUSTOM_RESPAWN_POSITION. - - - - - Toggles the North Yankton map - - - - - From the decompiled scripts: - UI::_92F0DA1E27DB96DC(6); - UI::_92F0DA1E27DB96DC(184); - UI::_92F0DA1E27DB96DC(190); - sets background color for the next notification - 6 = red - 184 = green - 190 = yellow - Here is a list of some colors that can be used: gyazo.com/68bd384455fceb0a85a8729e48216e15 - this seems to set the alpha to 255 automatically, if you have a work around let me know - - - - - sets font color for the next notification - - - - - sets color for notification flash - - - - - Sets some extra options for a notification. It adds an image (or icon type) and sets a notification title (sender) and subtitle (subject). - - Texture dictionary and texture name parameters are usually the same exact value. - - Example result: - - ![](https://i.imgur.com/LviutDl.png) - - Old description with list of possible icons and texture names: - - ```text - List of picNames: pastebin.com/XdpJVbHz - flash is a bool for fading in. - iconTypes: - 1 : Chat Box - 2 : Email - 3 : Add Friend Request - 4 : Nothing - 5 : Nothing - 6 : Nothing - 7 : Right Jumping Arrow - 8 : RP Icon - 9 : $ Icon - "sender" is the very top header. This can be any old string. - "subject" is the header under the sender. - ``` - - - - - List of picNames: pastebin.com/XdpJVbHz - - - - - Needs more research. - Only one type of usage in the scripts: - UI::_C6F580E4C94926AC("CHAR_ACTING_UP", "CHAR_ACTING_UP", 0, 0, "DI_FEED_CHAR", a_0); - - - - - NOTE: 'duration' is a multiplier, so 1.0 is normal, 2.0 is twice as long (very slow), and 0.5 is half as long. - Example, only occurrence in the scripts: - v_8 = UI::_1E6611149DB3DB6B("CHAR_SOCIAL_CLUB", "CHAR_SOCIAL_CLUB", 0, 0, &v_9, "", a_5); - - - - - List of picNames pastebin.com/XdpJVbHz - flash is a bool for fading in. - iconTypes: - 1 : Chat Box - 2 : Email - 3 : Add Friend Request - 4 : Nothing - 5 : Nothing - 6 : Nothing - 7 : Right Jumping Arrow - 8 : RP Icon - 9 : $ Icon - "sender" is the very top header. This can be any old string. - "subject" is the header under the sender. - "duration" is a multiplier, so 1.0 is normal, 2.0 is twice as long (very slow), and 0.5 is half as long. - "clanTag" shows a crew tag in the "sender" header, after the text. You need to use 3 underscores as padding. Maximum length of this field seems to be 7. (e.g. "MK" becomes "___MK", "ACE" becomes "___ACE", etc.) - - - - - List of picNames: pastebin.com/XdpJVbHz - flash is a bool for fading in. - iconTypes: - 1 : Chat Box - 2 : Email - 3 : Add Friend Request - 4 : Nothing - 5 : Nothing - 6 : Nothing - 7 : Right Jumping Arrow - 8 : RP Icon - 9 : $ Icon - "sender" is the very top header. This can be any old string. - "subject" is the header under the sender. - "duration" is a multiplier, so 1.0 is normal, 2.0 is twice as long (very slow), and 0.5 is half as long. - "clanTag" shows a crew tag in the "sender" header, after the text. You need to use 3 underscores as padding. Maximum length of this field seems to be 7. (e.g. "MK" becomes "___MK", "ACE" becomes "___ACE", etc.) - iconType2 is a mirror of iconType. It shows in the "subject" line, right under the original iconType. - int IconNotification(char *text, char *text2, char *Subject) - { - _SET_NOTIFICATION_TEXT_ENTRY("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - _SET_NOTIFICATION_MESSAGE_CLAN_TAG_2("CHAR_SOCIAL_CLUB", "CHAR_SOCIAL_CLUB", 1, 7, text2, Subject, 1.0f, "__EXAMPLE", 7); - return _DRAW_NOTIFICATION(1, 1); - } - - - - - Declares the entry type of a notification, for example "STRING". - int ShowNotification(char *text) - { - _SET_NOTIFICATION_TEXT_ENTRY("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - return _DRAW_NOTIFICATION(1, 1); - } - - - - - Seems to set the colour of the prop. Haven't really tested it on other props. - Only appears in am_mp_nightclub.c for the nightclub dancefloor. - - Not sure what p1 does, seems to only ever be '1' in scripts. - - - - - ` - i don't know what this does - ```<pre> - void __fastcall OBJECT___0x77F33F2CCF64B3AA_START(scrNativeCallContext *args) - { - bool p2; // bl@1 - CObject *pObject; // rax@1 - scrNativeCallContextArgStruct *pArgs; // rax@1 - pArgs = args->pArgs; - p2 = pArgs->a2.BOOL != 0; - pObject = getAddressOfObject(pArgs->a1.Object); - if ( pObject ) - { - pObject->field_425 &= 0xDFu; // 1101 1111 (clear bit 6) - pObject->field_425 |= 32 * p2; // bit 6 = p2 - } - } - // sfink - // note to AB: please set "white-space: pre" in css - ```` - - ``` - ## Parameters - * **object**: - * **p1**: - - - - - enum ObjectPaintVariants - { - Pacific = 0, - Azure = 1, - Nautical = 2, - Continental = 3, - Battleship = 4, - Intrepid = 5, - Uniform = 6, - Classico = 7, - Mediterranean = 8, - Command = 9, - Mariner = 10, - Ruby = 11, - Vintage = 12, - Pristine = 13, - Merchant = 14, - Voyager = 15 - }; - - - - - console hash: 0xC92719A7 - - - - - Previously named _0xD30C50DF888D58B5, this native turns on the AI blip on the specified ped. It also disappears automatically when the ped is too far or if the ped is dead. You don't need to control it with other natives. - See gtaforums.com/topic/884370-native-research-ai-blips for further information. - Note: Everything said at the bottom is only valid for persistant peds, as AI blips seem to behave differently for non-persistant peds. - • To create an AI blip, you must use UI::0xD30C50DF888D58B5() (_SET_PED_ENEMY_AI_BLIP). It has two arguments: "ped" which is the ped you want to AI blip to be linked to, and "showViewCones" which needs to be true for AI blips to appear. - • To check if a ped has an AI blip, you can use UI::DOES_PED_HAVE_AI_BLIP(Ped ped), which returns a simple bool. - • By default, AI blips never disappear. If you want them to disappear when you're at a certain distance from a ped, you can use UI::0x97C65887D4B37FA9(Ped ped, float distance) (_SET_AI_BLIP_MAX_DISTANCE) - • By default, the blip only appears when you're in combat with the specified ped. If you want it to be always displayed, you can use UI::x0C4BBF625CA98C4E() (_IS_AI_BLIP_ALWAYS_SHOWN). It also has two arguments: "ped", and a flag. If the flag is set to true, the blip will always be displayed. If it's set to false, the AI blip will have its default behaviour. - • By default, a view cone is displayed with the blip (basically a blue surface that represents the field of view of the ped, like in vanilla stealth missions). If you don't want it, you can disable it with UI::HIDE_SPECIAL_ABILITY_LOCKON_OPERATION(Ped ped, bool flag). If the flag is set to true, the view cone is displayed. If the flag is set to false, it is not. - • Finally, there's actually 3 types of AI blips: - 0 - the default, red, "enemy" blip - 1 - a weird, semi-transparent, nameless, yellow blip - 2 - the blue "friend" blip - You can change an AI blip's type with UI::0xE52B8E7F85D39A08(Ped ped, int type) (_SET_AI_BLIP_TYPE). - - - - - Applies an Item from a PedDecorationCollection to a ped. These include tattoos and shirt decals. - collection - PedDecorationCollection filename hash - overlay - Item name hash - Example: - Entry inside "mpbeach_overlays.xml" - - <Item> - <uvPos x="0.500000" y="0.500000" /> - <scale x="0.600000" y="0.500000" /> - <rotation value="0.000000" /> - <nameHash>FM_Hair_Fuzz</nameHash> - <txdHash>mp_hair_fuzz</txdHash> - <txtHash>mp_hair_fuzz</txtHash> - <zone>ZONE_HEAD</zone> - <type>TYPE_TATTOO</type> - <faction>FM</faction> - <garment>All</garment> - <gender>GENDER_DONTCARE</gender> - <award /> - <awardLevel /> - </Item> - Code: - PED::_0x5F5D1665E352A839(PLAYER::PLAYER_PED_ID(), GAMEPLAY::GET_HASH_KEY("mpbeach_overlays"), GAMEPLAY::GET_HASH_KEY("fm_hair_fuzz")) - - - - - Used for freemode (online) characters. - For some reason, the scripts use a rounded float for the index. - - - - - Sets the various freemode face features, e.g. nose length, chin shape. Scale ranges from -1.0 to 1.0. - Index can be 0 - Edit:---->Thanks to the first user. - Enum Face_Feature - Nose_Width - Nose_Peak_Hight - Nose_Peak_Lenght - Nose_Bone_High - Nose_Peak_Lowering - Nose_Bone_Twist - EyeBrown_High - EyeBrown_Forward - Cheeks_Bone_High - Cheeks_Bone_Width - Cheeks_Width - Eyes_Openning - Lips_Thickness - Jaw_Bone_Width 'Bone size to sides - Jaw_Bone_Back_Lenght 'Bone size to back - Chimp_Bone_Lowering 'Go Down - Chimp_Bone_Lenght 'Go forward - Chimp_Bone_Width - Chimp_Hole - Neck_Thikness - End Enum - Example in VB.Net - Public Shared Sub SET_PED_FACE_FEATURE(FreemodePed As Ped, Index As Face_Feature, Scale As Single) - Native.Function.Call(Native.Hash._SET_PED_FACE_FEATURE, FreemodePed, Index, Scale) - End Sub - - - - - Console Hash: 0x8CD3E487 - - - - - Used for freemode (online) characters. - - - - - Used for freemode (online) characters. - ColorType is 1 for eyebrows, beards, and chest hair; 2 for blush and lipstick; and 0 otherwise, though not called in those cases. - Called after SET_PED_HEAD_OVERLAY(). - - - - - This native sets the glow intensity of illuminated clothing items. - - This native does **NOT** need to be executed every tick. - This native is **NOT** synced with other connected players, you will have to set the opacity on the ped on all clients individually. - - Glow intensity is a value between `0.0` and `1.0`. - - In some older decompiled scripts this is known as `_SET_PED_REFLECTION_INTENSITY`. - Since there's no joaat hash for this, I find `_SET_PED_ILLUMINATED_CLOTHING_GLOW_INTENSITY` more descriptive than `_SET_PED_REFLECTION_INTENSITY`. - - Use [`GetPedIlluminatedClothingGlowIntensity`](#_0x1461B28A06717D68) to get the illuminated clothing glow intensity of a specific ped. - - Intensity: `1.0`: - ![](https://www.vespura.com/hi/i/2018-11-13_17-03_c2e23_229.png) - - Intensity: `0.0`: - ![](https://www.vespura.com/hi/i/2018-11-13_17-03_35c33_230.png) - - **Examples code result**: - ![](https://www.vespura.com/hi/i/2018-11-13_17-11_10199_232.gif) - - (Direct link if embed doesn't work: [here](https://www.vespura.com/hi/i/2018-11-13_17-11_10199_232.gif)) - - - - - Stops speech. - - - - - Works for both player and peds, but some flags don't seem to work for the player (1, for example) - 1 - Blocks ragdolling when shot. - 2 - Blocks ragdolling when hit by a vehicle. The ped still might play a falling animation. - 4 - Blocks ragdolling when set on fire. - ----------------------------------------------------------------------- - There seem to be 26 flags - - - - - Assigns some ambient voice to the ped. - - - - - Speech related. - - - - - if the bool "Toggle" is "true" so the phone is lean. - if the bool "Toggle" is "false" so the phone is not lean. - - - - - Sets the position of the arrow icon representing the player on both the minimap and world map. - Too bad this wouldn't work over the network (obviously not). Could spoof where we would be. - - - - - Displays cash change notifications on HUD. - - - - - Disables the radio station from the radio wheel. - Note: You cannot disable LSUR, WCTR and Blaine County Radio. - - List of known station names; - - ``` - RADIO_01_CLASS_ROCK - RADIO_02_POP - RADIO_03_HIPHOP_NEW - RADIO_04_PUNK - RADIO_05_TALK_01 - RADIO_06_COUNTRY - RADIO_07_DANCE_01 - RADIO_08_MEXICAN - RADIO_09_HIPHOP_OLD - RADIO_12_REGGAE - RADIO_13_JAZZ - RADIO_14_DANCE_02 - RADIO_15_MOTOWN - RADIO_20_THELAB - RADIO_16_SILVERLAKE - RADIO_17_FUNK - RADIO_18_90S_ROCK - RADIO_21_DLC_XM17 - RADIO_22_DLC_BATTLE_MIX1_RADIO - RADIO_19_USER - HIDDEN_RADIO_AMBIENT_TV - HIDDEN_RADIO_AMBIENT_TV_BRIGHT - HIDDEN_RADIO_01_CLASS_ROCK - HIDDEN_RADIO_ADVERTS - HIDDEN_RADIO_02_POP - HIDDEN_RADIO_03_HIPHOP_NEW - HIDDEN_RADIO_04_PUNK - HIDDEN_RADIO_06_COUNTRY - HIDDEN_RADIO_07_DANCE_01 - HIDDEN_RADIO_09_HIPHOP_OLD - HIDDEN_RADIO_12_REGGAE - HIDDEN_RADIO_15_MOTOWN - HIDDEN_RADIO_16_SILVERLAKE - RADIO_22_DLC_BATTLE_MIX1_CLUB - HIDDEN_RADIO_STRIP_CLUB - DLC_BATTLE_MIX1_CLUB_PRIV - HIDDEN_RADIO_BIKER_CLASSIC_ROCK - DLC_BATTLE_MIX2_CLUB_PRIV - HIDDEN_RADIO_BIKER_MODERN_ROCK - RADIO_23_DLC_BATTLE_MIX2_CLUB - RADIO_25_DLC_BATTLE_MIX4_CLUB - DLC_BATTLE_MIX3_CLUB_PRIV - RADIO_26_DLC_BATTLE_CLUB_WARMUP - HIDDEN_RADIO_BIKER_PUNK - RADIO_24_DLC_BATTLE_MIX3_CLUB - DLC_BATTLE_MIX4_CLUB_PRIV - HIDDEN_RADIO_BIKER_HIP_HOP - ``` - - - - - Controls rain, rain sounds and the creation of puddles. - - With an `intensity` higher than `0.5f`, only the creation of puddles gets faster, rain and rain sound won't increase after that. - - With an `intensity` of `0.0f` rain and rain sounds are disabled and there won't be any new puddles. - - To use the rain intensity of the current weather, call this native with `-1f` as `intensity`. - - - - - SET_*_MULTIPLIER_THIS_FRAME - - - - - Judging from the effect, this is some sort of vehicle density multiplier. - - - - - Sets the position of the audio event to the entity's position for one frame(?) - if (l_8C3 == 0) { - sub_27fd1(0, -1, 1); - if (PED::IS_SYNCHRONIZED_SCENE_RUNNING(l_87D)) { - AUDIO::STOP_SYNCHRONIZED_AUDIO_EVENT(l_87D); - } - if (sub_7dd(l_A00)) { - AUDIO::_950A154B8DAB6185("PAP2_IG1_POPPYSEX", l_A00); - } - sub_91c("TK************ SETTING SYNCH SCENE AUDIO POSITION THIS FRAME ************TK"); - l_8C3 = 1; - } - -- - Found in the b617d scripts, duplicates removed: - AUDIO::_950A154B8DAB6185("CAR_5_IG_6", l_7FE[1 -- [[1]] ]); - AUDIO::_950A154B8DAB6185("EX03_TRAIN_BIKE_LAND", PLAYER::PLAYER_PED_ID()); - AUDIO::_950A154B8DAB6185("FBI_2_MCS_1_LeadIn", l_40[2 -- [[1]] ]); - AUDIO::_950A154B8DAB6185("FIN_C2_MCS_1", l_24C[0 -- [[1]] ]); - AUDIO::_950A154B8DAB6185("MNT_DNC", l_5F); - AUDIO::_950A154B8DAB6185("PAP2_IG1_POPPYSEX", l_A00); - - - - - Examples: - AI::_B0A6CFD2C69C1088(PLAYER::PLAYER_PED_ID(), "isFirstPerson", 0); - AI::_B0A6CFD2C69C1088(PLAYER::PLAYER_PED_ID(), "isFirstPerson", 1); - AI::_B0A6CFD2C69C1088(PLAYER::PLAYER_PED_ID(), "isBlocked", sub_179027()); - - - - - p0 - PLAYER::PLAYER_PED_ID(); - p1 - "Phase", "Wobble", "x_axis","y_axis","introphase","speed". - p2 - From what i can see it goes up to 1f (maybe). - -LcGamingHD - Example: AI::_D5BB4025AE449A4E(PLAYER::PLAYER_PED_ID(), "Phase", 0.5); - - - - - Sets an unknown boolean value in the text chat. - - - - - Sets the near clipping plane of the third person aim camera. - - - - - Sets how much the crane on the tow truck is raised, where 0.0 is fully lowered and 1.0 is fully raised. - - - - - Sets an unknown flag used by CScene in determining which entities from CMapData scene nodes to draw, similar to 9BAE5AD2508DF078. - Documented by NTAuthority (http://fivem.net/). - - - - - Keeps Vehicle Doors/Hood/Trunk from breaking off - - - - - Vehicle power multiplier. - Does not have to be looped each frame. Can be set once. - Values lower than 1f don't work. - Note: If the value is set with GET_RANDOM_FLOAT_IN_RANGE, the vehicle will have an absurdly high ammount of power, and will become almost undrivable for the player or NPCs. The range doesn't seem to matter. - An high value like 10000000000f will visually remove the wheels that apply the power (front wheels for FWD, rear wheels for RWD), but the power multiplier will still apply, and the wheels still work. - ------ - value is a percentage bump which affects directly the parameter known as fInitialDriveForce in handling.meta. For example: - VEHICLE::_SET_VEHICLE_ENGINE_POWER_MULTIPLIER(myVehicle, 30.0) - will have this effect: DriveForce *= 1.3 - - - - - <1.0 - Decreased torque - =1.0 - Default torque - >1.0 - Increased torque - Negative values will cause the vehicle to go backwards instead of forwards while accelerating. - value - is between 0.2 and 1.8 in the decompiled scripts. - This needs to be called every frame to take effect. - - - - - This native makes the vehicle stop immediately, as happens when we enter a MP garage. - . distance defines how far it will travel until stopping. Garage doors use 3.0. - . If killEngine is set to 1, you cannot resume driving the vehicle once it stops. This looks like is a bitmapped integer. - - - - - color is the paint index for the vehicle. - Paint index goes from 0 to 12. - Be aware that it only works on xenon lights. - - You can find the list of colors and ids here: [\_GET_VEHICLE_HEADLIGHTS_COLOUR](#_0x3DFF319A831E0CDB) - - - - - console hash: 0x71CDD52F - - - - - VEHICLE::SET_VEHICLE_ENGINE_ON is not enough to start jet engines when not inside the vehicle. But with this native set to true it works: youtu.be/OK0ps2fDpxs - i.imgur.com/7XA14pX.png - Certain planes got jet engines. - void VEHICLE::_SET_VEHICLE_JET_ENGINE_ON(scrNativeCallContext *args) - { - bool bOn; // bl@1 - CVehicle *pVehicle; // rax@1 - scrNativeCallContextArgStruct *pArgs; // rax@1 - pArgs = args->pArgs; - bOn = pArgs->a2.INT32 != 0; - pVehicle = getEntityAddressIfVehicle(pArgs->a1.INT32); - if ( pVehicle ) - { - pVehicle->bitmapBulletProofTires &= 0xFBu; - pVehicle->bitmapBulletProofTires |= 4 * bOn; - } - } // sfink - - - - - p1 can be either 0, 1 or 2. - Determines how vehicle lights behave when toggled. - 0 = Default (Lights can be toggled between off, normal and high beams) - 1 = Lights Disabled (Lights are fully disabled, cannot be toggled) - 2 = Always On (Lights can be toggled between normal and high beams) - - - - - This native sets a maximum speed for a vehicle. - - - - - Sets the color of the neon lights on the specified vehicle. - - RGB values and colour names taken from the decompiled scripts: - - | Colour | R | G | B | - | ------------- | :-: | :-: | :-: | - | White | 222 | 222 | 255 | - | Blue | 2 | 21 | 255 | - | Electric Blue | 3 | 83 | 255 | - | Mint Green | 0 | 255 | 140 | - | Lime Green | 94 | 255 | 1 | - | Yellow | 255 | 255 | 0 | - | Golden Shower | 255 | 150 | 0 | - | Orange | 255 | 62 | 0 | - | Red | 255 | 1 | 1 | - | Pony Pink | 255 | 50 | 100 | - | Hot Pink | 255 | 5 | 190 | - | Purple | 35 | 1 | 255 | - | Blacklight | 15 | 3 | 255 | - - - - - Sets the neon lights of the specified vehicle on/off. - Indices: - 0 = Left - 1 = Right - 2 = Front - 3 = Back - - - - - Used to set the tornado custom (convertible) rooftop livery. - - Livery value that works for tornado custom is between 0 and 9 from what i can tell. Maybe 0-8 even. - - Might work on other custom vehicles but im not sure what those might be, only confirmed it working with the tornado custom. - - - - - If set to TRUE, it seems to suppress door noises and doesn't allow the horn to be continuous. - - - - - Has something to do with trains. Always precedes SET_MISSION_TRAIN_AS_NO_LONGER_NEEDED. - ============================================ - May be true that it can be used with trains not sure, but not specifically for trains. Go find Xbox360 decompiled scripts and search for 'func_1333' in freemode.c it isn't used just for trains. Thanks for the info tho. - Btw, func_1333 ends up calling this func which uses this native, - void func_1338(int iParam0)//Position - { - ENTITY::FREEZE_ENTITY_POSITION(iParam0, true); - ENTITY::SET_ENTITY_COLLISION(iParam0, false, 0); - ENTITY::SET_ENTITY_INVINCIBLE(iParam0, true); - VEHICLE::_0xDF594D8D(iParam0, true); - } - - - - - According to decompiled scripts this should work with the `deluxo` and `oppressor2` vehicles. - I've only seen this work for `deluxo` though, can't figure out what it's supposed to do on `oppressor2`. - - For the deluxo: - - - Set `state` to `0.0`: Fully transform to a 'road' vehicle (non-hover mode). - - Set `state` to `1.0`: Fully transform to a 'flying' vehicle (hover mode). - - If you set it to something like 0.5, then something [weird happens](https://streamable.com/p6wmr), you end up in some 50% hover mode, 50% not hover mode. - - This doesn't need to be called every tick, just once and the vehicle will transform to that state at the usual transform speed. It'll just stop transforming when it reaches the state you provided. - - Once this native is used then players will just be able to hit the vehicle transform key to toggle the transformation cycle; it won't block users from using the key. - - - - - MulleDK19: This immediately sets the VTOL engines at the specified angle ratio (0f-1f). - - - - - You can only use text entries. No custom text. - - - - - Mixes two weather types. If percentWeather2 is set to 0.0f, then the weather will be entirely of weatherType1, if it is set to 1.0f it will be entirely of weatherType2. If it's set somewhere in between, there will be a mixture of weather behaviors. To test, try this in the RPH console, and change the float to different values between 0 and 1: - execute "NativeFunction.Natives.x578C752848ECFA0C(Game.GetHashKey(""RAIN""), Game.GetHashKey(""SMOG""), 0.50f); - Note that unlike most of the other weather natives, this native takes the hash of the weather name, not the plain string. These are the weather names and their hashes: - CLEAR 0x36A83D84 - EXTRASUNNY 0x97AA0A79 - CLOUDS 0x30FDAF5C - OVERCAST 0xBB898D2D - RAIN 0x54A69840 - CLEARING 0x6DB1A50D - THUNDER 0xB677829F - SMOG 0x10DCF4B5 - FOGGY 0xAE737644 - XMAS 0xAAC9C895 - SNOWLIGHT 0x23FB812B - BLIZZARD 0x27EA2814 - -- [[ OLD INVALID INFO BELOW ]] - Not tested. Based purely on disassembly. Instantly sets the weather to sourceWeather, then transitions to targetWeather over the specified transitionTime in seconds. - If an invalid hash is specified for sourceWeather, the current weather type will be used. - If an invalid hash is specified for targetWeather, the next weather type will be used. - If an invalid hash is specified for both sourceWeather and targetWeather, the function just changes the transition time of the current transition. - - - - - entity - entity to ignore - - - - - Since latest patches has 18 parameters. - Console Hash: 0xCCDC33CC - entity - entity to ignore - - - - - Shows the cursor on screen for the frame its called. - - - - - If toggle is true, the ped's head is shown in the pause menu - If toggle is false, the ped's head is not shown in the pause menu - - - - - Uses the `SOCIAL_CLUB2` scaleform. - - - - - probs one frame - - - - - Forces the weapon wheel to appear on screen. - - - - - Starts recording a replay. - If mode is 0, turns on action replay. - If mode is 1, starts recording. - If already recording a replay, does nothing. - - - - - Second parameter might be length. - - - - - Second parameter might be length. - - - - - playLength - is how long to play the effect for in milliseconds. If 0, it plays the default length - if loop is true, the effect wont stop until you call _STOP_SCREEN_EFFECT on it. (only loopable effects) - Example and list of screen FX: www.pastebin.com/dafBAjs0 - - - - - Performs the same type of trace as START_SHAPE_TEST_CAPSULE, but with some different hardcoded parameters. - - - - - Not sure how or why this differs from 0x7EE9F5D83DD4F90E, but it does. - This function casts a ray from Point1 to Point2 and returns it's ray handle. A simple ray cast will 'shoot' a line from point A to point B, and return whether or not the ray reached it's destination or if it hit anything and if it did hit anything, will return the handle of what it hit (entity handle) and coordinates of where the ray reached. - You can use _GET_RAYCAST_RESULT to get the result of the raycast - Entity is an entity to ignore, such as the player. - Flags are intersection bit flags. They tell the ray what to care about and what not to care about when casting. Passing -1 will intersect with everything, presumably. - Flags: - 1: Intersect with map - 2: Intersect with vehicles (used to be mission entities?) (includes train) - 4: Intersect with peds? (same as 8) - 8: Intersect with peds? (same as 4) - 16: Intersect with objects - 32: Water? - 64: Unknown - 128: Unknown - 256: Intersect with vegetation (plants, coral. trees not included) - NOTE: Raycasts that intersect with mission_entites (flag = 2) has limited range and will not register for far away entites. The range seems to be about 30 metres. - - - - - it returns a ShapeTest handle that can be used with GET_SHAPE_TEST_RESULT. - In its only usage in game scripts its called with flag set to 511, entity to player_ped_id and flag2 set to 7 - - - - - Does not take effect immediately, unfortunately. - profileSetting seems to only be 936, 937 and 938 in scripts - gtaforums.com/topic/799843-stats-profile-settings/ - - - - - Stops recording and discards the recorded clip. - - - - - Stops recording and saves the recorded clip. - - - - - This disable the recording feature and has to be called every frame. - - - - - Example and list of screen FX: www.pastebin.com/dafBAjs0 - - - - - This was previously named as "RESERVE_ENTITY_EXPLODES_ON_HIGH_EXPLOSION_COMBO" - which is obviously incorrect. - Seems to only appear in scripts used in Singleplayer. p1 ranges from 2 - 46. - I assume this switches the crime type - - - - - Use after using \_SWITCH_OUT_PLAYER to swoop the camera back down to the player's ped. - - - - - doesn't act normally when used on mount chilliad - - flags: - - 0: normal - 1: no transition - 255: switch IN - - switchType: 0 - 3 - - 0: 1 step towards ped - 1: 3 steps out from ped - 2: 1 step out from ped - 3: 1 step towards ped - - - - - Jenkins of this native is 0x4293601F. This is the actual name. - - - - - Example: - AI::_2D537BA194896636(PLAYER::PLAYER_PED_ID(), "arm_wrestling_sweep_paired_a_rev3", 0.0, 1, "mini@arm_wrestling", 0); - - - - - Example: - AI::_D5B35BEA41919ACB(PLAYER::PLAYER_PED_ID(), "minigame_tattoo_michael_parts", 324.13, 181.29, 102.6, 0.0, 0.0, 22.32, 2, 0, 0, 0, 0); - - - - - TODO: add hash from x360 - ^^^ - I got you, x360 Hash: 0x5A32D4B4. - Note: Whoever named this I just compared it and the hash matches, it was the correct name thanks. - Note: Alexander Blade, needs to fix this site or his code one, as when we do find the right name the server throws an error saying the name is already in use. AB is a legend coder, so I'm sure this is a simple fix for him. - - - - - Makes a ped in a vehicle follow an entity (ped, vehicle, etc.) - Driving Styles guide: gtaforums.com/topic/822314-guide-driving-styles/ - Console Hash: 0xA8B917D7 - AI::_TASK_VEHICLE_FOLLOW(l_244[3 -- [[1]] ], l_268[3 -- [[1]] ], l_278, 40.0, 262144, 10); - What is this known as in the decompiled scripts ffs. I need more examples. I've searched in all scripts for keywords suchas, - TASK_VEHICLE_FOLLOW, FC545A9F0626E3B6, 0xFC545A9F0626E3B6, all the parameters in the above example even just search the last few params '40.0, 262144, 10' and couldnt find where this native is used in scripts at all unless whoever decompiled the scripts gave it a whack a.. name. - - - - - Transforms the `stormberg` to it's "road vehicle" variant. If the vehicle is already in that state then the vehicle transformation audio will still play, but the vehicle won't change at all. - - - - - Transforms the `stormberg` to it's "water vehicle" variant. If the vehicle is already in that state then the vehicle transformation audio will still play, but the vehicle won't change at all. - - - - - time in ms to transition from fully blurred to normal - - - - - time in ms to transition to fully blurred screen - - - - - Returns the interior ID at the given coords, but only if the unknown variable is set to 0, otherwise it will return 0. - - - - - Formerly known as _LOWER_MAP_PROP_DENSITY and wrongly due to idiots as _ENABLE_MP_DLC_MAPS. - Sets the maximum prop density and changes a loading screen flag from 'loading story mode' to 'loading GTA Online'. Does not touch DLC map data at all. - In fact, I doubt this changes the flag whatsoever, that's the OTHER native idiots use together with this that does so, this one only causes a loading screen to show as it reloads map data. - ------------------------ - While you're going on your rant about other "idiots" can you please supply the name of the "other native" for us "idiots" who'd like to actually learn about loading IPL's? Thank, you. - - - - - From the b678d decompiled scripts: - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("FM_Mission_Controler"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_apartment_mp"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_indep_fireworks"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_mp_cig_plane"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_mp_creator"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_ornate_heist"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_prison_break_heist_station"); - - - - - Vehicle has landing gear? - - - - - parachuteModel = 230075693 - - - - - colorIndex = 0 - - - - - Deprecated name, use ADD_EXPLOSION_WITH_USER_VFX instead - - - - - Deprecated name, use ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME instead - - - - - Deprecated name, use ADD_TEXT_COMPONENT_SUBSTRING_TEXT_LABEL instead - - - - - Deprecated name, use ADD_TEXT_COMPONENT_SUBSTRING_WEBSITE instead - - - - - Deprecated name, use ARE_ALL_VEHICLE_WINDOWS_INTACT instead - - - - - Deprecated name, use ARE_ANY_VEHICLE_SEATS_FREE instead - - - - - Deprecated name, use BEGIN_SCALEFORM_MOVIE_METHOD instead - - - - - Deprecated name, use BEGIN_SCALEFORM_MOVIE_METHOD_ON_FRONTEND instead - - - - - Deprecated name, use BEGIN_SCALEFORM_MOVIE_METHOD_ON_FRONTEND instead - - - - - Deprecated name, use BEGIN_SCALEFORM_MOVIE_METHOD_ON_FRONTEND_HEADER instead - - - - - Deprecated name, use BEGIN_TEXT_COMMAND_DISPLAY_HELP instead - - - - - Deprecated name, use BEGIN_TEXT_COMMAND_DISPLAY_TEXT instead - - - - - Deprecated name, use BEGIN_TEXT_COMMAND_PRINT instead - - - - - Deprecated name, use BEGIN_TEXT_COMMAND_SCALEFORM_STRING instead - - - - - Deprecated name, use CALL_SCALEFORM_MOVIE_METHOD instead - - - - - Deprecated name, use CLEAR_PED_SCUBA_GEAR_VARIATION instead - - - - - Deprecated name, use CLONE_PED_TO_TARGET instead - - - - - Deprecated name, use CONTROL_LANDING_GEAR instead - - - - - Deprecated name, use CREATE_PICK_UP_ROPE_FOR_CARGOBOB instead - - - - - Deprecated name, use DOES_CARGOBOB_HAVE_PICK_UP_ROPE instead - - - - - Deprecated name, use ENABLE_CLOWN_BLOOD_VFX instead - - - - - Deprecated name, use END_SCALEFORM_MOVIE_METHOD instead - - - - - Deprecated name, use END_TEXT_COMMAND_DISPLAY_HELP instead - - - - - Deprecated name, use END_TEXT_COMMAND_DISPLAY_TEXT instead - - - - - Deprecated name, use END_TEXT_COMMAND_PRINT instead - - - - - Deprecated name, use END_TEXT_COMMAND_SCALEFORM_STRING instead - - - - - Deprecated name, use GET_HASH_OF_THIS_SCRIPT_NAME instead - - - - - Deprecated name, use GET_IS_LEFT_VEHICLE_HEADLIGHT_DAMAGED instead - - - - - Deprecated name, use GET_IS_RIGHT_VEHICLE_HEADLIGHT_DAMAGED instead - - - - - Deprecated name, use GET_IS_VEHICLE_ENGINE_RUNNING instead - - - - - Deprecated name, use GET_LANDING_GEAR_STATE instead - - - - - Deprecated name, use GET_NEXT_WEATHER_TYPE_HASH_NAME instead - - - - - Deprecated name, use GET_PED_AMMO_TYPE_FROM_WEAPON instead - - - - - Deprecated name, use GET_PED_SOURCE_OF_DEATH instead - - - - - Deprecated name, use GET_PLAYER_ADVANCED_MODIFIER_PRIVILEGES instead - - - - - Deprecated name, use GET_PREV_WEATHER_TYPE_HASH_NAME instead - - - - - Deprecated name, use GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT instead - - - - - Deprecated name, use GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_STRING instead - - - - - Deprecated name, use GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_STRING instead - - - - - Deprecated name, use GET_SCREEN_COORD_FROM_WORLD_COORD instead - - - - - Deprecated name, use GET_SHAPE_TEST_RESULT instead - - - - - Deprecated name, use GET_TIME_AS_STRING instead - - - - - Deprecated name, use GET_VEHICLE_ENVEFF_SCALE instead - - - - - Deprecated name, use GET_VEHICLE_HAS_KERS instead - - - - - Deprecated name, use GET_VEHICLE_MODEL_NUMBER_OF_SEATS instead - - - - - Deprecated name, use GET_VEHICLE_WHEEL_Y_ROTATION instead - - - - - Deprecated name, use HAS_SCRIPT_WITH_NAME_HASH_LOADED instead - - - - - Deprecated name, use IS_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_READY instead - - - - - Deprecated name, use IS_TIME_EQUAL_TO instead - - - - - Deprecated name, use IS_TIME_LESS_THAN instead - - - - - Deprecated name, use IS_TIME_MORE_THAN instead - - - - - Deprecated name, use IS_WARNING_MESSAGE_ACTIVE instead - - - - - Deprecated name, use NETWORK_PLAYER_GET_USERID instead - - - - - Deprecated name, use OPEN_BOMB_BAY_DOORS instead - - - - - Deprecated name, use PAUSE_MENU_ACTIVATE_CONTEXT instead - - - - - Deprecated name, use REMOVE_PICK_UP_ROPE_FOR_CARGOBOB instead - - - - - Deprecated name, use REQUEST_SCRIPT_WITH_NAME_HASH instead - - - - - Deprecated name, use RESET_SCRIPT_GFX_ALIGN instead - - - - - Deprecated name, use SCALEFORM_MOVIE_METHOD_ADD_PARAM_BOOL instead - - - - - Deprecated name, use SCALEFORM_MOVIE_METHOD_ADD_PARAM_BOOL instead - - - - - Deprecated name, use SCALEFORM_MOVIE_METHOD_ADD_PARAM_FLOAT instead - - - - - Deprecated name, use SCALEFORM_MOVIE_METHOD_ADD_PARAM_FLOAT instead - - - - - Deprecated name, use SCALEFORM_MOVIE_METHOD_ADD_PARAM_INT instead - - - - - Deprecated name, use SCALEFORM_MOVIE_METHOD_ADD_PARAM_INT instead - - - - - Deprecated name, use SET_ARTIFICIAL_LIGHTS_STATE instead - - - - - Deprecated name, use SET_BIGMAP_ACTIVE instead - - - - - Deprecated name, use SET_MP_GAMER_TAG_HEALTH_BAR_COLOUR instead - - - - - Deprecated name, use SET_SCRIPT_GFX_ALIGN instead - - - - - Deprecated name, use SET_SCRIPT_GFX_ALIGN instead - - - - - Deprecated name, use SET_SCRIPT_GFX_ALIGN_PARAMS instead - - - - - Deprecated name, use SET_SCRIPT_GFX_DRAW_ORDER instead - - - - - Deprecated name, use SET_SCRIPT_GFX_DRAW_ORDER instead - - - - - Deprecated name, use SET_SCRIPT_WITH_NAME_HASH_AS_NO_LONGER_NEEDED instead - - - - - Deprecated name, use SET_VEHICLE_CEILING_HEIGHT instead - - - - - Deprecated name, use SET_VEHICLE_DROPS_MONEY_WHEN_BLOWN_UP instead - - - - - Deprecated name, use SET_VEHICLE_ENVEFF_SCALE instead - - - - - Deprecated name, use SET_VEHICLE_WHEELS_CAN_BREAK_OFF_WHEN_BLOW_UP instead - - - - - Deprecated name, use SET_VEHICLE_WHEEL_Y_ROTATION instead - - - - - Deprecated name, use SET_WARNING_MESSAGE_WITH_HEADER instead - - - - - Deprecated name, use SHOULD_USE_METRIC_MEASUREMENTS instead - - - - - Deprecated name, use SHOW_CREW_INDICATOR_ON_BLIP instead - - - - - Deprecated name, use SHOW_FRIEND_INDICATOR_ON_BLIP instead - - - - - Deprecated name, use SHOW_OUTLINE_INDICATOR_ON_BLIP instead - - - - - Deprecated name, use SHOW_TICK_ON_BLIP instead - - - - - Deprecated name, use SPECIAL_ABILITY_CHARGE_NORMALIZED instead - - - - - Deprecated name, use START_NETWORKED_PARTICLE_FX_LOOPED_ON_ENTITY instead - - - - - Deprecated name, use START_NETWORKED_PARTICLE_FX_LOOPED_ON_ENTITY_BONE instead - - - - - Deprecated name, use START_NETWORKED_PARTICLE_FX_NON_LOOPED_AT_COORD instead - - - - - Deprecated name, use START_NETWORKED_PARTICLE_FX_NON_LOOPED_ON_ENTITY instead - - - - - Deprecated name, use START_NETWORKED_PARTICLE_FX_NON_LOOPED_ON_PED_BONE instead - - - - - Deprecated name, use START_NEW_SCRIPT_WITH_NAME_HASH instead - - - - - Deprecated name, use START_NEW_SCRIPT_WITH_NAME_HASH_AND_ARGS instead - - - - - Deprecated name, use START_SHAPE_TEST_CAPSULE instead - - - - - Deprecated name, use _ADD_TEXT_COMPONENT_SCALEFORM instead - - - - - Deprecated name, use _ARE_BOMB_BAY_DOORS_OPEN instead - - - - - Deprecated name, use _ARE_VEHICLE_WINGS_INTACT instead - - - - - Deprecated name, use _BEGIN_SCALEFORM_MOVIE_METHOD_HUD_COMPONENT instead - - - - - Deprecated name, use _BEGIN_TEXT_COMMAND_BUSY_STRING instead - - - - - Deprecated name, use _BEGIN_TEXT_COMMAND_LINE_COUNT instead - - - - - Deprecated name, use _BEGIN_TEXT_COMMAND_WIDTH instead - - - - - Deprecated name, use _CAN_PLAY_ONLINE instead - - - - - Deprecated name, use _DOES_CARGOBOB_HAVE_PICKUP_MAGNET instead - - - - - Deprecated name, use _DOES_VEHICLE_HAVE_DECAL instead - - - - - Deprecated name, use _DRAW_LIGHT_WITH_RANGE_AND_SHADOW instead - - - - - Deprecated name, use _DRAW_NOTIFICATION_APARTMENT_INVITE instead - - - - - Deprecated name, use _DRAW_NOTIFICATION_AWARD instead - - - - - Deprecated name, use _DRAW_NOTIFICATION_CLAN_INVITE instead - - - - - Deprecated name, use _END_SCALEFORM_MOVIE_METHOD_RETURN instead - - - - - Deprecated name, use _END_TEXT_COMMAND_BUSY_STRING instead - - - - - Deprecated name, use _END_TEXT_COMMAND_GET_WIDTH instead - - - - - Deprecated name, use _FORCE_VEHICLE_ENGINE_AUDIO instead - - - - - Deprecated name, use _GET_ACTIVE_SCREEN_RESOLUTION instead - - - - - Deprecated name, use _GET_ASPECT_RATIO instead - - - - - Deprecated name, use _GET_CURRENT_INTENSITY instead - - - - - Deprecated name, use _GET_CURRENT_LANGUAGE_ID instead - - - - - Deprecated name, use _GET_NAME_OF_THREAD instead - - - - - Deprecated name, use _GET_NUMBER_OF_INSTANCES_OF_SCRIPT_WITH_NAME_HASH instead - - - - - Deprecated name, use _GET_ONLINE_VERSION instead - - - - - Deprecated name, use _GET_TEXT_SCREEN_LINE_COUNT instead - - - - - Deprecated name, use _GET_UTC_TIME instead - - - - - Deprecated name, use _GET_VEHICLE_HOVER_MODE_PERCENTAGE instead - - - - - Deprecated name, use _IS_DLC_DATA_EMPTY instead - - - - - Deprecated name, use _IS_INPUT_DISABLED instead - - - - - Deprecated name, use _IS_NIGHTVISION_ACTIVE instead - - - - - Deprecated name, use _IS_THIS_MODEL_A_JETSKI instead - - - - - Deprecated name, use _IS_THIS_MODEL_A_JETSKI instead - - - - - Deprecated name, use _NETWORK_CONVERT_SYNCHRONISED_SCENE_TO_SYNCHRONIZED_SCENE instead - - - - - Deprecated name, use _NETWORK_GET_FRIEND_NAME_FROM_INDEX instead - - - - - Deprecated name, use _NETWORK_IS_THIS_SCRIPT_MARKED instead - - - - - Deprecated name, use _NETWORK_SESSION_IS_PLAYER_VOTED_TO_KICK instead - - - - - Deprecated name, use _NETWORK_SET_ENTITY_INVISIBLE_TO_NETWORK instead - - - - - Deprecated name, use _NETWORK_SHOP_DOES_ITEM_EXIST instead - - - - - Deprecated name, use _NETWORK_SHOP_DOES_ITEM_EXIST_HASH instead - - - - - Deprecated name, use _NETWORK_SHOP_TERMINATE_SERVICE instead - - - - - Deprecated name, use _PED_SKIP_NEXT_RELOADING instead - - - - - Deprecated name, use _PUSH_SCALEFORM_MOVIE_METHOD_PARAMETER_STRING instead - - - - - Deprecated name, use _REQUEST_SCALEFORM_MOVIE_INTERACTIVE instead - - - - - Deprecated name, use _RESET_CURRENT_INTENSITY instead - - - - - Deprecated name, use _SET_AIRCRAFT_BOMB_COUNT instead - - - - - Deprecated name, use _SET_CARGOBOB_PICKUP_MAGNET_ACTIVE instead - - - - - Deprecated name, use _SET_CURRENT_INTENSITY instead - - - - - Deprecated name, use _SET_ENTITY_SOMETHING instead - - - - - Deprecated name, use _SET_FROZEN_RENDERING_DISABLED instead - - - - - Deprecated name, use _SET_MP_GAMER_TAG_COLOR instead - - - - - Deprecated name, use _SET_NORTH_YANKTON_MAP instead - - - - - Deprecated name, use _SET_PARTICLE_FX_ASSET_OLD_TO_NEW instead - - - - - Deprecated name, use _SET_PED_AI_BLIP instead - - - - - Deprecated name, use _SET_PED_DECORATION instead - - - - - Deprecated name, use _SET_PLANE_MIN_HEIGHT_ABOVE_TERRAIN instead - - - - - Deprecated name, use _SET_PLAYER_CASH_CHANGE instead - - - - - Deprecated name, use _SET_TOW_TRUCK_CRANE_HEIGHT instead - - - - - Deprecated name, use _SET_VEHICLE_DOOR_CAN_BREAK instead - - - - - Deprecated name, use _START_SHAPE_TEST_RAY instead - - - - - Deprecated name, use _STOP_RECORDING_AND_SAVE_CLIP instead - - - - - Deprecated name, use _USE_FREEMODE_MAP_BEHAVIOR instead - - - - - Deprecated name, use _USE_PARTICLE_FX_ASSET_NEXT_CALL instead - - - - - Aborts the current message in the text chat. - - - - - Returns arccos value of p0. - - - - - Does stuff like this: - gyazo.com/7fcb78ea3520e3dbc5b2c0c0f3712617 - Example: - int GetHash = GET_HASH_KEY("fe_menu_version_corona_lobby"); - ACTIVATE_FRONTEND_MENU(GetHash, 0, -1); - BOOL p1 is a toggle to define the game in pause. - int p2 is unknown but -1 always works, not sure why though. - [30/03/2017] ins1de : - the int p2 is actually a component variable. When the pause menu is visible, it opens the tab related to it. - Example : Function.Call(Hash.ACTIVATE_FRONTEND_MENU,-1171018317, 0, 42); - Result : Opens the "Online" tab without pausing the menu, with -1 it opens the map. - - - - - seems to be frequently used with the NETWORK::NET_TO_x natives, particularly with vehicles. It is often the only ROPE:: native in a script. - - - - - Show Rockstar Editor Menu - by I'm Not MentaL - ---------- - "new_editor" menu - - - - - Show Rockstar Editor Menu - by I'm Not MentaL - ---------- - "new_editor" menu - - - - - Same as SET_PED_ARMOUR, but ADDS 'amount' to the armor the Ped already has. - - - - - Adds a rectangular blip for the specified coordinates/area. - It is recommended to use [SET_BLIP_ROTATION](#_0xF87683CDF73C3F6E) and [SET_BLIP_COLOUR](#_0x03D7FB09E75D6B7E) to make the blip not rotate along with the camera. - By default, the blip will show as a _regular_ blip with the specified color/sprite if it is outside of the minimap view. - Example image: - ![minimap](https://w.wew.wtf/pdcjig.png) - ![big map](https://w.wew.wtf/zgcjcm.png) - (Native name is _likely_ to actually be ADD_BLIP_FOR_AREA, but due to the usual reasons this can't be confirmed) - - The X coordinate of the center of the blip. - The Y coordinate of the center of the blip. - The Z coordinate of the center of the blip. - The width of the blip. - The height of the blip. - A handle to the blip. - - - - Adds a rectangular blip for the specified coordinates/area. - It is recommended to use [SET_BLIP_ROTATION](#_0xF87683CDF73C3F6E) and [SET_BLIP_COLOUR](#_0x03D7FB09E75D6B7E) to make the blip not rotate along with the camera. - By default, the blip will show as a _regular_ blip with the specified color/sprite if it is outside of the minimap view. - Example image: - ![minimap](https://w.wew.wtf/pdcjig.png) - ![big map](https://w.wew.wtf/zgcjcm.png) - (Native name is _likely_ to actually be ADD_BLIP_FOR_AREA, but due to the usual reasons this can't be confirmed) - - The X coordinate of the center of the blip. - The Y coordinate of the center of the blip. - The Z coordinate of the center of the blip. - The width of the blip. - The height of the blip. - A handle to the blip. - - - - Creates a blip for the specified coordinates. You can use `SET_BLIP_` natives to change the blip. - - The X coordinate to create the blip on. - The Y coordinate. - The Z coordinate. - A blip handle. - - - - Returns red ( default ) blip attached to entity. - Example: - Blip blip; //Put this outside your case or option - blip = UI::ADD_BLIP_FOR_ENTITY(YourPedOrBodyguardName); - UI::SET_BLIP_AS_FRIENDLY(blip, true); - - - - - I filled p1-p6 (the floats) as they are as other natives with 6 floats in a row are similar and I see no other method. So if a test from anyone proves them wrong please correct. - p7 (length) determines the length of the spline, affects camera path and duration of transition between previous node and this one - p8 big values ~100 will slow down the camera movement before reaching this node - p9 != 0 seems to override the rotation/pitch (bool?) - - - - - Now has 15 parameters, previous declaration: - BOOL _0x428BDCB9DA58DA53(Any p0, Any p1, Any p2, float p3, float p4, float p5, float p6, float p7, float p8, float p9, float p10, float p11, float p12, Any p13) - boneIndex is always chassis_dummy in the scripts. The x/y/z params are location relative to the chassis bone. They are usually rotations and measurements. Haven't reversed which are what yet. - Scale is how big the decal will be. - p13 is always 0. - For alpha, 200 seems to match what the game is doing, I think. I don't have access to the new scripts to see what this parameter is, but based on guessing this seems (kind of) accurate. - - - - - decal types: - public enum DecalTypes - { - splatters_blood = 1010, - splatters_blood_dir = 1015, - splatters_blood_mist = 1017, - splatters_mud = 1020, - splatters_paint = 1030, - splatters_water = 1040, - splatters_water_hydrant = 1050, - splatters_blood2 = 1110, - weapImpact_metal = 4010, - weapImpact_concrete = 4020, - weapImpact_mattress = 4030, - weapImpact_mud = 4032, - weapImpact_wood = 4050, - weapImpact_sand = 4053, - weapImpact_cardboard = 4040, - weapImpact_melee_glass = 4100, - weapImpact_glass_blood = 4102, - weapImpact_glass_blood2 = 4104, - weapImpact_shotgun_paper = 4200, - weapImpact_shotgun_mattress, - weapImpact_shotgun_metal, - weapImpact_shotgun_wood, - weapImpact_shotgun_dirt, - weapImpact_shotgun_tvscreen, - weapImpact_shotgun_tvscreen2, - weapImpact_shotgun_tvscreen3, - weapImpact_melee_concrete = 4310, - weapImpact_melee_wood = 4312, - weapImpact_melee_metal = 4314, - burn1 = 4421, - burn2, - burn3, - burn4, - burn5, - bang_concrete_bang = 5000, - bang_concrete_bang2, - bang_bullet_bang, - bang_bullet_bang2 = 5004, - bang_glass = 5031, - bang_glass2, - solidPool_water = 9000, - solidPool_blood, - solidPool_oil, - solidPool_petrol, - solidPool_mud, - porousPool_water, - porousPool_blood, - porousPool_oil, - porousPool_petrol, - porousPool_mud, - porousPool_water_ped_drip, - liquidTrail_water = 9050 - } - - - - - REQUEST_STREAMED_TEXTURE_DICT("MPOnMissMarkers", false); - *uParam0.f_809 = add_decal(9120, vParam1, vVar4, vVar7, 2f, 2f, to_float(iVar0) / 255f, to_float(iVar1) / 255f, to_float(iVar2) / 255f, 1f, -1f, 1, 0, 0); - _0x8A35C742130C6080(9120, "MPOnMissMarkers", "Capture_The_Flag_Base_Icon"); - - - - - REQUEST_STREAMED_TEXTURE_DICT("MPOnMissMarkers", false); - *uParam0.f_809 = add_decal(9120, vParam1, vVar4, vVar7, 2f, 2f, to_float(iVar0) / 255f, to_float(iVar1) / 255f, to_float(iVar2) / 255f, 1f, -1f, 1, 0, 0); - _0x8A35C742130C6080(9120, "MPOnMissMarkers", "Capture_The_Flag_Base_Icon"); - - - - - Example: - GRAPHICS::ADD_ENTITY_ICON(a_0, "MP_Arrow"); - I tried this and nothing happened... - - - - - BOOL isAudible = If explosion makes a sound. - BOOL isInvisible = If the explosion is invisible or not. - this native is missing a new argument: noDamage - nodamage = false: damage || nodamage = true: no damage - enum ExplosionTypes - { - EXPLOSION_GRENADE, - EXPLOSION_GRENADELAUNCHER, - EXPLOSION_STICKYBOMB, - EXPLOSION_MOLOTOV, - EXPLOSION_ROCKET, - EXPLOSION_TANKSHELL, - EXPLOSION_HI_OCTANE, - EXPLOSION_CAR, - EXPLOSION_PLANE, - EXPLOSION_PETROL_PUMP, - EXPLOSION_BIKE, - EXPLOSION_DIR_STEAM, - EXPLOSION_DIR_FLAME, - EXPLOSION_DIR_WATER_HYDRANT, - EXPLOSION_DIR_GAS_CANISTER, - EXPLOSION_BOAT, - EXPLOSION_SHIP_DESTROY, - EXPLOSION_TRUCK, - EXPLOSION_BULLET, - EXPLOSION_SMOKEGRENADELAUNCHER, - EXPLOSION_SMOKEGRENADE, - EXPLOSION_BZGAS, - EXPLOSION_FLARE, - EXPLOSION_GAS_CANISTER, - EXPLOSION_EXTINGUISHER, - EXPLOSION_PROGRAMMABLEAR, - EXPLOSION_TRAIN, - EXPLOSION_BARREL, - EXPLOSION_PROPANE, - EXPLOSION_BLIMP, - EXPLOSION_DIR_FLAME_EXPLODE, - EXPLOSION_TANKER, - EXPLOSION_PLANE_ROCKET, - EXPLOSION_VEHICLE_BULLET, - EXPLOSION_GAS_TANK, - EXPLOSION_BIRD_CRAP - }; - - - - - Returns the index of the newly created hospital spawn point. - p3 might be radius? - - - - - NOTE: ones that are -1, 0 - 35 are determined by a function where it gets a TextLabel from a global then runs, - _GET_TEXT_SUBSTRING and depending on what the result is it goes in check order of 0 - 9 then A - Z then z (lowercase). So it will then return 0 - 35 or -1 if it's 'z'. The func to handle that ^^ is func_67 in dialog_handler.c atleast in TU27 Xbox360 scripts. - p0 is -1, 0 - p1 is a char or string (whatever you wanna call it) - p2 is Global 10597 + i * 6. 'i' is a while(i < 70) loop - p3 is again -1, 0 - 35 - p4 is again -1, 0 - 35 - p5 is either 0 or 1 (bool ?) - p6 is either 0 or 1 (The func to determine this is bool) - p7 is either 0 or 1 (The func to determine this is bool) - p8 is either 0 or 1 (The func to determine this is bool) - p9 is 0 - 3 (Determined by func_60 in dialogue_handler.c) - p10 is either 0 or 1 (The func to determine this is bool) - p11 is either 0 or 1 (The func to determine this is bool) - p12 is unknown as in TU27 X360 scripts it only goes to p11. - - - - - Loads a minimap overlay from a GFx file in the current resource. - - The path to a `.gfx` file in the current resource. It has to be specified as a `file`. - A minimap overlay ID. - - - - hash collision? - - - - - enum ExplosionTypes - { - EXPLOSION_GRENADE, - EXPLOSION_GRENADELAUNCHER, - EXPLOSION_STICKYBOMB, - EXPLOSION_MOLOTOV, - EXPLOSION_ROCKET, - EXPLOSION_TANKSHELL, - EXPLOSION_HI_OCTANE, - EXPLOSION_CAR, - EXPLOSION_PLANE, - EXPLOSION_PETROL_PUMP, - EXPLOSION_BIKE, - EXPLOSION_DIR_STEAM, - EXPLOSION_DIR_FLAME, - EXPLOSION_DIR_WATER_HYDRANT, - EXPLOSION_DIR_GAS_CANISTER, - EXPLOSION_BOAT, - EXPLOSION_SHIP_DESTROY, - EXPLOSION_TRUCK, - EXPLOSION_BULLET, - EXPLOSION_SMOKEGRENADELAUNCHER, - EXPLOSION_SMOKEGRENADE, - EXPLOSION_BZGAS, - EXPLOSION_FLARE, - EXPLOSION_GAS_CANISTER, - EXPLOSION_EXTINGUISHER, - EXPLOSION_PROGRAMMABLEAR, - EXPLOSION_TRAIN, - EXPLOSION_BARREL, - EXPLOSION_PROPANE, - EXPLOSION_BLIMP, - EXPLOSION_DIR_FLAME_EXPLODE, - EXPLOSION_TANKER, - EXPLOSION_PLANE_ROCKET, - EXPLOSION_VEHICLE_BULLET, - EXPLOSION_GAS_TANK, - EXPLOSION_BIRD_CRAP - }; - BOOL isAudible = If explosion makes a sound. - BOOL isInvisible = If the explosion is invisible or not. - - - - - Example: - AI::ADD_PATROL_ROUTE_NODE(2, "WORLD_HUMAN_GUARD_STAND", -193.4915, -2378.864990234375, 10.9719, -193.4915, -2378.864990234375, 10.9719, 3000); - p0 is between 0 and 4 in the scripts. - p1 is "WORLD_HUMAN_GUARD_STAND" or "StandGuard". - p2, p3 and p4 is only one parameter sometimes in the scripts. Most likely a Vector3 hence p2, p3 and p4 are coordinates. - Examples: - AI::ADD_PATROL_ROUTE_NODE(1, "WORLD_HUMAN_GUARD_STAND", l_739[7 -- [[3]] ], 0.0, 0.0, 0.0, 0); - AI::ADD_PATROL_ROUTE_NODE(1, "WORLD_HUMAN_GUARD_STAND", l_B0[17 -- [[44]] ]._f3, l_B0[17 -- [[44]] ]._f3, 2000); - p5, p6 and p7 are for example set to: 1599.0406494140625, 2713.392578125, 44.4309. - p8 is an int, often random set to for example: GAMEPLAY::GET_RANDOM_INT_IN_RANGE(5000, 10000). - - - - - 4 calls in the b617d scripts. The only one with p0 and p2 in clear text: - AUDIO::ADD_PED_TO_CONVERSATION(5, l_AF, "DINAPOLI"); - ================================================= - One of the 2 calls in dialogue_handler.c p0 is in a while-loop, and so is determined to also possibly be 0 - 15. - Based on it asking if does_entity_exist for the global I have determined that p1 is, in fact, the ped, but could be wrong. - - - - - Can't select void. This function returns nothing. The hash of the created relationship group is output in the second parameter. - - - - - Experimental natives, please do not use in a live environment. - - - - - Creates a rope at the specific position, that extends in the specified direction when not attached to any entities. - __ - Add_Rope(pos.x,pos.y,pos.z,0.0,0.0,0.0,20.0,4,20.0,1.0,0.0,false,false,false,5.0,false,NULL) - When attached, Position<vector> does not matter - When attached, Angle<vector> does not matter - Rope Type: - 4 and bellow is a thick rope - 5 and up are small metal wires - 0 crashes the game - Max_length - Rope is forced to this length, generally best to keep this the same as your rope length. - Rigid - If max length is zero, and this is set to false the rope will become rigid (it will force a specific distance, what ever length is, between the objects). - breakable - Whether or not shooting the rope will break it. - unkPtr - unknown ptr, always 0 in orig scripts - __ - Lengths can be calculated like so: - float distance = abs(x1 - x2) + abs(y1 - y2) + abs(z1 - z2); // Rope length - NOTES: - Rope does NOT interact with anything you attach it to, in some cases it make interact with the world AFTER it breaks (seems to occur if you set the type to -1). - Rope will sometimes contract and fall to the ground like you'd expect it to, but since it doesn't interact with the world the effect is just jaring. - - - - - BRAIN::ADD_SCRIPT_TO_RANDOM_PED("pb_prostitute", ${s_f_y_hooker_01}, 100, 0); - ----- - Hardcoded to not work in Multiplayer. - ------ - Which I'm sure can easily be bypassed by nop'ing the branch preventing it from working if you are in multiplayer lol. Which would still be pointless since you don't need this to make peds do what you wish. - - - - - duration is float here - Event types- camx.me/gtav/tasks/shockingevents.txt - - - - - duration is float here - Event types - camx.me/gtav/tasks/shockingevents.txt - - - - - This is used to add a speedzone on a position. - Example usage C#: - uint speedZone = Function.Call<uint>((Hash) 0x2CE544C68FB812A0, Game.PlayerPed.Position.X, Game.PlayerPed.Position.Y, Game.PlayerPed.Position.Z, 100.0f, 0.0f, false); - (Thanks to alexguirre for his help!) - ========================================== - What is the point in adding a speed zone? Does it just generally affect the speed NPCs will drive? I can imagine running this on every section of the interstate setting it to 3 MPH rip. - - - - - This is used to add a speedzone on a position. - Example usage C#: - uint speedZone = Function.Call<uint>((Hash) 0x2CE544C68FB812A0, Game.PlayerPed.Position.X, Game.PlayerPed.Position.Y, Game.PlayerPed.Position.Z, 100.0f, 0.0f, false); - (Thanks to alexguirre for his help!) - ========================================== - What is the point in adding a speed zone? Does it just generally affect the speed NPCs will drive? I can imagine running this on every section of the interstate setting it to 3 MPH rip. - - - - - See description of [`ADD_STUNT_JUMP_ANGLED`](#_0xBBE5D803A5360CBF) for detailed info. The only difference really is this one does not have the radius (or angle, not sure) floats parameters for entry and landing zones. - - Jump entry left far bottom corner coordinate X. - Jump entry left far bottom corner coordinate Y. - Jump entry left far bottom corner coordinate Z. - Jump entry right near top corner coordinate X. - Jump entry right near top corner coordinate Y. - Jump entry right near top corner coordinate Z. - Landing zone end coordinate X. - Landing zone end coordinate Y. - Landing zone end coordinate Z. - Landing zone start coordinate X. - Landing zone start coordinate Y. - Landing zone start coordinate Z. - Stuntcam (cinematic) coordinate x. - Stuntcam (cinematic) coordinate y. - Stuntcam (cinematic) coordinate z. - Unknown, always 150. - Unknown, always 0. - Unknown, always 0. - The ID of the stunt jump that was added. - - - - Creates a new stunt jump. - The radius1 and radius2 might actually not be a radius at all, but that's what it seems to me testing them in-game. But they may be 'angle' floats instead, considering this native is named ADD_STUNT_JUMP\_**ANGLED**. - Info about the specific 'parameter sections': - **x1, y1, z1, x2, y2, z2 and radius1:** - First coordinates are for the jump entry area, and the radius that will be checked around that area. So if you're not exactly within the coordinates, but you are within the outter radius limit then it will still register as entering the stunt jump. Note as mentioned above, the radius is just a guess, I'm not really sure about it's exact purpose. - **x3, y3, z3, x4, y4, z4 and radius2:** - Next part is the landing area, again starting with the left bottom (nearest to the stunt jump entry zone) coordinate, and the second one being the top right furthest away part of the landing area. Followed by another (most likely) radius float, this is usually slightly larger than the entry zone 'radius' float value, just because you have quite a lot of places where you can land (I'm guessing). - **camX, camY and camZ:** - The final coordinate in this native is the Camera position. Rotation and zoom/FOV is managed by the game itself, you just need to provide the camera location. - **unk1, unk2 and unk3:** - Not sure what these are for, but they're always `150, 0, 0` in decompiled scripts. - Visualized example in-game: - ![](https://d.fivem.dev/2019-03-15_18-24_c7802_846.png) - Here is a list of almost all of the stunt jumps from GTA V (taken from decompiled scripts): <https://pastebin.com/EW1jBPkY> - - Entry zone bottom left corner x. - Entry zone bottom left corner y. - Entry zone bottom left corner z. - Entry zone top right corner x. - Entry zone top right corner y. - Entry zone top right corner z. - Probably a "feather" radius for entry zone, you need to enter the jump within the min/max coordinates, or within this radius of those two coordinates. - Landing zone start corner coordinate x. - Landing zone start corner coordinate y. - Landing zone start corner coordinate z. - Landing zone end corner coordinate x. - Landing zone end corner coordinate y. - Landing zone end corner coordinate z. - Probably a "feather" radius for landing zone, you need to land within the min/max coordinates, or within this radius of those two coordinates. - Stunt (cinematic) camera x position. - Stunt (cinematic) camera y position. - Stunt (cinematic) camera z position. - always 150 - always 0 - always 0 - The ID of the stuntjump that was created. - - - - p1 was always -1. - used for phone applications; scaleform - - - - - p1 was always -1. - used for phone applications; scaleform - - - - - This native (along with 0x6C188BE134E074AA and 0x94CF4AC034C9C986) do not actually filter anything. They simply add the provided text (as of 944) - did you even check the disassembly? - > Do you even lift bro? The PLAYER_NAME and WEBSITE natives are the correct names, it doesn't matter if they're filtered or not. Blame R* for that matter. Hashes don't lie, and it's extremely unlikely the validated names are collisions (what are the odds??) - - - - - This native (along with 0x6C188BE134E074AA and 0x94CF4AC034C9C986) do not actually filter anything. They simply add the provided text (as of 944) - did you even check the disassembly? - > Do you even lift bro? The PLAYER_NAME and WEBSITE natives are the correct names, it doesn't matter if they're filtered or not. Blame R* for that matter. Hashes don't lie, and it's extremely unlikely the validated names are collisions (what are the odds??) - - - - - Adds an arbitrary string as a text component placeholder, replacing `~a~` in the current text command's text label. - See the documentation on text formatting for more information. - - A string to add of up to 99 characters. This can contain additional `~` formatting directives. - - - - Adds an arbitrary string as a text component placeholder, replacing `~a~` in the current text command's text label. - See the documentation on text formatting for more information. - - A string to add of up to 99 characters. This can contain additional `~` formatting directives. - - - - It adds the localized text of the specified GXT entry name. Eg. if the argument is GET_HASH_KEY("ES_HELP"), adds "Continue". Just uses a text labels hash key - - - - - It adds the localized text of the specified GXT entry name. Eg. if the argument is GET_HASH_KEY("ES_HELP"), adds "Continue". Just uses a text labels hash key - - - - - Adds a timer (e.g. "00:00:00:000"). The appearance of the timer depends on the flags, which needs more research. - - - - - This native (along with 0x5F68520888E69014 and 0x6C188BE134E074AA) do not actually filter anything. They simply add the provided text (as of 944) - - - - - This native (along with 0x5F68520888E69014 and 0x6C188BE134E074AA) do not actually filter anything. They simply add the provided text (as of 944) - - - - - Hash collision! - _IS_MP_GAMER_TAG_ACTIVE_2 - - - - - x, y, z: offset in world coords from some entity. - - - - - Seems to animate the gameplay camera zoom. - Eg. _ANIMATE_GAMEPLAY_CAM_ZOOM(1f, 1000f); - will animate the camera zooming in from 1000 meters away. - Game scripts use it like this: - // Setting this to 1 prevents V key from changing zoom - PLAYER::SET_PLAYER_FORCED_ZOOM(PLAYER::PLAYER_ID(), 1); - // These restrict how far you can move cam up/down left/right - CAM::_CLAMP_GAMEPLAY_CAM_YAW(-20f, 50f); - CAM::_CLAMP_GAMEPLAY_CAM_PITCH(-60f, 0f); - CAM::_ANIMATE_GAMEPLAY_CAM_ZOOM(1f, 1f); - - - - - Example from michael2 script. - CAM::ANIMATED_SHAKE_CAM(l_5069, "shake_cam_all@", "light", "", 1f); - - - - - Called in the gamescripts like: - APP::APP_SET_APP("car"); - APP::APP_SET_APP("dog"); - - - - - damages a ped with the given amount - ---- - armorFirst means it will damage/lower the armor first before damaging the player. - setting damageAmount to a negative amount will cause the player or the armor (depending on armorFirst) to be healed by damageAmount instead. - - - - - Documented here: - gtaforums.com/topic/885669-precisely-define-object-physics/ - gtaforums.com/topic/887362-apply-forces-and-momentums-to-entityobject/ - forceFlags: - First bit (lowest): Strong force flag, factor 100 - Second bit: Unkown flag - Third bit: Momentum flag=1 (vector (x,y,z) is a momentum, more research needed) - If higher bits are unequal 0 the function doesn't applay any forces at all. - (As integer possible values are 0-7) - 0: weak force - 1: strong force - 2: same as 0 (2nd bit?) - 3: same as 1 - 4: weak momentum - 5: strong momentum - 6: same as 4 - 7: same as 5 - isDirectionRel: vector defined in local (body-fixed) coordinate frame - isForceRel: if true the force gets multiplied with the objects mass (this is why it was known as highForce) and different objects will have the same acceleration. - - - - - Found one occurence in re_crashrescue.c4 - PED::APPLY_PED_BLOOD(l_4B, 3, 0.0, 0.0, 0.0, "wound_sheet"); - - - - - APPLY_PED_DAMAGE_DECAL(ped, 1, 0.5f, 0.513f, 0f, 1f, unk, 0, 0, "blushing"); - - - - - Damage Packs: - "SCR_TrevorTreeBang" - "HOSPITAL_0" - "HOSPITAL_1" - "HOSPITAL_2" - "HOSPITAL_3" - "HOSPITAL_4" - "HOSPITAL_5" - "HOSPITAL_6" - "HOSPITAL_7" - "HOSPITAL_8" - "HOSPITAL_9" - "SCR_Dumpster" - "BigHitByVehicle" - "SCR_Finale_Michael_Face" - "SCR_Franklin_finb" - "SCR_Finale_Michael" - "SCR_Franklin_finb2" - "Explosion_Med" - "SCR_Torture" - "SCR_TracySplash" - "Skin_Melee_0" - Additional damage packs: - gist.github.com/alexguirre/f3f47f75ddcf617f416f3c8a55ae2227 - - - - - Appears to return false if any window is broken. - - - - - Returns false if every seat is occupied. - - - - - Returns false if every seat is occupied. - - - - - Returns true when the bomb bay doors of this plane are open. False if they're closed. - - The vehicle to check the bomb bay doors on. - A bool indicating the state of the doors (true = open, false = closed). - - - - Returns true when the bomb bay doors of this plane are open. False if they're closed. - - The vehicle to check the bomb bay doors on. - A bool indicating the state of the doors (true = open, false = closed). - - - - Returns true when the bomb bay doors of this plane are open. False if they're closed. - - The vehicle to check the bomb bay doors on. - A bool indicating the state of the doors (true = open, false = closed). - - - - Returns true if the coords are colliding with the outdoors, and false if they collide with an interior. - - - - - Returns true if the coords are colliding with the outdoors, and false if they collide with an interior. - - - - - Found this in the decompiled scripts, I'd do more research before changing the name -- - if (!ENTITY::IS_ENTITY_DEAD(l_1911)) { - if (!VEHICLE::_755D6D5267CBBD7E(l_1911)) { - sub_1ba80("TRAFFICKING AIR: FAILING - PROPELLERS ARE DAMAGED"); - l_12CE = 9; - } - } - - - - - Found this in the decompiled scripts, I'd do more research before changing the name -- - if (!ENTITY::IS_ENTITY_DEAD(l_1911)) { - if (!VEHICLE::_755D6D5267CBBD7E(l_1911)) { - sub_1ba80("TRAFFICKING AIR: FAILING - PROPELLERS ARE DAMAGED"); - l_12CE = 9; - } - } - - - - - is this like strcmp?? - - - - - ADD_A_MARKER_OVER_VEHICLE was a hash collision!!! - Can be used for planes only! - - - - - ADD_A_MARKER_OVER_VEHICLE was a hash collision!!! - Can be used for planes only! - - - - - ADD_A_MARKER_OVER_VEHICLE was a hash collision!!! - Can be used for planes only! - - - - - Types: - 1 = Boolean - 2 = Integer - 3 = Float - 4 = String - 5 = Vector3 - 6 = Object - 7 = Array - - - - - Returns arcsin value of p0. - - - - - Routes: "1_FIBStairs", "2_FIBStairs", "3_FIBStairs", "4_FIBStairs", "5_FIBStairs", "5_TowardsFire", "6a_FIBStairs", "7_FIBStairs", "8_FIBStairs", "Aprtmnt_1", "AssAfterLift", "ATM_1", "coroner2", "coroner_stairs", "f5_jimmy1", "fame1", "family5b", "family5c", "Family5d", "family5d", "FIB_Glass1", "FIB_Glass2", "FIB_Glass3", "finaBroute1A", "finalb1st", "finalB1sta", "finalbround", "finalbroute2", "Hairdresser1", "jan_foyet_ft_door", "Jo_3", "Lemar1", "Lemar2", "mansion_1", "Mansion_1", "pols_1", "pols_2", "pols_3", "pols_4", "pols_5", "pols_6", "pols_7", "pols_8", "Pro_S1", "Pro_S1a", "Pro_S2", "Towards_case", "trev_steps", "tunrs1", "tunrs2", "tunrs3", "Wave01457s" - - - - - Returns arctan value of p0. - - - - - Last param determines if its relative to the Entity - - - - - This native works with vehicles only. - Bone indexes are usually given by this native [GET_ENTITY_BONE_INDEX_BY_NAME](#_0xFB71170B7E76ACBA). - - The camera handle. - The vehicle handle. - Whether or not the camera rotation will relative the vehicle rotation. - The X rotation. - The Y rotation. - The Z rotation. - The X offset direction. - The Y offset direction. - The Z offset direction. - Whether or not the camera direction will relative to the vehicle direction. - - - - This native works with vehicles only. - Bone indexes are usually given by this native [GET_ENTITY_BONE_INDEX_BY_NAME](#_0xFB71170B7E76ACBA). - - The camera handle. - The vehicle handle. - Whether or not the camera rotation will relative the vehicle rotation. - The X rotation. - The Y rotation. - The Z rotation. - The X offset direction. - The Y offset direction. - The Z offset direction. - Whether or not the camera direction will relative to the vehicle direction. - - - - Attaches entity 1 to entity 2. - - - - - Attaches entity1 to bone (boneIndex) of entity2. - boneIndex - this is different to boneID, use GET_PED_BONE_INDEX to get the index from the ID. use the index for attaching to specific bones. entity1 will be attached to entity2's centre if bone index given doesn't correspond to bone indexes for that entity type. - useSoftPinning - when 2 entities with collision collide and form into a ball they will break the attachment of the entity that they were attached to. Or when an entity is attached far away and then the resets. - collision - controls collision between the two entities (FALSE disables collision). - isPed - pitch doesnt work when false and roll will only work on negative numbers (only peds) - vertexIndex - position of vertex - fixedRot - if false it ignores entity vector - - - - - breakForce is the amount of force required to break the bond. - fixedRot - if false it ignores entity vector - p15 - is 1 or 0 in scripts - unknoun what it does - collision - controls collision between the two entities (FALSE disables collision). - teleport - do not teleport entity to be attached to the position of the bone Index of the target entity (if 1, entity will not be teleported to target bone) - p18 - is always 2 in scripts. - ------------------------- - teleport is not exactly "doNotTeleport". What it actually does is the following: - if true, entities will be attached as if loosely tethered, up to the maximum offset position specified. Almost as if attached by an invisible rope. - if false, entities will be attached in a fixed position as specified in the offset position. - When p15 = true, it seems to force teleport to false. - It also lets the Rotation params actually work. - - - - - The position supplied can be anywhere, and the entity should anchor relative to that point from it's origin. - - - - - Might be more appropriate in AUDIO? - - - - - HookOffset defines where the hook is attached. leave at 0 for default attachment. - When using the tow truck online, this is not used (set a breakpoint and never called during tow truck attachment) - - - - - MulleDK19: Starts a new enumeration of the current threads. - Call this first, then _GET_ID_OF_NEXT_THREAD_IN_ENUMERATION (0x30B4FA1C82DD4B9F) - see _GET_ID_OF_NEXT_THREAD_IN_ENUMERATION (0x30B4FA1C82DD4B9F) for an example - - - - - MulleDK19: Starts a new enumeration of the current threads. - Call this first, then _GET_ID_OF_NEXT_THREAD_IN_ENUMERATION (0x30B4FA1C82DD4B9F) - see _GET_ID_OF_NEXT_THREAD_IN_ENUMERATION (0x30B4FA1C82DD4B9F) for an example - - - - - Push a function from the Scaleform onto the stack - - - - - Push a function from the Scaleform onto the stack - - - - - Pushes a function from the Hud component Scaleform onto the stack. Same behavior as GRAPHICS::_PUSH_SCALEFORM_MOVIE_FUNCTION, just a hud component id instead of a Scaleform. - Known components: - 19 - 20 - This native requires more research - all information can be found inside of 'hud.gfx'. Using a decompiler, the different components are located under "scripts\__Packages\com\rockstargames\gtav\hud\hudComponents" and "scripts\__Packages\com\rockstargames\gtav\Multiplayer". - - - - - Pushes a function from the Hud component Scaleform onto the stack. Same behavior as GRAPHICS::_PUSH_SCALEFORM_MOVIE_FUNCTION, just a hud component id instead of a Scaleform. - Known components: - 19 - 20 - This native requires more research - all information can be found inside of 'hud.gfx'. Using a decompiler, the different components are located under "scripts\__Packages\com\rockstargames\gtav\hud\hudComponents" and "scripts\__Packages\com\rockstargames\gtav\Multiplayer". - - - - - Starts frontend (pause menu) scaleform movie methods. - This can be used when you want to make custom frontend menus, and customize things like images or text in the menus etc. - Use [`BEGIN_SCALEFORM_MOVIE_METHOD_ON_FRONTEND_HEADER`](#_0xB9449845F73F5E9C) for header scaleform functions. - - The function name of the scaleform to call. - - - - Starts frontend (pause menu) scaleform movie methods. - This can be used when you want to make custom frontend menus, and customize things like images or text in the menus etc. - Use [`BEGIN_SCALEFORM_MOVIE_METHOD_ON_FRONTEND_HEADER`](#_0xB9449845F73F5E9C) for header scaleform functions. - - The function name of the scaleform to call. - - - - Starts frontend (pause menu) scaleform movie methods. - This can be used when you want to make custom frontend menus, and customize things like images or text in the menus etc. - Use [`BEGIN_SCALEFORM_MOVIE_METHOD_ON_FRONTEND_HEADER`](#_0xB9449845F73F5E9C) for header scaleform functions. - - The function name of the scaleform to call. - - - - Starts frontend (pause menu) scaleform movie methods. - This can be used when you want to make custom frontend menus, and customize things like images or text in the menus etc. - Use [`BEGIN_SCALEFORM_MOVIE_METHOD_ON_FRONTEND_HEADER`](#_0xB9449845F73F5E9C) for header scaleform functions. - - The function name of the scaleform to call. - - - - Starts frontend (pause menu) scaleform movie methods for header options. - Use [`BEGIN_SCALEFORM_MOVIE_METHOD_ON_FRONTEND`](#_0xAB58C27C2E6123C6) to customize the content inside the frontend menus. - - Scaleform function name. - - - - Starts frontend (pause menu) scaleform movie methods for header options. - Use [`BEGIN_SCALEFORM_MOVIE_METHOD_ON_FRONTEND`](#_0xAB58C27C2E6123C6) to customize the content inside the frontend menus. - - Scaleform function name. - - - - Starts frontend (pause menu) scaleform movie methods for header options. - Use [`BEGIN_SCALEFORM_MOVIE_METHOD_ON_FRONTEND`](#_0xAB58C27C2E6123C6) to customize the content inside the frontend menus. - - Scaleform function name. - - - - Initializes the text entry for the the text next to a loading prompt. All natives for for building UI texts can be used here - BEGIN_TEXT_COMMAND_PRINT - e.g - void StartLoadingMessage(char *text, int spinnerType = 3) - { - _SET_LOADING_PROMPT_TEXT_ENTRY("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - _SHOW_LOADING_PROMPT(spinnerType); - } - -- [[OR]] - void ShowLoadingMessage(char *text, int spinnerType = 3, int timeMs = 10000) - { - _SET_LOADING_PROMPT_TEXT_ENTRY("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - _SHOW_LOADING_PROMPT(spinnerType); - WAIT(timeMs); - _REMOVE_LOADING_PROMPT(); - } - These are some localized strings used in the loading spinner. - "PM_WAIT" = Please Wait - "CELEB_WPLYRS" = Waiting For Players. - "CELL_SPINNER2" = Scanning storage. - "ERROR_CHECKYACHTNAME" = Registering your yacht's name. Please wait. - "ERROR_CHECKPROFANITY" = Checking your text for profanity. Please wait. - "FM_COR_AUTOD" = Just spinner no text - "FM_IHELP_WAT2" = Waiting for other players - "FM_JIP_WAITO" = Game options are being set - "FMMC_DOWNLOAD" = Downloading - "FMMC_PLYLOAD" = Loading - "FMMC_STARTTRAN" = Launching session - "HUD_QUITTING" = Quiting session - "KILL_STRIP_IDM" = Waiting for to accept - "MP_SPINLOADING" = Loading - - - - - Initializes the text entry for the the text next to a loading prompt. All natives for for building UI texts can be used here - BEGIN_TEXT_COMMAND_PRINT - e.g - void StartLoadingMessage(char *text, int spinnerType = 3) - { - _SET_LOADING_PROMPT_TEXT_ENTRY("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - _SHOW_LOADING_PROMPT(spinnerType); - } - -- [[OR]] - void ShowLoadingMessage(char *text, int spinnerType = 3, int timeMs = 10000) - { - _SET_LOADING_PROMPT_TEXT_ENTRY("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - _SHOW_LOADING_PROMPT(spinnerType); - WAIT(timeMs); - _REMOVE_LOADING_PROMPT(); - } - These are some localized strings used in the loading spinner. - "PM_WAIT" = Please Wait - "CELEB_WPLYRS" = Waiting For Players. - "CELL_SPINNER2" = Scanning storage. - "ERROR_CHECKYACHTNAME" = Registering your yacht's name. Please wait. - "ERROR_CHECKPROFANITY" = Checking your text for profanity. Please wait. - "FM_COR_AUTOD" = Just spinner no text - "FM_IHELP_WAT2" = Waiting for other players - "FM_JIP_WAITO" = Game options are being set - "FMMC_DOWNLOAD" = Downloading - "FMMC_PLYLOAD" = Loading - "FMMC_STARTTRAN" = Launching session - "HUD_QUITTING" = Quiting session - "KILL_STRIP_IDM" = Waiting for to accept - "MP_SPINLOADING" = Loading - - - - - Initializes the text entry for the the text next to a loading prompt. All natives for for building UI texts can be used here - BEGIN_TEXT_COMMAND_PRINT - e.g - void StartLoadingMessage(char *text, int spinnerType = 3) - { - _SET_LOADING_PROMPT_TEXT_ENTRY("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - _SHOW_LOADING_PROMPT(spinnerType); - } - -- [[OR]] - void ShowLoadingMessage(char *text, int spinnerType = 3, int timeMs = 10000) - { - _SET_LOADING_PROMPT_TEXT_ENTRY("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - _SHOW_LOADING_PROMPT(spinnerType); - WAIT(timeMs); - _REMOVE_LOADING_PROMPT(); - } - These are some localized strings used in the loading spinner. - "PM_WAIT" = Please Wait - "CELEB_WPLYRS" = Waiting For Players. - "CELL_SPINNER2" = Scanning storage. - "ERROR_CHECKYACHTNAME" = Registering your yacht's name. Please wait. - "ERROR_CHECKPROFANITY" = Checking your text for profanity. Please wait. - "FM_COR_AUTOD" = Just spinner no text - "FM_IHELP_WAT2" = Waiting for other players - "FM_JIP_WAITO" = Game options are being set - "FMMC_DOWNLOAD" = Downloading - "FMMC_PLYLOAD" = Loading - "FMMC_STARTTRAN" = Launching session - "HUD_QUITTING" = Quiting session - "KILL_STRIP_IDM" = Waiting for to accept - "MP_SPINLOADING" = Loading - - - - - clears a print text command with this text - - - - - clears a print text command with this text - - - - - Used to be known as _SET_TEXT_COMPONENT_FORMAT - - - - - Used to be known as _SET_TEXT_COMPONENT_FORMAT - - - - - The following were found in the decompiled script files: - STRING, TWOSTRINGS, NUMBER, PERCENTAGE, FO_TWO_NUM, ESMINDOLLA, ESDOLLA, MTPHPER_XPNO, AHD_DIST, CMOD_STAT_0, CMOD_STAT_1, CMOD_STAT_2, CMOD_STAT_3, DFLT_MNU_OPT, F3A_TRAFDEST, ES_HELP_SOC3 - ESDOLLA - ESMINDOLLA - cash (negative) - Used to be known as _SET_TEXT_ENTRY - - - - - The following were found in the decompiled script files: - STRING, TWOSTRINGS, NUMBER, PERCENTAGE, FO_TWO_NUM, ESMINDOLLA, ESDOLLA, MTPHPER_XPNO, AHD_DIST, CMOD_STAT_0, CMOD_STAT_1, CMOD_STAT_2, CMOD_STAT_3, DFLT_MNU_OPT, F3A_TRAFDEST, ES_HELP_SOC3 - ESDOLLA - ESMINDOLLA - cash (negative) - Used to be known as _SET_TEXT_ENTRY - - - - - nothin doin. - BOOL Message(char* text) - { - BEGIN_TEXT_COMMAND_IS_MESSAGE_DISPLAYED("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - return END_TEXT_COMMAND_IS_MESSAGE_DISPLAYED(); - } - - - - - nothin doin. - BOOL Message(char* text) - { - BEGIN_TEXT_COMMAND_IS_MESSAGE_DISPLAYED("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - return END_TEXT_COMMAND_IS_MESSAGE_DISPLAYED(); - } - - - - - BOOL IsContextActive(char *ctx) - { - BEGIN_TEXT_COMMAND_IS_THIS_HELP_MESSAGE_BEING_DISPLAYED(ctx); - return END_TEXT_COMMAND_IS_THIS_HELP_MESSAGE_BEING_DISPLAYED(0); - } - - - - - BOOL IsContextActive(char *ctx) - { - BEGIN_TEXT_COMMAND_IS_THIS_HELP_MESSAGE_BEING_DISPLAYED(ctx); - return END_TEXT_COMMAND_IS_THIS_HELP_MESSAGE_BEING_DISPLAYED(0); - } - - - - - get's line count - int GetLineCount(char *text, float x, float y) - { - _BEGIN_TEXT_COMMAND_LINE_COUNT("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - return _END_TEXT_COMMAND_GET_LINE_COUNT(x, y); - } - - - - - get's line count - int GetLineCount(char *text, float x, float y) - { - _BEGIN_TEXT_COMMAND_LINE_COUNT("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - return _END_TEXT_COMMAND_GET_LINE_COUNT(x, y); - } - - - - - nothin doin. - void message() - { - _BEGIN_TEXT_COMMAND_OBJECTIVE("AHT_RTIT"); - _END_TEXT_COMMAND_OBJECTIVE(0); - } - - - - - nothin doin. - void message() - { - _BEGIN_TEXT_COMMAND_OBJECTIVE("AHT_RTIT"); - _END_TEXT_COMMAND_OBJECTIVE(0); - } - - - - - Used to be known as _SET_TEXT_ENTRY_2 - void ShowSubtitle(char *text) - { - BEGIN_TEXT_COMMAND_PRINT("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - END_TEXT_COMMAND_PRINT(2000, 1); - } - - - - - Used to be known as _SET_TEXT_ENTRY_2 - void ShowSubtitle(char *text) - { - BEGIN_TEXT_COMMAND_PRINT("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - END_TEXT_COMMAND_PRINT(2000, 1); - } - - - - - Previously called _BEGIN_TEXT_COMPONENT - Called prior to adding a text component to the UI. After doing so, GRAPHICS::END_TEXT_COMMAND_SCALEFORM_STRING is called. - Examples: - GRAPHICS::BEGIN_TEXT_COMMAND_SCALEFORM_STRING("NUMBER"); - UI::ADD_TEXT_COMPONENT_INTEGER(GAMEPLAY::ABSI(a_1)); - GRAPHICS::END_TEXT_COMMAND_SCALEFORM_STRING(); - GRAPHICS::BEGIN_TEXT_COMMAND_SCALEFORM_STRING("STRING"); - UI::_ADD_TEXT_COMPONENT_STRING(a_2); - GRAPHICS::END_TEXT_COMMAND_SCALEFORM_STRING(); - GRAPHICS::BEGIN_TEXT_COMMAND_SCALEFORM_STRING("STRTNM2"); - UI::_0x17299B63C7683A2B(v_3); - UI::_0x17299B63C7683A2B(v_4); - GRAPHICS::END_TEXT_COMMAND_SCALEFORM_STRING(); - GRAPHICS::BEGIN_TEXT_COMMAND_SCALEFORM_STRING("STRTNM1"); - UI::_0x17299B63C7683A2B(v_3); - GRAPHICS::END_TEXT_COMMAND_SCALEFORM_STRING(); - - - - - Previously called _BEGIN_TEXT_COMPONENT - Called prior to adding a text component to the UI. After doing so, GRAPHICS::END_TEXT_COMMAND_SCALEFORM_STRING is called. - Examples: - GRAPHICS::BEGIN_TEXT_COMMAND_SCALEFORM_STRING("NUMBER"); - UI::ADD_TEXT_COMPONENT_INTEGER(GAMEPLAY::ABSI(a_1)); - GRAPHICS::END_TEXT_COMMAND_SCALEFORM_STRING(); - GRAPHICS::BEGIN_TEXT_COMMAND_SCALEFORM_STRING("STRING"); - UI::_ADD_TEXT_COMPONENT_STRING(a_2); - GRAPHICS::END_TEXT_COMMAND_SCALEFORM_STRING(); - GRAPHICS::BEGIN_TEXT_COMMAND_SCALEFORM_STRING("STRTNM2"); - UI::_0x17299B63C7683A2B(v_3); - UI::_0x17299B63C7683A2B(v_4); - GRAPHICS::END_TEXT_COMMAND_SCALEFORM_STRING(); - GRAPHICS::BEGIN_TEXT_COMMAND_SCALEFORM_STRING("STRTNM1"); - UI::_0x17299B63C7683A2B(v_3); - GRAPHICS::END_TEXT_COMMAND_SCALEFORM_STRING(); - - - - - Starts a text command to change the name of a blip displayed in the pause menu. - This should be paired with [`END_TEXT_COMMAND_SET_BLIP_NAME`](#_0xBC38B49BCB83BC9B), once adding all required text components. - - The text label to set. - - - - void message(char *text) - { - _BEGIN_TEXT_COMMAND_TIMER("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - _END_TEXT_COMMAND_TIMER(0); - } - - - - - void message(char *text) - { - _BEGIN_TEXT_COMMAND_TIMER("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - _END_TEXT_COMMAND_TIMER(0); - } - - - - - Example: - _BEGIN_TEXT_COMMAND_WIDTH("NUMBER"); - ADD_TEXT_COMPONENT_FLOAT(69.420f, 2); - float width = _END_TEXT_COMMAND_GET_WIDTH(true); - - - - - Example: - _BEGIN_TEXT_COMMAND_WIDTH("NUMBER"); - ADD_TEXT_COMPONENT_FLOAT(69.420f, 2); - float width = _END_TEXT_COMMAND_GET_WIDTH(true); - - - - - Plays the siren sound of a vehicle which is otherwise activated when fastly double-pressing the horn key. - Only works on vehicles with a police siren. - - - - - calling this each frame, it stops the player from receiving a weapon via the weapon wheel. - - - - - calling this each frame, it stops the player from receiving a weapon via the weapon wheel. - - - - - Calculates the travel distance between a set of points. - Doesn't seem to correlate with distance on gps sometimes. - - - - - This is similar to the PushScaleformMovieFunction natives, except it calls in the `TIMELINE` of a minimap overlay. - - The minimap overlay ID. - A function in the overlay's TIMELINE. - - - - Calls the Scaleform function and passes the parameters as floats. - The number of parameters passed to the function varies, so the end of the parameter list is represented by -1.0. - - - - - Calls the Scaleform function and passes both float and string parameters (in their respective order). - The number of parameters passed to the function varies, so the end of the float parameters is represented by -1.0, and the end of the string parameters is represented by 0 (NULL). - NOTE: The order of parameters in the function prototype is important! All float parameters must come first, followed by the string parameters. - Examples: - // function MY_FUNCTION(floatParam1, floatParam2, stringParam) - GRAPHICS::_CALL_SCALEFORM_MOVIE_FUNCTION_MIXED_PARAMS(scaleform, "MY_FUNCTION", 10.0, 20.0, -1.0, -1.0, -1.0, "String param", 0, 0, 0, 0); - // function MY_FUNCTION_2(floatParam, stringParam1, stringParam2) - GRAPHICS::_CALL_SCALEFORM_MOVIE_FUNCTION_MIXED_PARAMS(scaleform, "MY_FUNCTION_2", 10.0, -1.0, -1.0, -1.0, -1.0, "String param #1", "String param #2", 0, 0, 0); - - - - - Calls the Scaleform function and passes the parameters as strings. - The number of parameters passed to the function varies, so the end of the parameter list is represented by 0 (NULL). - - - - - Calls the Scaleform function. - - - - - Calls the Scaleform function. - - - - - Prevents the ped from going limp. - [Example: Can prevent peds from falling when standing on moving vehicles.] - - - - - Returns true if ped1 can see ped2 in their line of vision - - - - - Returns true if ped1 can see ped2 in their line of vision - - - - - Checks if the ped can play the speech or has the speech file, last parameter is usually 0 - - - - - Checks if the ped can play the speech or has the speech file, last parameter is usually 0 - - - - - This one is weird and seems to return a TRUE state regardless of whether the phone is visible on screen or tucked away. - I can confirm the above. This function is hard-coded to always return 1. - - - - - if(_CAN_PLAY_ONLINE() == 0) means the player is banned(Social Club or Rockstar) - - - - - if(_CAN_PLAY_ONLINE() == 0) means the player is banned(Social Club or Rockstar) - - - - - if (CAN_REGISTER_MISSION_ENTITIES(20, 20, 20, 10)) - { - } - - - - - modelHash (p1) was always 0 in R* scripts - - - - - this returns if you can use the weapon while using a parachute - - - - - Cancels the currently executing event. - - - - - All music event names found in the b617d scripts: pastebin.com/GnYt0R3P - - - - - Does something similar to INTERIOR::DISABLE_INTERIOR - - - - - I'm guessing this rounds a float value up to the next whole number, and FLOOR rounds it down - - - - - hash collision??? - - - - - When calling this, the current frame will have the players "arrow icon" be focused on the dead center of the radar. - - - - - b2 and/or b3 maybe got something to do with keeping values from the last ped. Both of them set to 1 works great. <br/><br/>Examples from the decompiled scripts:<br/><br/>PLAYER::CHANGE_PLAYER_PED(PLAYER::PLAYER_ID(), l_5C0[4 -- [[14]] ], 0, 1);<br/>PLAYER::CHANGE_PLAYER_PED(PLAYER::PLAYER_ID(), a_0[a_0._f7 -- [[1]] ], a_2, 0);<br/><br/><br/>===========================================================<br/>The only way I ever got this to work in GTA Online once is by setting both to 0, 0. However, when you switch from your online character to whomever, your character will start walking away 'as if you left the game.' If from there you attempt to call this native once more to switch back to you online ped. You will freeze or if you try changing to another ped. I've tried all posibilities so far.<br/>1, 1 (Freeze), 0, 0(Works Once), 1, 0 & 0, 1 (Freeze). Note of course trying to call this on another online player will crash. Anyone have any idea if implementing a blr within the xex itself on a possible check if it would prevent this freezing?<br/>=========================================================== - - - - - minimum: Degrees between -90f and 90f. - maximum: Degrees between -90f and 90f. - Clamps the gameplay camera's current pitch. - Eg. _CLAMP_GAMEPLAY_CAM_PITCH(0.0f, 0.0f) will set the vertical angle directly behind the player. - - - - - minimum: Degrees between -180f and 180f. - maximum: Degrees between -180f and 180f. - Clamps the gameplay camera's current yaw. - Eg. _CLAMP_GAMEPLAY_CAM_YAW(0.0f, 0.0f) will set the horizontal angle directly behind the player. - - - - - Removes broken glass particles. - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - This function also has a p2, unknown. Signature AUDIO::CLEAR_AMBIENT_ZONE_STATE(char* zoneName, bool p1, Any p2); - Still needs more research. - Here are the names I've found: pastebin.com/AfA0Qjyv - New Ambient Zone List (Combind with old): pastebin.com/h8BsKgUD -DasChaos - - - - - Example: CLEAR_AREA(0, 0, 0, 30, true, false, false, false); - - - - - GAMEPLAY::_0x957838AAF91BD12D(x, y, z, radius, false, false, false, false); seem to make all objects go away, peds, vehicles etc. All booleans set to true doesn't seem to change anything. - - - - - GAMEPLAY::_0x957838AAF91BD12D(x, y, z, radius, false, false, false, false); seem to make all objects go away, peds, vehicles etc. All booleans set to true doesn't seem to change anything. - - - - - I looked through the PC scripts that this site provides you with a link to find. It shows the last param mainly uses, (0, 2, 6, 16, and 17) so I am going to assume it is a type of flag. - - - - - Example: CLEAR_AREA_OF_PEDS(0, 0, 0, 10000, 1); - - - - - Example: CLEAR_AREA_OF_VEHICLES(0, 0, 0, 10000, false, false, false, false, false); - - - - - This sets bit [offset] of [address] to off. - Example: - GAMEPLAY::CLEAR_BIT(&bitAddress, 1); - To check if this bit has been enabled: - GAMEPLAY::IS_BIT_SET(bitAddress, 1); // will return 0 afterwards - - - - - Resets the screen's draw-origin which was changed by the function GRAPHICS::SET_DRAW_ORIGIN(...) back to x=0,y=0. - See GRAPHICS::SET_DRAW_ORIGIN(...) for further information. - - - - - Clears the secondary timecycle modifier usually set with [`SetExtraTimecycleModifier`](#_0X3B2FD68DB5F8331C) - - - - - Clears the secondary timecycle modifier usually set with [`SetExtraTimecycleModifier`](#_0X3B2FD68DB5F8331C) - - - - - p0 looks like int in script - - - - - Clears a disabled GPS route area from a certain index previously set using [`SET_GPS_DISABLED_ZONE_AT_INDEX`](#_0xD0BC1C6FB18EE154). - - Index of disabled zone. - - - - Clears a disabled GPS route area from a certain index previously set using [`SET_GPS_DISABLED_ZONE_AT_INDEX`](#_0xD0BC1C6FB18EE154). - - Index of disabled zone. - - - - Clears the GPS flags. Only the script that originally called SET_GPS_FLAGS can clear them. - Doesn't seem like the flags are actually read by the game at all. - - - - - _CLEAR_NOTIFICATIONS_POS(0.5f); - - - - - _CLEAR_NOTIFICATIONS_POS(0.5f); - - - - - Somehow related to changing ped's clothes. - - - - - Somehow related to changing ped's clothes. - - - - - p1: from 0 to 5 in the b617d scripts. - p2: "blushing" and "ALL" found in the b617d scripts. - - - - - p1: from 0 to 5 in the b617d scripts. - p2: "blushing" and "ALL" found in the b617d scripts. - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - Removes the scubagear (for mp male: component id: 8, drawableId: 123, textureId: any) from peds. Does not play the 'remove scuba gear' animation, but instantly removes it. - - The ped to remove the scuba gear from. - - - - Removes the scubagear (for mp male: component id: 8, drawableId: 123, textureId: any) from peds. Does not play the 'remove scuba gear' animation, but instantly removes it. - - The ped to remove the scuba gear from. - - - - Removes the scubagear (for mp male: component id: 8, drawableId: 123, textureId: any) from peds. Does not play the 'remove scuba gear' animation, but instantly removes it. - - The ped to remove the scuba gear from. - - - - Immediately stops the pedestrian from whatever it's doing. They stop fighting, animations, etc. they forget what they were doing. - - - - - It clears the wetness of the selected Ped/Player. Clothes have to be wet to notice the difference. - - - - - This executes at the same as speed as PLAYER::SET_PLAYER_WANTED_LEVEL(player, 0, false); - PLAYER::GET_PLAYER_WANTED_LEVEL(player); executes in less than half the time. Which means that it's worth first checking if the wanted level needs to be cleared before clearing. However, this is mostly about good code practice and can important in other situations. The difference in time in this example is negligible. - - - - - Only used once in the decompiled scripts. Seems to be related to scripted vehicle generators. - Modified example from "am_imp_exp.c4", line 6418: - -- [[ popSchedules[0] = ZONE::GET_ZONE_POPSCHEDULE(ZONE::GET_ZONE_AT_COORDS(891.3, 807.9, 188.1)); - etc. - ]] - STREAMING::SET_MODEL_AS_NO_LONGER_NEEDED(vehicleHash); - ZONE::CLEAR_POPSCHEDULE_OVERRIDE_VEHICLE_MODEL(popSchedules[index]); - - - - - Clears the relationship between two groups. This should be called twice (once for each group). - Relationship types: - 0 = Companion - 1 = Respect - 2 = Like - 3 = Neutral - 4 = Dislike - 5 = Hate - 255 = Pedestrians - (Credits: Inco) - Example: - PED::CLEAR_RELATIONSHIP_BETWEEN_GROUPS(2, l_1017, 0xA49E591C); - PED::CLEAR_RELATIONSHIP_BETWEEN_GROUPS(2, 0xA49E591C, l_1017); - - - - - **This native does absolutely nothing, just a nullsub** - - - - - **This native does absolutely nothing, just a nullsub** - - - - - p0: found arguments in the b617d scripts: pastebin.com/X5akCN7z - - - - - thisScriptCheck - can be destroyed if it belongs to the calling script. - Example of Cloning Your Player: - CLONE_PED(PLAYER_PED_ID(), GET_ENTITY_HEADING(PLAYER_PED_ID()), 0, 1); - - - - - What exactly is the difference? What does this exactly do by chance? - ^ Copies ped's components and props to targetPed. - --------------------------------------------------------------------------------- - | Internally has a 3rd param (bool) which is set to true by default | - - - - - What exactly is the difference? What does this exactly do by chance? - ^ Copies ped's components and props to targetPed. - --------------------------------------------------------------------------------- - | Internally has a 3rd param (bool) which is set to true by default | - - - - - Commits the backing pixels to the specified runtime texture. - - The runtime texture handle. - - - - Compares two strings up to a specified number of characters. - Parameters: - str1 - String to be compared. - str2 - String to be compared. - matchCase - Comparison will be case-sensitive. - maxLength - Maximum number of characters to compare. A value of -1 indicates an infinite length. - Returns: - A value indicating the relationship between the strings: - <0 - The first non-matching character in 'str1' is less than the one in 'str2'. (e.g. 'A' < 'B', so result = -1) - 0 - The contents of both strings are equal. - >0 - The first non-matching character in 'str1' is less than the one in 'str2'. (e.g. 'B' > 'A', so result = 1) - Examples: - GAMEPLAY::COMPARE_STRINGS("STRING", "string", false, -1); // 0; equal - GAMEPLAY::COMPARE_STRINGS("TESTING", "test", false, 4); // 0; equal - GAMEPLAY::COMPARE_STRINGS("R2D2", "R2xx", false, 2); // 0; equal - GAMEPLAY::COMPARE_STRINGS("foo", "bar", false, -1); // 4; 'f' > 'b' - GAMEPLAY::COMPARE_STRINGS("A", "A", true, 1); // 0; equal - When comparing case-sensitive strings, lower-case characters are greater than upper-case characters: - GAMEPLAY::COMPARE_STRINGS("A", "a", true, 1); // -1; 'A' < 'a' - GAMEPLAY::COMPARE_STRINGS("a", "A", true, 1); // 1; 'a' > 'A' - - - - - Works for vehicles with a retractable landing gear - landing gear states: - 0: Deployed - 1: Closing - 2: Opening - 3: Retracted - - - - - Works for vehicles with a retractable landing gear - landing gear states: - 0: Deployed - 1: Closing - 2: Opening - 3: Retracted - - - - - Forces the ped to use the mounted weapon. - Returns false if task is not possible. - - - - - Used for doing money drop - Pickup hashes: pastebin.com/8EuSv2r1 - - - - - "DEFAULT_SCRIPTED_CAMERA" - "DEFAULT_ANIMATED_CAMERA" - "DEFAULT_SPLINE_CAMERA" - "DEFAULT_SCRIPTED_FLY_CAMERA" - "TIMED_SPLINE_CAMERA" - - - - - camName is always set to "DEFAULT_SCRIPTED_CAMERA" in Rockstar's scripts. - ------------ - Camera names found in the b617d scripts: - "DEFAULT_ANIMATED_CAMERA" - "DEFAULT_SCRIPTED_CAMERA" - "DEFAULT_SCRIPTED_FLY_CAMERA" - "DEFAULT_SPLINE_CAMERA" - ------------ - Side Note: It seems p8 is basically to represent what would be the bool p1 within CREATE_CAM native. As well as the p9 since it's always 2 in scripts seems to represent what would be the last param within SET_CAM_ROT native which normally would be 2. - - - - - CAM::_GET_GAMEPLAY_CAM_COORDS can be used instead of posX,Y,Z - CAM::_GET_GAMEPLAY_CAM_ROT can be used instead of rotX,Y,Z - CAM::_80EC114669DAEFF4() can be used instead of p7 (Possible p7 is FOV parameter. ) - p8 ??? - p9 uses 2 by default - - - - - Creates a checkpoint. Returns the handle of the checkpoint. - 20/03/17 : Attention, checkpoints are already handled by the game itself, so you must not loop it like markers. - Parameters: - * type - The type of checkpoint to create. See below for a list of checkpoint types. - * pos1 - The position of the checkpoint. - * pos2 - The position of the next checkpoint to point to. - * radius - The radius of the checkpoint. - * color - The color of the checkpoint. - * reserved - Special parameter, see below for details. Usually set to 0 in the scripts. - Checkpoint types: - 0-4---------Cylinder: 1 arrow, 2 arrow, 3 arrows, CycleArrow, Checker - 5-9---------Cylinder: 1 arrow, 2 arrow, 3 arrows, CycleArrow, Checker - 10-14-------Ring: 1 arrow, 2 arrow, 3 arrows, CycleArrow, Checker - 15-19-------1 arrow, 2 arrow, 3 arrows, CycleArrow, Checker - 20-24-------Cylinder: 1 arrow, 2 arrow, 3 arrows, CycleArrow, Checker - 25-29-------Cylinder: 1 arrow, 2 arrow, 3 arrows, CycleArrow, Checker - 30-34-------Cylinder: 1 arrow, 2 arrow, 3 arrows, CycleArrow, Checker - 35-38-------Ring: Airplane Up, Left, Right, UpsideDown - 39----------? - 40----------Ring: just a ring - 41----------? - 42-44-------Cylinder w/ number (uses 'reserved' parameter) - 45-47-------Cylinder no arrow or number - If using type 42-44, reserved sets number / number and shape to display - 0-99------------Just numbers (0-99) - 100-109-----------------Arrow (0-9) - 110-119------------Two arrows (0-9) - 120-129----------Three arrows (0-9) - 130-139----------------Circle (0-9) - 140-149------------CycleArrow (0-9) - 150-159----------------Circle (0-9) - 160-169----Circle w/ pointer (0-9) - 170-179-------Perforated ring (0-9) - 180-189----------------Sphere (0-9) - - - - - Creates a DUI browser. This can be used to draw on a runtime texture using CREATE_RUNTIME_TEXTURE_FROM_DUI_HANDLE. - - The initial URL to load in the browser. - The width of the backing surface. - The height of the backing surface. - A DUI object. - - - - Creates a new ped group. - Groups can contain up to 8 peds. - The parameter is unused. - Returns a handle to the created group, or 0 if a group couldn't be created. - - - - - enum IncidentTypes - { - FireDepartment = 3, - Paramedics = 5, - Police = 7, - PedsInCavalcades = 11, - Merryweather = 14 - }; - As for the 'police' incident, it will call police cars to you, but unlike PedsInCavalcades & Merryweather they won't start shooting at you unless you shoot first or shoot at them. The top 2 however seem to cancel theirselves if there is noone dead around you or a fire. I only figured them out as I found out the 3rd param is definately the amountOfPeople and they called incident 3 in scripts with 4 people (which the firetruck has) and incident 5 with 2 people (which the ambulence has). The 4 param I cant say is radius, but for the pedsInCavalcades and Merryweather R* uses 0.0f and for the top 3 (Emergency Services) they use 3.0f. - Side Note: It seems calling the pedsInCavalcades or Merryweather then removing it seems to break you from calling the EmergencyEvents and I also believe pedsInCavalcades. (The V cavalcades of course not IV). - Side Note 2: I say it breaks as if you call this proper, - if(CREATE_INCIDENT) etc it will return false if you do as I said above. - ===================================================== - - - - - p0 could be type (valueused in scripts: 14, 7, 5, 3, 11) - p1 is a return from get_player_ped() in am_gang_call.c, but player_ped_id() in other (non am) scripts. - p3 is usually 0f or 3f - ===================================================== - enum IncidentTypes - { - FireDepartment = 3, - Paramedics = 5, - Police = 7, - PedsInCavalcades = 11, - Merryweather = 14 - }; - As for the 'police' incident, it will call police cars to you, but unlike PedsInCavalcades & Merryweather they won't start shooting at you unless you shoot first or shoot at them. The top 2 however seem to cancel theirselves if there is noone dead around you or a fire. I only figured them out as I found out the 3rd param is definately the amountOfPeople and they called incident 3 in scripts with 4 people (which the firetruck has) and incident 5 with 2 people (which the ambulence has). The 4 param I cant say is radius, but for the pedsInCavalcades and Merryweather R* uses 0.0f and for the top 3 (Emergency Services) they use 3.0f. - Side Note: It seems calling the pedsInCavalcades or Merryweather then removing it seems to break you from calling the EmergencyEvents and I also believe pedsInCavalcades. (The V cavalcades of course not IV). - Side Note 2: I say it breaks as if you call this proper, - if(CREATE_INCIDENT) etc it will return false if you do as I said above. - ===================================================== - - - - - creates single lightning+thunder at random position - - - - - Train models HAVE TO be loaded (requested) before you use this. - For variation 15 - request: - freight - freightcar - freightgrain - freightcont1 - freightcont2 - freighttrailer - - - - - Creates a mobile phone of the specified type. - Possible phone types: - 0 - Default phone / Michael's phone - 1 - Trevor's phone - 2 - Franklin's phone - 4 - Prologue phone - These values represent bit flags, so a value of '3' would toggle Trevor and Franklin's phones together, causing unexpected behavior and most likely crash the game. - - - - - p5 = sets as true in scripts - Same as the comment for CREATE_MODEL_SWAP unless for some reason p5 affects it this only works with objects as well. - Network players do not see changes done with this. - - - - - Only works with objects! - Network players do not see changes done with this. - - - - - Spawns one or more money pickups. - x: The X-component of the world position to spawn the money pickups at. - y: The Y-component of the world position to spawn the money pickups at. - z: The Z-component of the world position to spawn the money pickups at. - value: The combined value of the pickups (in dollars). - amount: The number of pickups to spawn. - model: The model to use, or 0 for default money model. - Example: - CREATE_MONEY_PICKUPS(x, y, z, 1000, 3, 0x684a97ae); - Spawns 3 spray cans that'll collectively give $1000 when picked up. (Three spray cans, each giving $334, $334, $332 = $1000). - ============================================== - Max is 2000 in MP. So if you put the amount to 20, but the value to $400,000 eg. They will only be able to pickup 20 - $2,000 bags. So, $40,000 - - - - - p0 was the return of NET_TO_PED in fm_mission_controler. - p4 was always "". - returns headDisplayId - - - - - p0 was the return of NET_TO_PED in fm_mission_controler. - p4 was always "". - returns headDisplayId - - - - - Creates a new NaturalMotion message. - startImmediately: If set to true, the character will perform the message the moment it receives it by GIVE_PED_NM_MESSAGE. If false, the Ped will get the message but won't perform it yet. While it's a boolean value, if negative, the message will not be initialized. - messageId: The ID of the NaturalMotion message. - If a message already exists, this function does nothing. A message exists until the point it has been successfully dispatched by GIVE_PED_NM_MESSAGE. - - - - - thisScriptCheck - can be destroyed if it belongs to the calling script. - p5 - last parameter does not mean object handle is returned - maybe a quick view in disassembly will tell us what is actually does - ---------- - prop_tt_screenstatic (0xE2E039BC) is handled different. Not sure how yet but it I know it is. - - - - - thisScriptCheck - can be destroyed if it belongs to the calling script. - p5 - does not mean object handle is returned - maybe a quick view in disassembly will tell us what is actually does - ---------- - prop_tt_screenstatic (0xE2E039BC) is handled different. Not sure how yet but it I know it is. - - - - - thisScriptCheck - can be destroyed if it belongs to the calling script. - p7 - last parameter does not mean ped handle is returned - maybe a quick view in disassembly will tell us what is actually does - *Heading*: 0.0 - *Heading* is the Z axis spawn rotation of the ped 0->5th parameter. - Ped Types: - enum PedTypes - { - PED_TYPE_PLAYER_0,// michael - PED_TYPE_PLAYER_1,// franklin - PED_TYPE_NETWORK_PLAYER, // mp character - PED_TYPE_PLAYER_2,// trevor - PED_TYPE_CIVMALE, - PED_TYPE_CIVFEMALE, - PED_TYPE_COP, - PED_TYPE_GANG_ALBANIAN, - PED_TYPE_GANG_BIKER_1, - PED_TYPE_GANG_BIKER_2, - PED_TYPE_GANG_ITALIAN, - PED_TYPE_GANG_RUSSIAN, - PED_TYPE_GANG_RUSSIAN_2, - PED_TYPE_GANG_IRISH, - PED_TYPE_GANG_JAMAICAN, - PED_TYPE_GANG_AFRICAN_AMERICAN, - PED_TYPE_GANG_KOREAN, - PED_TYPE_GANG_CHINESE_JAPANESE, - PED_TYPE_GANG_PUERTO_RICAN, - PED_TYPE_DEALER, - PED_TYPE_MEDIC, - PED_TYPE_FIREMAN, - PED_TYPE_CRIMINAL, - PED_TYPE_BUM, - PED_TYPE_PROSTITUTE, - PED_TYPE_SPECIAL, - PED_TYPE_MISSION, - PED_TYPE_SWAT, - PED_TYPE_ANIMAL, - PED_TYPE_ARMY - }; - - - - - thisScriptCheck - can be destroyed if it belongs to the calling script. - p5 - last parameter does not mean ped handle is returned - maybe a quick view in disassembly will tell us what is actually does - Ped Types: - enum ePedType - { - PED_TYPE_PLAYER_0 = 0, - PED_TYPE_PLAYER_1 = 1, - PED_TYPE_PLAYER_2 = 3, - PED_TYPE_CIVMALE = 4, - PED_TYPE_CIVFEMALE = 5, - PED_TYPE_COP = 6, - PED_TYPE_UNKNOWN_7 = 7, - PED_TYPE_UNKNOWN_12 = 12, // gang member? - PED_TYPE_UNKNOWN_19 = 19, - PED_TYPE_MEDIC = 20, - PED_TYPE_FIREMAN = 21, - PED_TYPE_UNKNOWN_22 = 22, - PED_TYPE_UNKNOWN_25 = 25, - PED_TYPE_UNKNOWN_26 = 26, - PED_TYPE_SWAT = 27, - PED_TYPE_ANIMAL = 28, - PED_TYPE_ARMY = 29 - }; - - - - - Drops the Hook/Magnet on a cargobob - state - enum eCargobobHook - { - CARGOBOB_HOOK = 0, - CARGOBOB_MAGNET = 1, - }; - - - - - Drops the Hook/Magnet on a cargobob - state - enum eCargobobHook - { - CARGOBOB_HOOK = 0, - CARGOBOB_MAGNET = 1, - }; - - - - - Pickup hashes: pastebin.com/8EuSv2r1 - - - - - Pickup hashes: pastebin.com/8EuSv2r1 - flags: - 8 (1 << 3): place on ground - 512 (1 << 9): spin around - - - - - Pickup hashes: pastebin.com/8EuSv2r1 - - - - - vb.net - Dim ped_handle As Integer - With Game.Player.Character - Dim pos As Vector3 = .Position + .ForwardVector * 3 - ped_handle = Native.Function.Call(Of Integer)(Hash.CREATE_RANDOM_PED, pos.X, pos.Y, pos.Z) - End With - Creates a Ped at the specified location, returns the Ped Handle. - Ped will not act until SET_PED_AS_NO_LONGER_NEEDED is called. - - - - - Creates a blank runtime texture. - - A handle to the runtime TXD to create the runtime texture in. - The name for the texture in the runtime texture dictionary. - The width of the new texture. - The height of the new texture. - A runtime texture handle. - - - - Creates a runtime texture from a DUI handle. - - A handle to the runtime TXD to create the runtime texture in. - The name for the texture in the runtime texture dictionary. - The DUI handle returned from GET_DUI_HANDLE. - The runtime texture handle. - - - - Creates a runtime texture from the specified file in the current resource. - - A handle to the runtime TXD to create the runtime texture in. - The name for the texture in the runtime texture dictionary. - The file name of an image to load. This should preferably be a PNG, and has to be specified as a `file` in the resource manifest. - A runtime texture handle. - - - - Creates a runtime texture dictionary with the specified name. - Example: - ```lua - local txd = CreateRuntimeTxd('meow') - ``` - - The name for the runtime TXD. - A handle to the runtime TXD. - - - - Creates a script vehicle generator at the given coordinates. Most parameters after the model hash are unknown. - Parameters: - a/w/s - Generator position - heading - Generator heading - p4 - Unknown (always 5.0) - p5 - Unknown (always 3.0) - modelHash - Vehicle model hash - p7/8/9/10 - Unknown (always -1) - p11 - Unknown (usually TRUE, only one instance of FALSE) - p12/13 - Unknown (always FALSE) - p14 - Unknown (usally FALSE, only two instances of TRUE) - p15 - Unknown (always TRUE) - p16 - Unknown (always -1) - Vector3 coords = GET_ENTITY_COORDS(PLAYER_PED_ID(), 0); CREATE_SCRIPT_VEHICLE_GENERATOR(coords.x, coords.y, coords.z, 1.0f, 5.0f, 3.0f, GET_HASH_KEY("adder"), -1. -1, -1, -1, -1, true, false, false, false, true, -1); - - - - - p6 always 2 (but it doesnt seem to matter...) - roll and pitch 0 - yaw to Ped.rotation - - - - - Creates a tracked point, useful for checking the visibility of a 3D point on screen. - - - - - thisScriptCheck - can be destroyed if it belongs to the calling script. - - - - - Now has 8 params. - - - - - some camera effect that is used in the drunk-cheat, and turned off (by setting it to 0.0) along with the shaking effects once the drunk cheat is disabled. - - - - - some camera effect that is used in the drunk-cheat, and turned off (by setting it to 0.0) along with the shaking effects once the drunk cheat is disabled. - - - - - Example: - if (!DATAFILE::_BEDB96A7584AA8CF()) - { - if (!g_109E3) - { - if (((sub_d4f() == 2) == 0) && (!NETWORK::NETWORK_IS_GAME_IN_PROGRESS())) - { - if (NETWORK::NETWORK_IS_CLOUD_AVAILABLE()) - { - g_17A8B = 0; - } - if (!g_D52C) - { - sub_730(); - } - } - } - } - - - - - Example: - if (!DATAFILE::_BEDB96A7584AA8CF()) - { - if (!g_109E3) - { - if (((sub_d4f() == 2) == 0) && (!NETWORK::NETWORK_IS_GAME_IN_PROGRESS())) - { - if (NETWORK::NETWORK_IS_CLOUD_AVAILABLE()) - { - g_17A8B = 0; - } - if (!g_D52C) - { - sub_730(); - } - } - } - } - - - - - Returns whether or not the specified property is set for the entity. - - - - - Console Hash: 0x8DE5382F - The native name is correct but the db automatically prefixes "_" to unknown natives when changed. - - - - - Is property of that type. - enum eDecorType - { - DECOR_TYPE_FLOAT = 1, - DECOR_TYPE_BOOL, - DECOR_TYPE_INT, - DECOR_TYPE_UNK, - DECOR_TYPE_TIME - }; - - - - - Found this in standard_global_init.c4 line 1898 - void sub_523a() { - DECORATOR::DECOR_REGISTER("Player_Vehicle", 3); - DECORATOR::DECOR_REGISTER("PV_Slot", 3); - DECORATOR::DECOR_REGISTER("Previous_Owner", 3); - DECORATOR::DECOR_REGISTER("Sprayed_Vehicle_Decorator", 2); - DECORATOR::DECOR_REGISTER("Sprayed_Vehicle_Timer_Dec", 5); - DECORATOR::DECOR_REGISTER("Vehicle_Reward", 3); - DECORATOR::DECOR_REGISTER("Vehicle_Reward_Teams", 3); - DECORATOR::DECOR_REGISTER("Skill_Blocker", 2); - DECORATOR::DECOR_REGISTER("TargetPlayerForTeam", 3); - DECORATOR::DECOR_REGISTER("XP_Blocker", 2); - DECORATOR::DECOR_REGISTER("CrowdControlSetUp", 3); - DECORATOR::DECOR_REGISTER("Bought_Drugs", 2); - DECORATOR::DECOR_REGISTER("HeroinInPossession", 1); - DECORATOR::DECOR_REGISTER("CokeInPossession", 1); - DECORATOR::DECOR_REGISTER("WeedInPossession", 1); - DECORATOR::DECOR_REGISTER("MethInPossession", 1); - DECORATOR::DECOR_REGISTER("bombdec", 3); - DECORATOR::DECOR_REGISTER("bombdec1", 3); - DECORATOR::DECOR_REGISTER("bombowner", 3); - DECORATOR::DECOR_REGISTER("noPlateScan", 2); - DECORATOR::DECOR_REGISTER("prisonBreakBoss", 2); - DECORATOR::DECOR_REGISTER("cashondeadbody", 3); - DECORATOR::DECOR_REGISTER("MissionType", 3); - DECORATOR::DECOR_REGISTER("MatchId", 3); - DECORATOR::DECOR_REGISTER("TeamId", 3); - DECORATOR::DECOR_REGISTER("Not_Allow_As_Saved_Veh", 3); - DECORATOR::DECOR_REGISTER("Veh_Modded_By_Player", 3); - DECORATOR::DECOR_REGISTER("MPBitset", 3); - DECORATOR::DECOR_REGISTER("MC_EntityID", 3); - DECORATOR::DECOR_REGISTER("MC_ChasePedID", 3); - DECORATOR::DECOR_REGISTER("MC_Team0_VehDeliveredRules", 3); - DECORATOR::DECOR_REGISTER("MC_Team1_VehDeliveredRules", 3); - DECORATOR::DECOR_REGISTER("MC_Team2_VehDeliveredRules", 3); - DECORATOR::DECOR_REGISTER("MC_Team3_VehDeliveredRules", 3); - DECORATOR::DECOR_REGISTER("AttributeDamage", 3); - DECORATOR::DECOR_REGISTER("GangBackup", 3); - DECORATOR::DECOR_REGISTER("CreatedByPegasus", 2); - DECORATOR::DECOR_REGISTER("BeforeCorona_0", 2); - } - ----------------------------------------------------------------------- - Defines type of property for property name. - enum eDecorType - { - DECOR_TYPE_FLOAT = 1, - DECOR_TYPE_BOOL, - DECOR_TYPE_INT, - DECOR_TYPE_UNK, - DECOR_TYPE_TIME - }; - - - - - Called after all decorator type initializations. - - - - - This function sets metadata of type bool to specified entity. - - - - - Console Hash: 0xBC7BD5CB - The native name is correct but the db automatically prefixes "_" to unknown natives when changed. - - - - - Sets property to int. - - - - - Deletes the specified entity, then sets the handle pointed to by the pointer to NULL. - - - - - Delete an incident with a given id. - ======================================================= - Correction, I have change this to int, instead of int* - as it doesn't use a pointer to the createdIncident. - If you try it you will crash (or) freeze. - ======================================================= - - - - - Deletes the specified object, then sets the handle pointed to by the pointer to NULL. - meme. - - - - - From the b617d scripts: - AI::DELETE_PATROL_ROUTE("miss_merc0"); - AI::DELETE_PATROL_ROUTE("miss_merc1"); - AI::DELETE_PATROL_ROUTE("miss_merc2"); - AI::DELETE_PATROL_ROUTE("miss_dock"); - - - - - Deletes the specified ped, then sets the handle pointed to by the pointer to NULL. - - - - - Deletes a vehicle. - The vehicle must be a mission entity to delete, so call this before deleting: SET_ENTITY_AS_MISSION_ENTITY(vehicle, true, true); - eg how to use: - SET_ENTITY_AS_MISSION_ENTITY(vehicle, true, true); - DELETE_VEHICLE(&vehicle); - Deletes the specified vehicle, then sets the handle pointed to by the pointer to NULL. - - - - - BOOL param indicates whether the cam should be destroyed if it belongs to the calling script. - - - - - BOOL param indicates whether the cam should be destroyed if it belongs to the calling script. - - - - - Destroys a DUI browser. - - The DUI browser handle. - - - - Destroys the currently active mobile phone. - - - - - Hash collision - - - - - p1 and p2 have no effect - maybe a quick disassembly will tell us what they do - the statement below seems to be false. when I tried it with 2 vehicles: - if p2 is set to true, the both entities won't collide with the other until the distance between them is above 4 meters. - - - - - First two parameters swapped. Scripts verify that towTruck is the first parameter, not the second. - - - - - Public Sub detatchTrailer(vh1 As Vehicle) - Native.Function.Call(Hash.DETACH_VEHICLE_FROM_TRAILER, vh1) - End Sub - - - - - Detaches the vehicle's windscreen. - For further information, see : gtaforums.com/topic/859570-glass/#entry1068894566 - - - - - Hash collision!!! - Returns a blip handle. - - - - - control values and meaning: github.com/crosire/scripthookvdotnet/blob/dev_v3/source/scripting/Controls.cs - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - Control values from the decompiled scripts: 0,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,53,5 - 4,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,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,105, - 107,108,109,110,111,112,113,114,115,116,117,118,119,123,126,129,130,131,132, - 133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152, - 153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,171,172 - ,177,187,188,189,190,195,196,199,200,201,202,203,205,207,208,209,211,212,213, 217,219,220,221,225,226,230,234,235,236,237,238,239,240,241,242,243,244,257, - 261,262,263,264,265,270,271,272,273,274,278,279,280,281,282,283,284,285,286, - 287,288,289,337. - Example: CONTROLS::DISABLE_CONTROL_ACTION(2, 19, true) disables the switching UI from appearing both when using a keyboard and Xbox 360 controller. Needs to be executed each frame. - Control group 1 and 0 gives the same results as 2. Same results for all players. - - - - - Disables first person camera for the current frame. - Found in decompiled scripts: - GRAPHICS::DRAW_DEBUG_TEXT_2D("Disabling First Person Cam", 0.5, 0.8, 0.0, 0, 0, 255, 255); - CAM::_DE2EF5DA284CC8DF(); - - - - - The game by default has 5 hospital respawn points. Disabling them all will cause the player to respawn at the last position they were. - Doesn't work.... - - - - - Example: - This removes the interior from the strip club and when trying to walk inside the player just falls: - INTERIOR::DISABLE_INTERIOR(118018, true); - - - - - Disables the phone up-button, oddly enough. - i.e.: When the phone is out, and this method is called with false as it's parameter, the phone will not be able to scroll up. However, when you use the down arrow key, it's functionality still, works on the phone. - When the phone is not out, and this method is called with false as it's parameter, you will not be able to bring up the phone. Although the up arrow key still works for whatever functionality it's used for, just not for the phone. - This can be used for creating menu's when trying to disable the phone from being used. - You do not have to call the function again with false as a parameter, as soon as the function stops being called, the phone will again be usable. - - - - - Disables the phone up-button, oddly enough. - i.e.: When the phone is out, and this method is called with false as it's parameter, the phone will not be able to scroll up. However, when you use the down arrow key, it's functionality still, works on the phone. - When the phone is not out, and this method is called with false as it's parameter, you will not be able to bring up the phone. Although the up arrow key still works for whatever functionality it's used for, just not for the phone. - This can be used for creating menu's when trying to disable the phone from being used. - You do not have to call the function again with false as a parameter, as soon as the function stops being called, the phone will again be usable. - - - - - hash collision??? - Don't think so. It fits alphabetically and it used with a plane in the scripts - Ailerons are responsible for the rolling motion of a plane. - - - - - Inhibits the player from using any method of combat including melee and firearms. - NOTE: Only disables the firing for one frame - - - - - Disables the spawn point at the police house on the specified index. - policeIndex: The police house index. - toggle: true to enable the spawn point, false to disable. - - - - - confirmed working - - - - - if set to true, prevents vehicle sirens from having sound, leaving only the lights. - HASH COLLISION !!! Please change to _SET_DISABLE_VEHICLE_SIREN_SOUND - ----- - SET_VEHICLE_HAS_* - - - - - how does this work? - - - - - "DISPLAY_CASH(false);" makes the cash amount render on the screen when appropriate - "DISPLAY_CASH(true);" disables cash amount rendering - - - - - Toggles to render distant vehicles. They may not be vehicles but images to look like vehicles. - - - - - Toggles to render distant vehicles. They may not be vehicles but images to look like vehicles. - - - - - The messages are localized strings. - Examples: - "No_bus_money" - "Enter_bus" - "Tour_help" - "LETTERS_HELP2" - "Dummy" - **The bool appears to always be false (if it even is a bool, as it's represented by a zero)** - -------- - p1 doesn't seem to make a difference, regardless of the state it's in. - picture of where on the screen this is displayed? - - - - - If Hud should be displayed - - - - - Shows a hud element for reporting jobs - - - - - Shows a hud element for reporting jobs - - - - - note, p0 is set to 6 for PC platform in at least 1 script, or to `unk::_get_ui_language_id() == 0` otherwise. - NOTE: windowTitle uses text labels, and an invalid value will display nothing. - Dr. Underscore: `UNK::_GET_UI_LANGUAGE_ID()` is now `UNK::_GET_CURRENT_LANGUAGE_ID()` - www.gtaforums.com/topic/788343-vrel-script-hook-v/?p=1067380474 - windowTitle's - ----------------- - CELL_EMAIL_BOD = "Enter your Eyefind message" - CELL_EMAIL_BODE = "Message too long. Try again" - CELL_EMAIL_BODF = "Forbidden message. Try again" - CELL_EMAIL_SOD = "Enter your Eyefind subject" - CELL_EMAIL_SODE = "Subject too long. Try again" - CELL_EMAIL_SODF = "Forbidden text. Try again" - CELL_EMASH_BOD = "Enter your Eyefind message" - CELL_EMASH_BODE = "Message too long. Try again" - CELL_EMASH_BODF = "Forbidden message. Try again" - CELL_EMASH_SOD = "Enter your Eyefind subject" - CELL_EMASH_SODE = "Subject too long. Try again" - CELL_EMASH_SODF = "Forbidden Text. Try again" - FMMC_KEY_TIP10 = "Enter Synopsis" - FMMC_KEY_TIP12 = "Enter Custom Team Name" - FMMC_KEY_TIP12F = "Forbidden Text. Try again" - FMMC_KEY_TIP12N = "Custom Team Name" - FMMC_KEY_TIP8 = "Enter Message" - FMMC_KEY_TIP8F = "Forbidden Text. Try again" - FMMC_KEY_TIP8FS = "Invalid Message. Try again" - FMMC_KEY_TIP8S = "Enter Message" - FMMC_KEY_TIP9 = "Enter Outfit Name" - FMMC_KEY_TIP9F = "Invalid Outfit Name. Try again" - FMMC_KEY_TIP9N = "Outfit Name" - PM_NAME_CHALL = "Enter Challenge Name" - - - - - only documented to be continued... - - - - - only documented to be continued... - - - - - If Minimap / Radar should be displayed. - - - - - Displays the crosshair for this frame. - - - - - Purpose of the BOOL currently unknown. - Both, true and false, work - - - - - Fades the screen in. - duration: The time the fade should take, in milliseconds. - - - - - Fades the screen out. - duration: The time the fade should take, in milliseconds. - - - - - Returns whether or not the passed camera handle exists. - - - - - Returns true only when the hook is active, will return false if the magnet is active - - - - - Returns true only when the hook is active, will return false if the magnet is active - - - - - Returns true only when the magnet is active, will return false if the hook is active - console hash 0x4778CA0A - - - - - Returns true only when the magnet is active, will return false if the hook is active - console hash 0x4778CA0A - - - - - Returns true if a destructible object with this handle exists, false otherwise. - - - - - Returns true if a destructible object with this handle exists, false otherwise. - - - - - Example: - if (OBJECT::_DOES_DOOR_EXIST(doorHash)) - { - OBJECT::REMOVE_DOOR_FROM_SYSTEM(doorHash); - } - - - - - Example: - if (OBJECT::_DOES_DOOR_EXIST(doorHash)) - { - OBJECT::REMOVE_DOOR_FROM_SYSTEM(doorHash); - } - - - - - Checks via CVehicleModelInfo - - - - - p5 is usually 0. - - - - - Returns whether the ped's blip is controlled by the game. - It's the default blip you can see on enemies during freeroam in singleplayer (the one that fades out quickly). - - - - - Ptr is correct - - - - - Occurrences in the b617d scripts: - "ARMY_GUARD", - "ARMY_HELI", - "Cinema_Downtown", - "Cinema_Morningwood", - "Cinema_Textile", - "City_Banks", - "Countryside_Banks", - "DEALERSHIP", - "GRAPESEED_PLANES", - "KORTZ_SECURITY", - "LOST_BIKERS", - "LSA_Planes", - "LSA_Planes", - "MP_POLICE", - "Observatory_Bikers", - "POLICE_POUND1", - "POLICE_POUND2", - "POLICE_POUND3", - "POLICE_POUND4", - "POLICE_POUND5" - "QUARRY", - "SANDY_PLANES", - "SCRAP_SECURITY", - "SEW_MACHINE", - "SOLOMON_GATE", - "Triathlon_1_Start", - "Triathlon_2_Start", - "Triathlon_3_Start" - Sometimes used with IS_SCENARIO_GROUP_ENABLED: - if (AI::DOES_SCENARIO_GROUP_EXIST("Observatory_Bikers") && (!AI::IS_SCENARIO_GROUP_ENABLED("Observatory_Bikers"))) { - else if (AI::IS_SCENARIO_GROUP_ENABLED("BLIMP")) { - - - - - For a full list, see here: pastebin.com/yLNWicUi - - - - - formerly _IS_STREAMED_SCRIPT_RUNNING - Jenkins hash: 0x19EAE282 - - - - - formerly _IS_STREAMED_SCRIPT_RUNNING - Jenkins hash: 0x19EAE282 - - - - - Checks if there is a cover point at position - - - - - Checks if the passed gxt name exists in the game files. - - - - - This function is called before ADD_CLAN_DECAL_TO_VEHICLE to see if it needs to run. IDK if it's for clan decal or not, but the 2nd parameter might be decal index? It's always passed 0. Not sure what this function really does. But it does return 0 if the clan tag is not on, and 1 if it is. - - - - - This function is called before ADD_CLAN_DECAL_TO_VEHICLE to see if it needs to run. IDK if it's for clan decal or not, but the 2nd parameter might be decal index? It's always passed 0. Not sure what this function really does. But it does return 0 if the clan tag is not on, and 1 if it is. - - - - - Maximum amount of vehicles with vehicle stuck check appears to be 16. - - - - - OBJECT::_9B12F9A24FABEDB0(${prop_gate_prison_01}, 1845.0, 2605.0, 45.0, 0, 0.0, 50.0, 0); //door unlocked - OBJECT::_9B12F9A24FABEDB0(${prop_gate_prison_01}, 1845.0, 2605.0, 45.0, 1, 0.0, 50.0, 0); //door locked - locked simply tells the game whether or not the door is locked. - x,y,z RotMult are multipliers that specify how fast the door/gate will rotate in degrees per second. - - - - - Downloads prod.cloud.rockstargames.com/titles/gta5/<platform>/check.json - - - - - Downloads prod.cloud.rockstargames.com/titles/gta5/<platform>/check.json - - - - - x,y,z = start pos - x2,y2,z2 = end pos - Draw's a 3D Box between the two x,y,z coords. - -------------- - Keep in mind that the edges of the box do only align to the worlds base-vectors. Therefore something like rotation cannot be applied. That means this function is pretty much useless, unless you want a static unicolor box somewhere. - I recommend using a predefined function to call this. - [VB.NET] - Public Sub DrawBox(a As Vector3, b As Vector3, col As Color) - [Function].Call(Hash.DRAW_BOX,a.X, a.Y, a.Z,b.X, b.Y, b.Z,col.R, col.G, col.B, col.A) - End Sub - [C#] - public void DrawBox(Vector3 a, Vector3 b, Color col) - { - Function.Call(Hash.DRAW_BOX,a.X, a.Y, a.Z,b.X, b.Y, b.Z,col.R, col.G, col.B, col.A); - } - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - instructionalKey enum list: - ``` - Buttons = { - Empty = 0, - Select = 1, -- (RETURN) - Ok = 2, -- (RETURN) - Yes = 4, -- (RETURN) - Back = 8, -- (ESC) - Cancel = 16, -- (ESC) - No = 32, -- (ESC) - RetrySpace = 64, -- (SPACE) - Restart = 128, -- (SPACE) - Skip = 256, -- (SPACE) - Quit = 512, -- (ESC) - Adjust = 1024, -- (ARROWS) - SpaceKey = 2048, -- (SPACE) - Share = 4096, -- (SPACE) - SignIn = 8192, -- (SPACE) - Continue = 16384, -- (RETURN) - AdjustLeftRight = 32768, -- (SCROLL L/R) - AdjustUpDown = 65536, -- (SCROLL U/D) - Overwrite = 131072, -- (SPACE) - SocialClubSignup = 262144, -- (RETURN) - Confirm = 524288, -- (RETURN) - Queue = 1048576, -- (RETURN) - RetryReturn = 2097152, -- (RETURN) - BackEsc = 4194304, -- (ESC) - SocialClub = 8388608, -- (RETURN) - Spectate = 16777216, -- (SPACE) - OkEsc = 33554432, -- (ESC) - CancelTransfer = 67108864, -- (ESC) - LoadingSpinner = 134217728, - NoReturnToGTA = 268435456, -- (ESC) - CancelEsc = 536870912, -- (ESC) - } - Alt = { - Empty = 0, - No = 1, -- (SPACE) - Host = 2, -- (ESC) - SearchForJob = 4, -- (RETURN) - ReturnKey = 8, -- (TURN) - Freemode = 16, -- (ESC) - } - ``` - **Result of the example code:** <https://i.imgur.com/TvmNF4k.png> - - Label of the alert's title. - Label of the alert's message. - This is an enum, check the description for a list. - This is an enum, check the description for a list. - Label of another message line - usually 0 - usually -1 - usually 0 - unknown label - unknown label - Set to anything other than 0 or false (even any string) and it will draw a background. Setting it to 0 or false will draw no background. - unknown value default false, it shows an error code at the bottom left - - - - instructionalKey enum list: - ``` - Buttons = { - Empty = 0, - Select = 1, -- (RETURN) - Ok = 2, -- (RETURN) - Yes = 4, -- (RETURN) - Back = 8, -- (ESC) - Cancel = 16, -- (ESC) - No = 32, -- (ESC) - RetrySpace = 64, -- (SPACE) - Restart = 128, -- (SPACE) - Skip = 256, -- (SPACE) - Quit = 512, -- (ESC) - Adjust = 1024, -- (ARROWS) - SpaceKey = 2048, -- (SPACE) - Share = 4096, -- (SPACE) - SignIn = 8192, -- (SPACE) - Continue = 16384, -- (RETURN) - AdjustLeftRight = 32768, -- (SCROLL L/R) - AdjustUpDown = 65536, -- (SCROLL U/D) - Overwrite = 131072, -- (SPACE) - SocialClubSignup = 262144, -- (RETURN) - Confirm = 524288, -- (RETURN) - Queue = 1048576, -- (RETURN) - RetryReturn = 2097152, -- (RETURN) - BackEsc = 4194304, -- (ESC) - SocialClub = 8388608, -- (RETURN) - Spectate = 16777216, -- (SPACE) - OkEsc = 33554432, -- (ESC) - CancelTransfer = 67108864, -- (ESC) - LoadingSpinner = 134217728, - NoReturnToGTA = 268435456, -- (ESC) - CancelEsc = 536870912, -- (ESC) - } - Alt = { - Empty = 0, - No = 1, -- (SPACE) - Host = 2, -- (ESC) - SearchForJob = 4, -- (RETURN) - ReturnKey = 8, -- (TURN) - Freemode = 16, -- (ESC) - } - ``` - **Result of the example code:** <https://i.imgur.com/TvmNF4k.png> - - Label of the alert's title. - Label of the alert's message. - This is an enum, check the description for a list. - This is an enum, check the description for a list. - Label of another message line - usually 0 - usually -1 - usually 0 - unknown label - unknown label - Set to anything other than 0 or false (even any string) and it will draw a background. Setting it to 0 or false will draw no background. - unknown value default false, it shows an error code at the bottom left - - - - Similar to [\_DRAW_SPRITE](#_0xE7FFAE5EBF23D890), but seems to be some kind of "interactive" sprite, at least used by render targets. - These seem to be the only dicts ever requested by this native: - ``` - prop_screen_biker_laptop - Prop_Screen_GR_Disruption - Prop_Screen_TaleOfUs - prop_screen_nightclub - Prop_Screen_IE_Adhawk - prop_screen_sm_free_trade_shipping - prop_screen_hacker_truck - MPDesktop - Prop_Screen_Nightclub - And a few others - ``` - - Name of texture dictionary to load texture from - Name of texture to load from texture dictionary - Screen X - Screen Y - Scale X - Scale Y - Texture rotation in degrees (default = 0.0) positive is clockwise, measured in degrees - Color - Color - Color - Opacity level - - - - Similar to [\_DRAW_SPRITE](#_0xE7FFAE5EBF23D890), but seems to be some kind of "interactive" sprite, at least used by render targets. - These seem to be the only dicts ever requested by this native: - ``` - prop_screen_biker_laptop - Prop_Screen_GR_Disruption - Prop_Screen_TaleOfUs - prop_screen_nightclub - Prop_Screen_IE_Adhawk - prop_screen_sm_free_trade_shipping - prop_screen_hacker_truck - MPDesktop - Prop_Screen_Nightclub - And a few others - ``` - - Name of texture dictionary to load texture from - Name of texture to load from texture dictionary - Screen X - Screen Y - Scale X - Scale Y - Texture rotation in degrees (default = 0.0) positive is clockwise, measured in degrees - Color - Color - Color - Opacity level - - - - Draws a depth-tested line from one point to another. - ---------------- - x1, y1, z1 : Coordinates for the first point - x2, y2, z2 : Coordinates for the second point - r, g, b, alpha : Color with RGBA-Values - I recommend using a predefined function to call this. - [VB.NET] - Public Sub DrawLine(from As Vector3, [to] As Vector3, col As Color) - [Function].Call(Hash.DRAW_LINE, from.X, from.Y, from.Z, [to].X, [to].Y, [to].Z, col.R, col.G, col.B, col.A) - End Sub - [C#] - public void DrawLine(Vector3 from, Vector3 to, Color col) - { - Function.Call(Hash.DRAW_LINE, from.X, from.Y, from.Z, to.X, to.Y, to.Z, col.R, col.G, col.B, col.A); - } - - - - - Draws a marker with the specified appearance at the target location. This has to be called every frame, e.g. in a `Wait(0)` loop. - There's a [list of markers](https://docs.fivem.net/game-references/markers/) on the FiveM documentation site. - - The marker type to draw. - The X coordinate to draw the marker at. - The Y coordinate to draw the marker at. - The Z coordinate to draw the marker at. - The X component of the direction vector for the marker, or 0.0 to use rotX/Y/Z. - The Y component of the direction vector for the marker, or 0.0 to use rotX/Y/Z. - The Z component of the direction vector for the marker, or 0.0 to use rotX/Y/Z. - The X rotation for the marker. Only used if the direction vector is 0.0. - The Y rotation for the marker. Only used if the direction vector is 0.0. - The Z rotation for the marker. Only used if the direction vector is 0.0. - The scale for the marker on the X axis. - The scale for the marker on the Y axis. - The scale for the marker on the Z axis. - The red component of the marker color, on a scale from 0-255. - The green component of the marker color, on a scale from 0-255. - The blue component of the marker color, on a scale from 0-255. - The alpha component of the marker color, on a scale from 0-255. - Whether or not the marker should slowly animate up/down. - Whether the marker should be a 'billboard', as in, should constantly face the camera. - Typically set to `2`. Does not seem to matter directly. - Rotations only apply to the heading. - A texture dictionary to draw the marker with, or NULL. Example: 'GolfPutting' - A texture name in `textureDict` to draw the marker with, or NULL. Example: 'PuttingMarker' - Whether or not the marker should draw on intersecting entities. - - - - Draws a notification above the map and returns the notifications handle - Color syntax: - ~r~ = Red - ~b~ = Blue - ~g~ = Green - ~y~ = Yellow - ~p~ = Purple - ~o~ = Orange - ~c~ = Grey - ~m~ = Darker Grey - ~u~ = Black - ~n~ = New Line - ~s~ = Default White - ~w~ = White - ~h~ = Bold Text - ~nrt~ = ??? - Special characters: - ¦ = Rockstar Verified Icon (U+00A6:Broken Bar - Alt+0166) - ÷ = Rockstar Icon (U+00F7:Division Sign - Alt+0247) - ∑ = Rockstar Icon 2 (U+2211:N-Ary Summation) - Example C#: - Function.Call(Hash._ADD_TEXT_COMPONENT_STRING3, "Now I need you to bring the ~b~vehicle~w~ back to me!"); - ---- - showInBrief==true: the notification will appear in the "Brief/Info" -> "Notifications" tab in the pause menu. - showInBrief==false: the notification will NOT appear in the pause menu. - - - - - This function and the one below it are for after you receive an invite, not sending it. - p0 = 1 or 0 - nothin doin. - int invite(Player player) - { - int iVar2, iVar3; - networkHandleMgr handle; - NETWORK_HANDLE_FROM_PLAYER(player, &handle.netHandle, 13); - networkClanMgr clan; - char *playerName = GET_PLAYER_NAME(player); - _SET_NOTIFICATION_TEXT_ENTRY("STRING"); - _SET_NOTIFACTION_COLOR_NEXT(0); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(playerName); - if (NETWORK_CLAN_PLAYER_GET_DESC(&clan, 35, &handle.netHandle)) - { - iVar2 = 0; - if (ARE_STRINGS_EQUAL(clan.unk22, "Leader") && clan.unk30 == 0) - { - iVar2 = 1; - } - if (clan.unk21 > 0) - { - iVar3 = 0; - } - else - { - iVar3 = 1; - } - BOOL unused = _0x54E79E9C(&clan.clanHandle, 35); - return _DRAW_NOTIFICATION_APARTMENT_INVITE(iVar3, 0 -- [[unused]] , &clan.unk17, clan.unk30, iVar2, 0, clan.clanHandle, 0, 0, 0); - } - } - - - - - This function and the one below it are for after you receive an invite, not sending it. - p0 = 1 or 0 - nothin doin. - int invite(Player player) - { - int iVar2, iVar3; - networkHandleMgr handle; - NETWORK_HANDLE_FROM_PLAYER(player, &handle.netHandle, 13); - networkClanMgr clan; - char *playerName = GET_PLAYER_NAME(player); - _SET_NOTIFICATION_TEXT_ENTRY("STRING"); - _SET_NOTIFACTION_COLOR_NEXT(0); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(playerName); - if (NETWORK_CLAN_PLAYER_GET_DESC(&clan, 35, &handle.netHandle)) - { - iVar2 = 0; - if (ARE_STRINGS_EQUAL(clan.unk22, "Leader") && clan.unk30 == 0) - { - iVar2 = 1; - } - if (clan.unk21 > 0) - { - iVar3 = 0; - } - else - { - iVar3 = 1; - } - BOOL unused = _0x54E79E9C(&clan.clanHandle, 35); - return _DRAW_NOTIFICATION_APARTMENT_INVITE(iVar3, 0 -- [[unused]] , &clan.unk17, clan.unk30, iVar2, 0, clan.clanHandle, 0, 0, 0); - } - } - - - - - This function and the one below it are for after you receive an invite, not sending it. - p0 = 1 or 0 - nothin doin. - int invite(Player player) - { - int iVar2, iVar3; - networkHandleMgr handle; - NETWORK_HANDLE_FROM_PLAYER(player, &handle.netHandle, 13); - networkClanMgr clan; - char *playerName = GET_PLAYER_NAME(player); - _SET_NOTIFICATION_TEXT_ENTRY("STRING"); - _SET_NOTIFACTION_COLOR_NEXT(0); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(playerName); - if (NETWORK_CLAN_PLAYER_GET_DESC(&clan, 35, &handle.netHandle)) - { - iVar2 = 0; - if (ARE_STRINGS_EQUAL(clan.unk22, "Leader") && clan.unk30 == 0) - { - iVar2 = 1; - } - if (clan.unk21 > 0) - { - iVar3 = 0; - } - else - { - iVar3 = 1; - } - BOOL unused = _0x54E79E9C(&clan.clanHandle, 35); - return _DRAW_NOTIFICATION_APARTMENT_INVITE(iVar3, 0 -- [[unused]] , &clan.unk17, clan.unk30, iVar2, 0, clan.clanHandle, 0, 0, 0); - } - } - - - - - Shows an "award" notification above the minimap, lua example result: - ![](https://i.imgur.com/e2DNaKX.png) - Old description: - ``` - Example: - UI::_SET_NOTIFICATION_TEXT_ENTRY("HUNT"); - UI::_0xAA295B6F28BD587D("Hunting", "Hunting_Gold_128", 0, 109, "HUD_MED_UNLKED"); - ``` - - The texture dictionary name for the icon on the left. - The texture name for the icon on the left. - The gained "RP" amount that will be displayed on the right side of the notification. - Hudcolor overlay that gets applied on top of the notification, fucks up text/image visibility in most cases if set to something other than 0. - The label that will be displayed at the top of the notification (title). - The notification handle. - - - - Shows an "award" notification above the minimap, lua example result: - ![](https://i.imgur.com/e2DNaKX.png) - Old description: - ``` - Example: - UI::_SET_NOTIFICATION_TEXT_ENTRY("HUNT"); - UI::_0xAA295B6F28BD587D("Hunting", "Hunting_Gold_128", 0, 109, "HUD_MED_UNLKED"); - ``` - - The texture dictionary name for the icon on the left. - The texture name for the icon on the left. - The gained "RP" amount that will be displayed on the right side of the notification. - Hudcolor overlay that gets applied on top of the notification, fucks up text/image visibility in most cases if set to something other than 0. - The label that will be displayed at the top of the notification (title). - The notification handle. - - - - Shows an "award" notification above the minimap, lua example result: - ![](https://i.imgur.com/e2DNaKX.png) - Old description: - ``` - Example: - UI::_SET_NOTIFICATION_TEXT_ENTRY("HUNT"); - UI::_0xAA295B6F28BD587D("Hunting", "Hunting_Gold_128", 0, 109, "HUD_MED_UNLKED"); - ``` - - The texture dictionary name for the icon on the left. - The texture name for the icon on the left. - The gained "RP" amount that will be displayed on the right side of the notification. - Hudcolor overlay that gets applied on top of the notification, fucks up text/image visibility in most cases if set to something other than 0. - The label that will be displayed at the top of the notification (title). - The notification handle. - - - - p0 = 1 or 0 - crashes my game... - this is for sending invites to network players - jobs/apartment/ect... - return notification handle - int invite(Player player) - { - networkHandleMgr netHandle; - networkClanMgr clan; - char *playerName = GET_PLAYER_NAME(player); - _SET_NOTIFICATION_TEXT_ENTRY("STRING"); - _SET_NOTIFACTION_COLOR_NEXT(1); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(playerName); - NETWORK_HANDLE_FROM_PLAYER(player, &netHandle.netHandle, 13); - if (NETWORK_CLAN_PLAYER_IS_ACTIVE(&netHandle.netHandle)) - { - NETWORK_CLAN_PLAYER_GET_DESC(&clan.clanHandle, 35, &netHandle.netHandle); - _DRAW_NOTIFICATION_CLAN_INVITE(0, _0x54E79E9C(&clan.clanHandle, 35), &clan.unk17, clan.isLeader, 0, 0, clan.clanHandle, playerName, 0, 0, 0); - } - } - - - - - p0 = 1 or 0 - crashes my game... - this is for sending invites to network players - jobs/apartment/ect... - return notification handle - int invite(Player player) - { - networkHandleMgr netHandle; - networkClanMgr clan; - char *playerName = GET_PLAYER_NAME(player); - _SET_NOTIFICATION_TEXT_ENTRY("STRING"); - _SET_NOTIFACTION_COLOR_NEXT(1); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(playerName); - NETWORK_HANDLE_FROM_PLAYER(player, &netHandle.netHandle, 13); - if (NETWORK_CLAN_PLAYER_IS_ACTIVE(&netHandle.netHandle)) - { - NETWORK_CLAN_PLAYER_GET_DESC(&clan.clanHandle, 35, &netHandle.netHandle); - _DRAW_NOTIFICATION_CLAN_INVITE(0, _0x54E79E9C(&clan.clanHandle, 35), &clan.unk17, clan.isLeader, 0, 0, clan.clanHandle, playerName, 0, 0, 0); - } - } - - - - - p0 = 1 or 0 - crashes my game... - this is for sending invites to network players - jobs/apartment/ect... - return notification handle - int invite(Player player) - { - networkHandleMgr netHandle; - networkClanMgr clan; - char *playerName = GET_PLAYER_NAME(player); - _SET_NOTIFICATION_TEXT_ENTRY("STRING"); - _SET_NOTIFACTION_COLOR_NEXT(1); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(playerName); - NETWORK_HANDLE_FROM_PLAYER(player, &netHandle.netHandle, 13); - if (NETWORK_CLAN_PLAYER_IS_ACTIVE(&netHandle.netHandle)) - { - NETWORK_CLAN_PLAYER_GET_DESC(&clan.clanHandle, 35, &netHandle.netHandle); - _DRAW_NOTIFICATION_CLAN_INVITE(0, _0x54E79E9C(&clan.clanHandle, 35), &clan.unk17, clan.isLeader, 0, 0, clan.clanHandle, playerName, 0, 0, 0); - } - } - - - - - returns a notification handle, prints out a notification like below: - type range: 0 - if you set type to 1, button accepts "~INPUT_SOMETHING~" - example: - UI::_0xDD6CB2CCE7C2735C(1, "~INPUT_TALK~", "Who you trynna get crazy with, ese? Don't you know I'm LOCO?!"); - - imgur.com/UPy0Ial - Examples from the scripts: - l_D1[1 -- [[1]] ]=UI::_DD6CB2CCE7C2735C(1,"~INPUT_REPLAY_START_STOP_RECORDING~",""); - l_D1[2 -- [[1]] ]=UI::_DD6CB2CCE7C2735C(1,"~INPUT_SAVE_REPLAY_CLIP~",""); - l_D1[1 -- [[1]] ]=UI::_DD6CB2CCE7C2735C(1,"~INPUT_REPLAY_START_STOP_RECORDING~",""); - l_D1[2 -- [[1]] ]=UI::_DD6CB2CCE7C2735C(1,"~INPUT_REPLAY_START_STOP_RECORDING_SECONDARY~",""); - - - - - returns a notification handle, prints out a notification like below: - type range: 0 - if you set type to 1, button accepts "~INPUT_SOMETHING~" - example: - UI::_0xDD6CB2CCE7C2735C(1, "~INPUT_TALK~", "Who you trynna get crazy with, ese? Don't you know I'm LOCO?!"); - - imgur.com/UPy0Ial - Examples from the scripts: - l_D1[1 -- [[1]] ]=UI::_DD6CB2CCE7C2735C(1,"~INPUT_REPLAY_START_STOP_RECORDING~",""); - l_D1[2 -- [[1]] ]=UI::_DD6CB2CCE7C2735C(1,"~INPUT_SAVE_REPLAY_CLIP~",""); - l_D1[1 -- [[1]] ]=UI::_DD6CB2CCE7C2735C(1,"~INPUT_REPLAY_START_STOP_RECORDING~",""); - l_D1[2 -- [[1]] ]=UI::_DD6CB2CCE7C2735C(1,"~INPUT_REPLAY_START_STOP_RECORDING_SECONDARY~",""); - - - - - returns a notification handle, prints out a notification like below: - type range: 0 - if you set type to 1, image goes from 0 - 39 - Xbox you can add text to - example: - UI::_0xD202B92CBF1D816F(1, 20, "Who you trynna get crazy with, ese? Don't you know I'm LOCO?!"); - - - - - returns a notification handle, prints out a notification like below: - type range: 0 - if you set type to 1, image goes from 0 - 39 - Xbox you can add text to - example: - UI::_0xD202B92CBF1D816F(1, 20, "Who you trynna get crazy with, ese? Don't you know I'm LOCO?!"); - - - - - x/y/z - Location of a vertex (in world coords), presumably. - ---------------- - x1, y1, z1 : Coordinates for the first point - x2, y2, z2 : Coordinates for the second point - x3, y3, z3 : Coordinates for the third point - r, g, b, alpha : Color with RGBA-Values - Keep in mind that only one side of the drawn triangle is visible: It's the side, in which the vector-product of the vectors heads to: (b-a)x(c-a) Or (b-a)x(c-b). - But be aware: The function seems to work somehow differently. I have trouble having them drawn in rotated orientation. Try it yourself and if you somehow succeed, please edit this and post your solution. - I recommend using a predefined function to call this. - [VB.NET] - Public Sub DrawPoly(a As Vector3, b As Vector3, c As Vector3, col As Color) - [Function].Call(Hash.DRAW_POLY, a.X, a.Y, a.Z, b.X, b.Y, b.Z, c.X, c.Y, c.Z, col.R, col.G, col.B, col.A) - End Sub - [C#] - public void DrawPoly(Vector3 a, Vector3 b, Vector3 c, Color col) - { - Function.Call(Hash.DRAW_POLY, a.X, a.Y, a.Z, b.X, b.Y, b.Z, c.X, c.Y, c.Z, col.R, col.G, col.B, col.A); - } - BTW: Intersecting triangles are not supported: They overlap in the order they were called. - - - - - Draws a rectangle on the screen. - -x: The relative X point of the center of the rectangle. (0.0-1.0, 0.0 is the left edge of the screen, 1.0 is the right edge of the screen) - -y: The relative Y point of the center of the rectangle. (0.0-1.0, 0.0 is the top edge of the screen, 1.0 is the bottom edge of the screen) - -width: The relative width of the rectangle. (0.0-1.0, 1.0 means the whole screen width) - -height: The relative height of the rectangle. (0.0-1.0, 1.0 means the whole screen height) - -R: Red part of the color. (0-255) - -G: Green part of the color. (0-255) - -B: Blue part of the color. (0-255) - -A: Alpha part of the color. (0-255, 0 means totally transparent, 255 means totally opaque) - The total number of rectangles to be drawn in one frame is apparently limited to 399. - - - - - GTA V Scaleforms Decompiled - pastebin.com/mmNdjX2k - - - - - unk is not used so no need - - - - - sharpness goes from 0.0 to 1.0 - - - - - sharpness goes from 0.0 to 1.0 - - - - - what the heck does this one do differently from the one above? - - - - - what the heck does this one do differently from the one above? - - - - - It's called after 0xD3A10FC7FD8D98CD and 0xF1CEA8A4198D8E9A - p0 was always "CELEBRATION_WINNER" - - - - - It's called after 0xD3A10FC7FD8D98CD and 0xF1CEA8A4198D8E9A - p0 was always "CELEBRATION_WINNER" - - - - - Parameters: - * pos - coordinate where the spotlight is located - * dir - the direction vector the spotlight should aim at from its current position - * r,g,b - color of the spotlight - * distance - the maximum distance the light can reach - * brightness - the brightness of the light - * roundness - "smoothness" of the circle edge - * radius - the radius size of the spotlight - * falloff - the falloff size of the light's edge (example: www.i.imgur.com/DemAWeO.jpg) - Example in C# (spotlight aims at the closest vehicle): - Vector3 myPos = Game.Player.Character.Position; - Vehicle nearest = World.GetClosestVehicle(myPos , 1000f); - Vector3 destinationCoords = nearest.Position; - Vector3 dirVector = destinationCoords - myPos; - dirVector.Normalize(); - Function.Call(Hash.DRAW_SPOT_LIGHT, pos.X, pos.Y, pos.Z, dirVector.X, dirVector.Y, dirVector.Z, 255, 255, 255, 100.0f, 1f, 0.0f, 13.0f, 1f); - - - - - shadowId: each call to this native in the same tick should have a different value passed to this parameter, if two or more calls have the same values, only the first one will render its shadow properly - - - - - Draws a 2D sprite on the screen. - Parameters: - textureDict - Name of texture dictionary to load texture from (e.g. "CommonMenu", "MPWeaponsCommon", etc.) - textureName - Name of texture to load from texture dictionary (e.g. "last_team_standing_icon", "tennis_icon", etc.) - screenX/Y - Screen offset (0.5 = center) - scaleX/Y - Texture scaling. Negative values can be used to flip the texture on that axis. (0.5 = half) - heading - Texture rotation in degrees (default = 0.0) positive is clockwise, measured in degrees - red,green,blue - Sprite color (default = 255/255/255) - alpha - opacity level - - - - - All calls to this native are preceded by calls to GRAPHICS::_0x61BB1D9B3A95D802 and GRAPHICS::_0xC6372ECD45D73BCD, respectively. - "act_cinema.ysc", line 1483: - UI::SET_HUD_COMPONENT_POSITION(15, 0.0, -0.0375); - UI::SET_TEXT_RENDER_ID(l_AE); - GRAPHICS::_0x61BB1D9B3A95D802(4); - GRAPHICS::_0xC6372ECD45D73BCD(1); - if (GRAPHICS::_0x0AD973CA1E077B60(${movie_arthouse})) { - GRAPHICS::DRAW_TV_CHANNEL(0.5, 0.5, 0.7375, 1.0, 0.0, 255, 255, 255, 255); - } else { - GRAPHICS::DRAW_TV_CHANNEL(0.5, 0.5, 1.0, 1.0, 0.0, 255, 255, 255, 255); - } - "am_mp_property_int.ysc", line 102545: - if (ENTITY::DOES_ENTITY_EXIST(a_2._f3)) { - if (UI::IS_NAMED_RENDERTARGET_LINKED(ENTITY::GET_ENTITY_MODEL(a_2._f3))) { - UI::SET_TEXT_RENDER_ID(a_2._f1); - GRAPHICS::_0x61BB1D9B3A95D802(4); - GRAPHICS::_0xC6372ECD45D73BCD(1); - GRAPHICS::DRAW_TV_CHANNEL(0.5, 0.5, 1.0, 1.0, 0.0, 255, 255, 255, 255); - if (GRAPHICS::GET_TV_CHANNEL() == -1) { - sub_a8fa5(a_2, 1); - } else { - sub_a8fa5(a_2, 1); - GRAPHICS::ATTACH_TV_AUDIO_TO_ENTITY(a_2._f3); - } - UI::SET_TEXT_RENDER_ID(UI::GET_DEFAULT_SCRIPT_RENDERTARGET_RENDER_ID()); - } - } - - - - - ADD_E* (most likely ADD_ENTITY_*) - All found occurrences in b678d: - pastebin.com/ceu67jz8 - Still not sure on the functionality of this native but it has something to do with dynamic mixer groups defined in dynamix.dat15 - - - - - ADD_E* (most likely ADD_ENTITY_*) - All found occurrences in b678d: - pastebin.com/ceu67jz8 - Still not sure on the functionality of this native but it has something to do with dynamic mixer groups defined in dynamix.dat15 - - - - - Creates cartoon effect when Michel smokes the weed - - - - - Creates cartoon effect when Michel smokes the weed - - - - - control values and meaning: github.com/crosire/scripthookvdotnet/blob/dev_v3/source/scripting/Control.cs - and - wiki.fivem.net/wiki/Controls - 0, 1 and 2 used in the scripts. - Control values from the decompiled scripts: - 0,1,2,3,4,5,6,8,9,10,11,14,15,16,17,19,21,22,24,25,26,30,31,32,33,34,35,36, - 37,44,46,47,59,60,65,68,69,70,71,72,73,74,75,76,79,80,81,82,86,95,98,99,100 - ,101,114,140,141,143,172,173,174,175,176,177,178,179,180,181,187,188,189,19 - 0,195,196,197,198,199,201,202,203,204,205,206,207,208,209,210,217,218,219,2 - 20,221,225,228,229,230,231,234,235,236,237,238,239,240,241,242,245,246,257, - 261,262,263,264,286,287,288,289,337,338,339,340,341,342,343 - INPUTGROUP_MOVE - INPUTGROUP_LOOK - INPUTGROUP_WHEEL - INPUTGROUP_CELLPHONE_NAVIGATE - INPUTGROUP_CELLPHONE_NAVIGATE_UD - INPUTGROUP_CELLPHONE_NAVIGATE_LR - INPUTGROUP_FRONTEND_DPAD_ALL - INPUTGROUP_FRONTEND_DPAD_UD - INPUTGROUP_FRONTEND_DPAD_LR - INPUTGROUP_FRONTEND_LSTICK_ALL - INPUTGROUP_FRONTEND_RSTICK_ALL - INPUTGROUP_FRONTEND_GENERIC_UD - INPUTGROUP_FRONTEND_GENERIC_LR - INPUTGROUP_FRONTEND_GENERIC_ALL - INPUTGROUP_FRONTEND_BUMPERS - INPUTGROUP_FRONTEND_TRIGGERS - INPUTGROUP_FRONTEND_STICKS - INPUTGROUP_SCRIPT_DPAD_ALL - INPUTGROUP_SCRIPT_DPAD_UD - INPUTGROUP_SCRIPT_DPAD_LR - INPUTGROUP_SCRIPT_LSTICK_ALL - INPUTGROUP_SCRIPT_RSTICK_ALL - INPUTGROUP_SCRIPT_BUMPERS - INPUTGROUP_SCRIPT_TRIGGERS - INPUTGROUP_WEAPON_WHEEL_CYCLE - INPUTGROUP_FLY - INPUTGROUP_SUB - INPUTGROUP_VEH_MOVE_ALL - INPUTGROUP_CURSOR - INPUTGROUP_CURSOR_SCROLL - INPUTGROUP_SNIPER_ZOOM_SECONDARY - INPUTGROUP_VEH_HYDRAULICS_CONTROL - Took those in IDA Pro.Not sure in which order they go - - - - - Shows the crosshair even if it wouldn't show normally. Only works for one frame, so make sure to call it repeatedly. - - - - - Please change back to _0x4895BDEA16E7C080 (hash collision) - - - - - Directly from R*: - enum eDispatchType : UINT16 - { - DT_PoliceAutomobile = 1, - DT_PoliceHelicopter = 2, - DT_FireDepartment = 3, - DT_SwatAutomobile = 4, - DT_AmbulanceDepartment = 5, - DT_PoliceRiders = 6, - DT_PoliceVehicleRequest = 7, - DT_PoliceRoadBlock = 8, - DT_PoliceAutomobileWaitPulledOver = 9, - DT_PoliceAutomobileWaitCruising = 10, - DT_Gangs = 11, - DT_SwatHelicopter = 12, - DT_PoliceBoat = 13, - DT_ArmyVehicle = 14, - DT_BikerBackup = 15 - }; - By making toggle false it disables the dispatch. - curious if this is what they used when you toggled on and off cops in a GTA IV freemode you hosted. Sad they got rid of the option to make a private session without cops. - Also on x360 seems with or without neverWanted on, setting these to all false in SP of course doesn't seem to work. I would understand getting stars, but cops are still dispatched and combat you. - - - - - Directly from R*: - enum eDispatchType : UINT16 - { - DT_PoliceAutomobile = 1, - DT_PoliceHelicopter = 2, - DT_FireDepartment = 3, - DT_SwatAutomobile = 4, - DT_AmbulanceDepartment = 5, - DT_PoliceRiders = 6, - DT_PoliceVehicleRequest = 7, - DT_PoliceRoadBlock = 8, - DT_PoliceAutomobileWaitPulledOver = 9, - DT_PoliceAutomobileWaitCruising = 10, - DT_Gangs = 11, - DT_SwatHelicopter = 12, - DT_PoliceBoat = 13, - DT_ArmyVehicle = 14, - DT_BikerBackup = 15 - }; - By making toggle false it disables the dispatch. - curious if this is what they used when you toggled on and off cops in a GTA IV freemode you hosted. Sad they got rid of the option to make a private session without cops. - Also on x360 seems with or without neverWanted on, setting these to all false in SP of course doesn't seem to work. I would understand getting stars, but cops are still dispatched and combat you. - - - - - More info: http://gtaforums.com/topic/836367-adding-props-to-interiors/ - - - - - More info: http://gtaforums.com/topic/836367-adding-props-to-interiors/ - - - - - Enables laser sight on any weapon. - It doesn't work. Neither on tick nor OnKeyDown - - - - - #4 - - - - - Makes the ped jump around like they're in a tennis match - - - - - Pops and calls the Scaleform function on the stack - - - - - Pops and calls the Scaleform function on the stack - - - - - Pops and calls the Scaleform movie on the stack. Returns data from the function (not sure if this is a string). - - - - - Pops and calls the Scaleform movie on the stack. Returns data from the function (not sure if this is a string). - - - - - Clear the current srl and stop rendering the area selected by PrefetchSrl and started with BeginSrl. - - - - - This does NOT get called per frame. Call it once to show, then use UI::_REMOVE_LOADING_PROMPT to remove it - Changes the the above native's (UI::_SET_LOADING_PROMPT_TEXT_ENTRY) spinning circle type. - Types: - enum LoadingPromptTypes - { - LOADING_PROMPT_LEFT, - LOADING_PROMPT_LEFT_2, - LOADING_PROMPT_LEFT_3, - SAVE_PROMPT_LEFT, - LOADING_PROMPT_RIGHT, - }; - - - - - This does NOT get called per frame. Call it once to show, then use UI::_REMOVE_LOADING_PROMPT to remove it - Changes the the above native's (UI::_SET_LOADING_PROMPT_TEXT_ENTRY) spinning circle type. - Types: - enum LoadingPromptTypes - { - LOADING_PROMPT_LEFT, - LOADING_PROMPT_LEFT_2, - LOADING_PROMPT_LEFT_3, - SAVE_PROMPT_LEFT, - LOADING_PROMPT_RIGHT, - }; - - - - - This does NOT get called per frame. Call it once to show, then use UI::_REMOVE_LOADING_PROMPT to remove it - Changes the the above native's (UI::_SET_LOADING_PROMPT_TEXT_ENTRY) spinning circle type. - Types: - enum LoadingPromptTypes - { - LOADING_PROMPT_LEFT, - LOADING_PROMPT_LEFT_2, - LOADING_PROMPT_LEFT_3, - SAVE_PROMPT_LEFT, - LOADING_PROMPT_RIGHT, - }; - - - - - ----------- - p3 (duration in MS) was previously mentioned as "shape", but with some more testing it seems that it's more likely to be a duration in MS. (Tested this when not calling it every tick, but instead only once and let it display for the specified duration). - -1 seems to be default delay (around 3 seconds), 5000 (ms) seems to be the max. Anything > 5000 will still result in 5 seconds of display time. - Old p3 (shape) description: "shape goes from -1 to 50 (may be more)." - -------------- - p0 is always 0. - Example: - void FloatingHelpText(char* text) - { - BEGIN_TEXT_COMMAND_DISPLAY_HELP("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - END_TEXT_COMMAND_DISPLAY_HELP (0, 0, 1, -1); - } - Image: - - imgbin.org/images/26209.jpg - more inputs/icons: - - pastebin.com/nqNYWMSB - Used to be known as _DISPLAY_HELP_TEXT_FROM_STRING_LABEL - - - - - ----------- - p3 (duration in MS) was previously mentioned as "shape", but with some more testing it seems that it's more likely to be a duration in MS. (Tested this when not calling it every tick, but instead only once and let it display for the specified duration). - -1 seems to be default delay (around 3 seconds), 5000 (ms) seems to be the max. Anything > 5000 will still result in 5 seconds of display time. - Old p3 (shape) description: "shape goes from -1 to 50 (may be more)." - -------------- - p0 is always 0. - Example: - void FloatingHelpText(char* text) - { - BEGIN_TEXT_COMMAND_DISPLAY_HELP("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - END_TEXT_COMMAND_DISPLAY_HELP (0, 0, 1, -1); - } - Image: - - imgbin.org/images/26209.jpg - more inputs/icons: - - pastebin.com/nqNYWMSB - Used to be known as _DISPLAY_HELP_TEXT_FROM_STRING_LABEL - - - - - After applying the properties to the text (See UI::SET_TEXT_), this will draw the text in the applied position. Also 0.0f < x, y < 1.0f, percentage of the axis. - Used to be known as _DRAW_TEXT - - - - - After applying the properties to the text (See UI::SET_TEXT_), this will draw the text in the applied position. Also 0.0f < x, y < 1.0f, percentage of the axis. - Used to be known as _DRAW_TEXT - - - - - Used with _BEGIN_TEXT_COMMAND_WIDTH. - In scripts, p0 is false when used in combination with "ESMINDOLLA" or "ESDOLLA", otherwise it's true. - Returns from range 0 to 1. - - - - - Used with _BEGIN_TEXT_COMMAND_WIDTH. - In scripts, p0 is false when used in combination with "ESMINDOLLA" or "ESDOLLA", otherwise it's true. - Returns from range 0 to 1. - - - - - p0 is always false in scripts. - - - - - p0 is always false in scripts. - - - - - Draws the subtitle at middle center of the screen. - int duration = time in milliseconds to show text on screen before disappearing - drawImmediately = If true, the text will be drawn immediately, if false, the text will be drawn after the previous subtitle has finished - Used to be known as _DRAW_SUBTITLE_TIMED - - - - - Draws the subtitle at middle center of the screen. - int duration = time in milliseconds to show text on screen before disappearing - drawImmediately = If true, the text will be drawn immediately, if false, the text will be drawn after the previous subtitle has finished - Used to be known as _DRAW_SUBTITLE_TIMED - - - - - Previously called _END_TEXT_COMPONENT - - - - - Previously called _END_TEXT_COMPONENT - - - - - Finalizes a text command started with [`BEGIN_TEXT_COMMAND_SET_BLIP_NAME`](#_0xF9113A30DE5C6670), setting the name - of the specified blip. - - The blip to change the name for. - - - - Only found twice in decompiled scripts. Something to do with an entity/object? - On a side note, it's very interesting how the hash for this native is "DEADC0DE" - this is usually used as padding for initializing a buffer of some sort. I wonder if this native is actually "dead"? - "carmod_shop.ysc", line 9520: - if (ENTITY::DOES_ENTITY_EXIST(l_324._f6)) { - GRAPHICS::_0xDEADC0DEDEADC0DE(l_324._f6); - } - "fm_mission_controller.ysc", line 189641: - if (GAMEPLAY::IS_BIT_SET(g_1870E1._f7B64[a_0 -- [[104]] ]._f25, 28)) { - GRAPHICS::_0xDEADC0DEDEADC0DE(NETWORK::NET_TO_OBJ(l_4064._f26A._f87[a_0 -- [[1]] ])); - if (!GAMEPLAY::IS_BIT_SET(g_1870E1._f7B64[a_0 -- [[104]] ]._f25, 31)) { - if (!ENTITY::IS_ENTITY_DEAD(v_7)) { - AUDIO::PLAY_SOUND_FROM_ENTITY(-1, "EMP_Vehicle_Hum", v_7, "DLC_HEIST_BIOLAB_DELIVER_EMP_SOUNDS", 0, 0); - GAMEPLAY::SET_BIT(&g_1870E1._f7B64[a_0 -- [[104]] ]._f25, 31); - } - } - } - Console Hash: 0xC12AC47A - ---------- - It's most likely named UPDATE_* (like UPDATE_ENTITY_SHIT_OR_SOMETHING). - - - - - Only found twice in decompiled scripts. Something to do with an entity/object? - On a side note, it's very interesting how the hash for this native is "DEADC0DE" - this is usually used as padding for initializing a buffer of some sort. I wonder if this native is actually "dead"? - "carmod_shop.ysc", line 9520: - if (ENTITY::DOES_ENTITY_EXIST(l_324._f6)) { - GRAPHICS::_0xDEADC0DEDEADC0DE(l_324._f6); - } - "fm_mission_controller.ysc", line 189641: - if (GAMEPLAY::IS_BIT_SET(g_1870E1._f7B64[a_0 -- [[104]] ]._f25, 28)) { - GRAPHICS::_0xDEADC0DEDEADC0DE(NETWORK::NET_TO_OBJ(l_4064._f26A._f87[a_0 -- [[1]] ])); - if (!GAMEPLAY::IS_BIT_SET(g_1870E1._f7B64[a_0 -- [[104]] ]._f25, 31)) { - if (!ENTITY::IS_ENTITY_DEAD(v_7)) { - AUDIO::PLAY_SOUND_FROM_ENTITY(-1, "EMP_Vehicle_Hum", v_7, "DLC_HEIST_BIOLAB_DELIVER_EMP_SOUNDS", 0, 0); - GAMEPLAY::SET_BIT(&g_1870E1._f7B64[a_0 -- [[104]] ]._f25, 31); - } - } - } - Console Hash: 0xC12AC47A - ---------- - It's most likely named UPDATE_* (like UPDATE_ENTITY_SHIT_OR_SOMETHING). - - - - - Will change world AABB so that given point will be inside of the world limits. - Example: - You want world limits to be -9000<X<10000 -11000<Y<12000 and leave Z limits as is. - You should call this function two times: - _EXPAND_WORLD_LIMITS(-9000.0,-11000.0,30.0) - _EXPAND_WORLD_LIMITS(10000.0,12000.0,30.0) - Appears only 3 times in the scripts, more specifically in michael1.ysc - Console hash: 0x64ddb07d - - - This can be used to prevent dying if you are "out of the world" - - - - - Will change world AABB so that given point will be inside of the world limits. - Example: - You want world limits to be -9000<X<10000 -11000<Y<12000 and leave Z limits as is. - You should call this function two times: - _EXPAND_WORLD_LIMITS(-9000.0,-11000.0,30.0) - _EXPAND_WORLD_LIMITS(10000.0,12000.0,30.0) - Appears only 3 times in the scripts, more specifically in michael1.ysc - Console hash: 0x64ddb07d - - - This can be used to prevent dying if you are "out of the world" - - - - - This native is not implemented. - - - - - This native is not implemented. - - - - - This native is not implemented. - - - - - This native is not implemented. - - - - - Forces the ped to fall back and kills it. - It doesn't really explode the ped's head but it kills the ped - - - - - WEAPON::EXPLODE_PROJECTILES(PLAYER::PLAYER_PED_ID(), func_221(0x00000003), 0x00000001); - - - - - Explodes a selected vehicle. - Vehicle vehicle = Vehicle you want to explode. - BOOL isAudible = If explosion makes a sound. - BOOL isInvisible = If the explosion is invisible or not. - First BOOL does not give any visual explosion, the vehicle just falls apart completely but slowly and starts to burn. - - - - - GTA Online character creation - - - - - GTA Online character creation - - - - - milestoneId: - 0 = "percentcomplete" - 1 = "storycomplete" - 2 = "vehicles" - 3 = "properties" - 4 = "psych" - 5 = "mapreveal" - 6 = "prologue" - - - - - milestoneId: - 0 = "percentcomplete" - 1 = "storycomplete" - 2 = "vehicles" - 3 = "properties" - 4 = "psych" - 5 = "mapreveal" - 6 = "prologue" - - - - - Fades nearby decals within the range specified - - - - - Hardcoded to not work in SP. - - - - - In the script "player_scene_t_bbfight.c4": - "if (ENTITY::FIND_ANIM_EVENT_PHASE(&l_16E, &l_19F[v_4 -- [[16]] ], v_9, &v_A, &v_B))" - -- &l_16E (p0) is requested as an anim dictionary earlier in the script. - -- &l_19F[v_4 -- [[16]] ] (p1) is used in other natives in the script as the "animation" param. - -- v_9 (p2) is instantiated as "victim_fall"; I'm guessing that's another anim - --v_A and v_B (p3 & p4) are both set as -1.0, but v_A is used immediately after this native for: - "if (v_A < ENTITY::GET_ENTITY_ANIM_CURRENT_TIME(...))" - Both v_A and v_B are seemingly used to contain both Vector3's and floats, so I can't say what either really is other than that they are both output parameters. p4 looks more like a *Vector3 though - -alphazolam - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Finds a position ahead of the player by predicting the players next actions. - The positions match path finding node positions. - When roads diverge, the position may rapidly change between two or more positions. This is due to the engine not being certain of which path the player will take. - ======================================================= - I may sort this with alter research, but if someone - already knows please tell what the difference in - X2, Y2, Z2 is. I doubt it's rotation. Is it like - checkpoints where X1, Y1, Z1 is your/a position and - X2, Y2, Z2 is a given position ahead of that position? - ======================================================= - - - - - If set to true ability bar will flash - - - - - adds a short flash to the Radar/Minimap - Usage: UI.FLASH_MINIMAP_DISPLAY - - - - - if value is set to true, and ambient siren sound will be played. - ------------------------------------------------------------------------- - Appears to enable/disable an audio flag. - - - - - if value is set to true, and ambient siren sound will be played. - ------------------------------------------------------------------------- - Appears to enable/disable an audio flag. - - - - - used with 1,2,8,64,128 in the scripts - - - - - PLAYER::FORCE_CLEANUP_FOR_ALL_THREADS_WITH_THIS_NAME("pb_prostitute", 1); // Found in decompilation - - - - - Based on carmod_shop script decompile this takes a vehicle parameter. It is called when repair is done on initial enter. - - - - - Some motionstate hashes are - 0xec17e58 (standing idle), 0xbac0f10b (nothing?), 0x3f67c6af (aiming with pistol 2-h), 0x422d7a25 (stealth), 0xbd8817db, 0x916e828c - and those for the strings - "motionstate_idle", "motionstate_walk", "motionstate_run", "motionstate_actionmode_idle", and "motionstate_actionmode_walk". - Regarding p2, p3 and p4: Most common is 0, 0, 0); followed by 0, 1, 0); and 1, 1, 0); in the scripts. p4 is very rarely something other than 0. - [31/03/2017] ins1de : - enum MotionState - { - StopRunning = -530524, - StopWalking = -668482597, - Idle = 247561816, // 1, 1, 0 - Idl2 = -1871534317, - SkyDive =-1161760501, // 0, 1, 0 - Stealth = 1110276645, - Sprint = -1115154469, - Swim = -1855028596, - Unknown1 = 1063765679, - Unknown2 = -633298724, - } - - - - - Forces the particular room in an interior to load incase not teleporting into the portal. - - - - - Exits the game and downloads a fresh social club update on next restart. - - - - - This native sets the audio of the specified vehicle to audioName (p1). - Use the audioNameHash found in vehicles.meta - Example: - _FORCE_VEHICLE_ENGINE_SOUND(veh, "ADDER"); - The selected vehicle will now have the audio of the Adder. - FORCE_VEHICLE_??? - - - - - This native sets the audio of the specified vehicle to audioName (p1). - Use the audioNameHash found in vehicles.meta - Example: - _FORCE_VEHICLE_ENGINE_SOUND(veh, "ADDER"); - The selected vehicle will now have the audio of the Adder. - FORCE_VEHICLE_??? - - - - - This native sets the audio of the specified vehicle to audioName (p1). - Use the audioNameHash found in vehicles.meta - Example: - _FORCE_VEHICLE_ENGINE_SOUND(veh, "ADDER"); - The selected vehicle will now have the audio of the Adder. - FORCE_VEHICLE_??? - - - - - No, this should be called SET_ENTITY_KINEMATIC. It does more than just "freeze" it's position. - ^Rockstar Devs named it like that, Now cry about it. - - - - - Usage example: - Public Function GenerateDirectionsToCoord(Pos As Vector3) As Tuple(Of String, Single, Single) - Dim f4, f5, f6 As New OutputArgument() - Native.Function.Call(Hash.GENERATE_DIRECTIONS_TO_COORD, Pos.X, Pos.Y, Pos.Z, True, f4, f5, f6) - Dim direction As String = f4.GetResult(Of Single)() - Return New Tuple(Of String, Single, Single)(direction.Substring(0, 1), f5.GetResult(Of Single)(), f6.GetResult(Of Single)()) - End Function - p3 I use 1 - direction: - 0 = You Have Arrived - 1 = Recalculating Route, Please make a u-turn where safe - 2 = Please Proceed the Highlighted Route - 3 = In (distToNxJunction) Turn Left - 4 = In (distToNxJunction) Turn Right - 5 = In (distToNxJunction) Go Straight - 6 = In (distToNxJunction) Keep Left - 7 = In (distToNxJunction) Keep Right - 8 = In (distToNxJunction) Join the freeway - 9 = In (distToNxJunction) Exit Freeway - return value set to 0 always - - - - - p0 = int (?) - Dr. Underscore (1/6/18): - This gets the progression of an achievement. Returns 0 if the achievement cannot be progressed. - - - - - p0 = int (?) - Dr. Underscore (1/6/18): - This gets the progression of an achievement. Returns 0 if the achievement cannot be progressed. - - - - - Returns current screen resolution. - - - - - Returns current screen resolution. - - - - - native only found once in appinternet.c4 - same thing as this but does not need websiteID - Any _0xE3B05614DCE1D014(Any p0) // 0xE3B05614DCE1D014 0xD217EE7E - returns current websitePageID - - - - - native only found once in appinternet.c4 - same thing as this but does not need websiteID - Any _0xE3B05614DCE1D014(Any p0) // 0xE3B05614DCE1D014 0xD217EE7E - returns current websitePageID - - - - - Returns the current AI BLIP for the specified ped - - - - - Returns the current AI BLIP for the specified ped - - - - - Gets the amount of bombs that this vehicle has. As far as I know, this does _not_ impact vehicle weapons or the ammo of those weapons in any way, it is just a way to keep track of the amount of bombs in a specific plane. - In decompiled scripts this is used to check if the vehicle has enough bombs before a bomb can be dropped (bombs are dropped by using [`_SHOOT_SINGLE_BULLET_BETWEEN_COORDS_WITH_EXTRA_PARAMS`](#_0xBFE5756E7407064A)). - Use [`_SET_AIRCRAFT_BOMB_COUNT`](#_0xF4B2ED59DEB5D774) to set the amount of bombs on that vehicle. - - The vehicle to get the amount of bombs from. - An int indicating the amount of bombs remaining on that plane. - - - - Gets the amount of bombs that this vehicle has. As far as I know, this does _not_ impact vehicle weapons or the ammo of those weapons in any way, it is just a way to keep track of the amount of bombs in a specific plane. - In decompiled scripts this is used to check if the vehicle has enough bombs before a bomb can be dropped (bombs are dropped by using [`_SHOOT_SINGLE_BULLET_BETWEEN_COORDS_WITH_EXTRA_PARAMS`](#_0xBFE5756E7407064A)). - Use [`_SET_AIRCRAFT_BOMB_COUNT`](#_0xF4B2ED59DEB5D774) to set the amount of bombs on that vehicle. - - The vehicle to get the amount of bombs from. - An int indicating the amount of bombs remaining on that plane. - - - - Similar to [`_GET_AIRCRAFT_BOMB_COUNT`](#_0xEA12BD130D7569A1), this gets the amount of countermeasures that are present on this vehicle. - Use [`_SET_AIRCRAFT_COUNTERMEASURE_COUNT`](#_0x9BDA23BF666F0855) to set the current amount. - - The vehicle to get the amount of countermeasures from. - An int indicating the amount of countermeasures remaining on that plane. - - - - Similar to [`_GET_AIRCRAFT_BOMB_COUNT`](#_0xEA12BD130D7569A1), this gets the amount of countermeasures that are present on this vehicle. - Use [`_SET_AIRCRAFT_COUNTERMEASURE_COUNT`](#_0x9BDA23BF666F0855) to set the current amount. - - The vehicle to get the amount of countermeasures from. - An int indicating the amount of countermeasures remaining on that plane. - - - - WEAPON::GET_AMMO_IN_PED_WEAPON(PLAYER::PLAYER_PED_ID(), a_0) - From decompiled scripts - Returns total ammo in weapon - GTALua Example : - natives.WEAPON.GET_AMMO_IN_PED_WEAPON(plyPed, WeaponHash) - - - - - Returns the degree of angle between (x1, y1) and (x2, y2) lines in 2D coordinate system. - - - - - Console Hash: 0x8B5E3E3D = GET_ANIM_DURATION - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - p1 is always 0 in the scripts. - - - - - Returns the Blip handle of given Entity. - - - - - This function is hard-coded to always return 0. - - - - - Returns a value based on what the blip is attached to - 1 - 2 - 3 - 4 - 5 - 6 - 7 - - - - - Blips Images + IDs: - gtaxscripting.blogspot.com/2016/05/gta-v-blips-id-and-image.html - - - - - Console Hash: 0xE97A4F5E - - - - - Returns the world matrix of the specified camera. To turn this into a view matrix, calculate the inverse. - - - - - The last parameter, as in other "ROT" methods, is usually 2. - - - - - I named the beginning from Any to BOOL as this native is used in an if statement as well. - Big surprise it returns an int. - - - - - I'm pretty sure the parameter is the camera as usual, but I am not certain so I'm going to leave it as is. - - - - - Can use this with SET_CAM_SPLINE_PHASE to set the float it this native returns. - (returns 1.0f when no nodes has been added, reached end of non existing spline) - - - - - Gets the position of the cargobob hook, in world coords. - - - - - Gets the position of the cargobob hook, in world coords. - - - - - Gets the current day of the week. - 0: Sunday - 1: Monday - 2: Tuesday - 3: Wednesday - 4: Thursday - 5: Friday - 6: Saturday - - - - - Gets the current ingame hour, expressed without zeros. (09:34 will be represented as 9) - - - - - Gets the current ingame clock minute. - - - - - Gets the current ingame clock second. Note that ingame clock seconds change really fast since a day in GTA is only 48 minutes in real life. - - - - - Returns TRUE if it found something. FALSE if not. - - - - - Get the closest vehicle node to a given position, unknown1 = 3.0, unknown2 = 0 - - - - - Has 8 params in the latest patches. - isMission - if true doesn't return mission objects - - - - - Gets the closest ped in a radius. - Ped Types: - Any ped = -1 - Player = 1 - Male = 4 - Female = 5 - Cop = 6 - Human = 26 - SWAT = 27 - Animal = 28 - Army = 29 - ------------------ - P4 P5 P7 P8 - 1 0 x x = return nearest walking Ped - 1 x 0 x = return nearest walking Ped - x 1 1 x = return Ped you are using - 0 0 x x = no effect - 0 x 0 x = no effect - x = can be 1 or 0. Does not have any obvious changes. - This function does not return ped who is: - 1. Standing still - 2. Driving - 3. Fleeing - 4. Attacking - This function only work if the ped is: - 1. walking normally. - 2. waiting to cross a road. - Note: PED::GET_PED_NEARBY_PEDS works for more peds. - - - - - p1 seems to be always 1.0f in the scripts - - - - - Example usage - VEHICLE::GET_CLOSEST_VEHICLE(x, y, z, radius, hash, unknown leave at 70) - x, y, z: Position to get closest vehicle to. - radius: Max radius to get a vehicle. - modelHash: Limit to vehicles with this model. 0 for any. - flags: The bitwise flags altering the function's behaviour. - Does not return police cars or helicopters. - It seems to return police cars for me, does not seem to return helicopters, planes or boats for some reason - Only returns non police cars and motorbikes with the flag set to 70 and modelHash to 0. ModelHash seems to always be 0 when not a modelHash in the scripts, as stated above. - These flags were found in the b617d scripts: 0,2,4,6,7,23,127,260,2146,2175,12294,16384,16386,20503,32768,67590,67711,98309,100359. - Converted to binary, each bit probably represents a flag as explained regarding another native here: gtaforums.com/topic/822314-guide-driving-styles - Conversion of found flags to binary: pastebin.com/kghNFkRi - At exactly 16384 which is 0100000000000000 in binary and 4000 in hexadecimal only planes are returned. - It's probably more convenient to use worldGetAllVehicles(int *arr, int arrSize) and check the shortest distance yourself and sort if you want by checking the vehicle type with for example VEHICLE::IS_THIS_MODEL_A_BOAT - ------------------------------------------------------------------------- - Conclusion: This native is not worth trying to use. Use something like this instead: pastebin.com/xiFdXa7h - - - - - FYI: When falling through the map (or however you got under it) you will respawn when your player ped's height is <= -200.0 meters (I think you all know this) and when in a vehicle you will actually respawn at the closest vehicle node. - ---------- - Vector3 nodePos; - GET_CLOSEST_VEHICLE_NODE(x,y,z,&nodePos,...) - p4 is either 0, 1 or 8. 1 means any path/road. 0 means node in the middle of the closest main (asphalt) road. - p5, p6 are always the same: - 0x40400000 (3.0), 0 - p5 can also be 100.0 and p6 can be 2.5: - PATHFIND::GET_CLOSEST_VEHICLE_NODE(a_0, &v_5, v_9, 100.0, 2.5) - Known node types: simple path/asphalt road, only asphalt road, water, under the map at always the same coords. - The node types follows a pattern. For example, every fourth node is of the type water i.e. 3, 7, 11, 15, 19, 23, 27, 31, 35, 39... 239. Could not see any difference between nodes within certain types. - Starting at 2, every fourth node is under the map, always same coords. - Same with only asphalt road (0, 4, 8, etc) and simple path/asphalt road (1, 5, 9, etc). - gtaforums.com/topic/843561-pathfind-node-types - - - - - p5, p6 and p7 seems to be about the same as p4, p5 and p6 for GET_CLOSEST_VEHICLE_NODE. p6 and/or p7 has something to do with finding a node on the same path/road and same direction(at least for this native, something to do with the heading maybe). Edit this when you find out more. - p5 is either 1 or 12. 1 means any path/road. 12, 8, 0 means node in the middle of the closest main (asphalt) road. - p6 is always 3.0 - p7 is always 0. - Known node types: simple path/asphalt road, only asphalt road, water, under the map at always the same coords. - The node types follows a pattern. For example, every fourth node is of the type water i.e. 3, 7, 11, 15, 19, 23, 27, 31, 35, 39... 239. Could not see any difference between nodes within certain types. - Starting at 2, every fourth node is under the map, always same coords. - Same with only asphalt road (0, 4, 8, etc) and simple path/asphalt road (1, 5, 9, etc). - gtaforums.com/topic/843561-pathfind-node-types - Example of usage, moving vehicle to closest path/road: - Vector3 coords = ENTITY::GET_ENTITY_COORDS(playerVeh, true); - Vector3 closestVehicleNodeCoords; - float roadHeading; - PATHFIND::GET_CLOSEST_VEHICLE_NODE_WITH_HEADING(coords.x, coords.y, coords.z, &closestVehicleNodeCoords, &roadHeading, 1, 3, 0); - ENTITY::SET_ENTITY_HEADING(playerVeh, roadHeading); - ENTITY::SET_ENTITY_COORDS(playerVeh, closestVehicleNodeCoords.x, closestVehicleNodeCoords.y, closestVehicleNodeCoords.z, 1, 0, 0, 1); - VEHICLE::SET_VEHICLE_ON_GROUND_PROPERLY(playerVeh); - ------------------------------------------------------------------ - C# Example (ins1de) : pastebin.com/fxtMWAHD - - - - - Returns POSIX timestamp. - Renamed from `_GET_POSIX_TIME` to `GET_CLOUD_TIME_AS_INT` because of conflicting native names ([`0xDA488F299A5B164E`](#_0xDA488F299A5B164E)) - - An int representing the cloud time. - - - - Returns POSIX timestamp. - Renamed from `_GET_POSIX_TIME` to `GET_CLOUD_TIME_AS_INT` because of conflicting native names ([`0xDA488F299A5B164E`](#_0xDA488F299A5B164E)) - - An int representing the cloud time. - - - - p0: Ped Handle - p1: int i | 0 <= i <= 27 - p1 probably refers to the attributes configured in combatbehavior.meta. There are 13. Example: - <BlindFireChance value="0.1"/> - <WeaponShootRateModifier value="1.0"/> - <TimeBetweenBurstsInCover value="1.25"/> - <BurstDurationInCover value="2.0"/> - <TimeBetweenPeeks value="10.0"/> - <WeaponAccuracy value="0.18"/> - <FightProficiency value="0.8"/> - <StrafeWhenMovingChance value="1.0"/> - <WalkWhenStrafingChance value="0.0"/> - <AttackWindowDistanceForCover value="55.0"/> - <TimeToInvalidateInjuredTarget value="9.0"/> - <TriggerChargeTime_Near value="4.0"/> - <TriggerChargeTime_Far value="10.0"/> - -------------Confirmed by editing combatbehavior.meta: - p1: - 0=BlindFireChance - 1=BurstDurationInCover - 3=TimeBetweenBurstsInCover - 4=TimeBetweenPeeks - 5=StrafeWhenMovingChance - 8=WalkWhenStrafingChance - 11=AttackWindowDistanceForCover - 12=TimeToInvalidateInjuredTarget - 16=OptimalCoverDistance - - - - - Return the mission id of a job. - - - - - Return the mission id of a job. - - - - - formerly called _GET_CONTROL_ACTION_NAME incorrectly - p2 appears to always be true. - p2 is unused variable in function. - EG: - GET_CONTROL_INSTRUCTIONAL_BUTTON (2, 201, 1) -- [[INPUT_FRONTEND_ACCEPT (e.g. Enter button)]] - GET_CONTROL_INSTRUCTIONAL_BUTTON (2, 202, 1) -- [[INPUT_FRONTEND_CANCEL (e.g. ESC button)]] - GET_CONTROL_INSTRUCTIONAL_BUTTON (2, 51, 1) -- [[INPUT_CONTEXT (e.g. E button)]] - gtaforums.com/topic/819070-c-draw-instructional-buttons-scaleform-movie/#entry1068197378 - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - formerly called _GET_CONTROL_ACTION_NAME incorrectly - p2 appears to always be true. - p2 is unused variable in function. - EG: - GET_CONTROL_INSTRUCTIONAL_BUTTON (2, 201, 1) -- [[INPUT_FRONTEND_ACCEPT (e.g. Enter button)]] - GET_CONTROL_INSTRUCTIONAL_BUTTON (2, 202, 1) -- [[INPUT_FRONTEND_CANCEL (e.g. ESC button)]] - GET_CONTROL_INSTRUCTIONAL_BUTTON (2, 51, 1) -- [[INPUT_CONTEXT (e.g. E button)]] - gtaforums.com/topic/819070-c-draw-instructional-buttons-scaleform-movie/#entry1068197378 - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - Returns the value of CONTROLS::GET_CONTROL_VALUE Normalized (ie a real number value between -1 and 1) - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - 0 -> up - 1 -> lowering down - 2 -> down - 3 -> raising up - enum RoofState - { - ROOFSTATE_UP = 0; - ROOFSTATE_LOWERING, - ROOFSTATE_DOWN, - ROOFSTATE_RAISING - }; - - - - - if (UI::_2309595AD6145265() == ${fe_menu_version_empty_no_background}) - Seems to get the current frontend menu - - - - - if (UI::_2309595AD6145265() == ${fe_menu_version_empty_no_background}) - Seems to get the current frontend menu - - - - - Gets the aggressiveness factor of the ocean waves. - - - - - Gets the aggressiveness factor of the ocean waves. - - - - - Gets the aggressiveness factor of the ocean waves. - - - - - american = 0 - french = 1 - german = 2 - italian =3 - spanish = 4 - portuguese = 5 - polish = 6 - russian = 7 - korean = 8 - chinesetraditional = 9 - japanese = 10 - mexican = 11 - chinesesimplified = 12 - - - - - american = 0 - french = 1 - german = 2 - italian =3 - spanish = 4 - portuguese = 5 - polish = 6 - russian = 7 - korean = 8 - chinesetraditional = 9 - japanese = 10 - mexican = 11 - chinesesimplified = 12 - - - - - Returns the handle for the notification currently displayed on the screen. - - - - - Returns the handle for the notification currently displayed on the screen. - - - - - Example in VB - Public Shared Function GetVehicleCurrentWeapon(Ped As Ped) As Integer - Dim arg As New OutputArgument() - Native.Function.Call(Hash.GET_CURRENT_PED_VEHICLE_WEAPON, Ped, arg) - Return arg.GetResult(Of Integer)() - End Function - Usage: - If GetVehicleCurrentWeapon(Game.Player.Character) = -821520672 Then ...Do something - Note: -821520672 = VEHICLE_WEAPON_PLANE_ROCKET - - - - - The return value seems to indicate returns true if the hash of the weapon object weapon equals the weapon hash. - p2 seems to be 1 most of the time. - p2 is not implemented - disassembly said that? - ------ - yes on disassembly p2 it seems not implemented i just have: - bool __fastcall sub_7FF6C56CE684(__int64 a1, _DWORD *a2) - Found At: 7ff6c56ce684 - - - - - Returns the name of the currently executing resource. - - The name of the resource. - - - - Returns the peer address of the remote game server that the user is currently connected to. - - The peer address of the game server (e.g. `127.0.0.1:30120`), or NULL if not available. - - - - Takes the specified time and writes it to the structure specified in the second argument. - struct date_time - { - alignas(8) int year; - alignas(8) int month; - alignas(8) int day; - alignas(8) int hour; - alignas(8) int minute; - alignas(8) int second; - }; - - - - - This function is hard-coded to always return 1. - - - - - Gets a destructible object's handle - Example: - OBJECT::_B48FCED898292E52(-809.9619750976562, 170.919, 75.7406997680664, 3.0, "des_tvsmash"); - All found arguments for p4 starts with "des_" like "DES_FIB_Floor" and "des_shipsink". - - - - - Gets a destructible object's handle - Example: - OBJECT::_B48FCED898292E52(-809.9619750976562, 170.919, 75.7406997680664, 3.0, "des_tvsmash"); - All found arguments for p4 starts with "des_" like "DES_FIB_Floor" and "des_shipsink". - - - - - Get a destrictible object's state. - Substract 1 to get the real state. - See _SET_DES_OBJECT_STATE to see the different states - For example, if the object just spawned (state 2), the native will return 3. - - - - - Get a destrictible object's state. - Substract 1 to get the real state. - See _SET_DES_OBJECT_STATE to see the different states - For example, if the object just spawned (state 2), the native will return 3. - - - - - control - c# works with (int)GTA.Control.CursorY / (int)GTA.Control.CursorX and returns the mouse movement (additive). - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - Returns model name of vehicle in all caps. Needs to be displayed through localizing text natives to get proper display name. - ----------------------------------------------------------------------------------------------------------------------------------------- - While often the case, this does not simply return the model name of the vehicle (which could be hashed to return the model hash). Variations of the same vehicle may also use the same display name. - ----------------------------------------------------------------------------------------------------------------------------------------- - Returns "CARNOTFOUND" if the hash doesn't match a vehicle hash. - Using UI::_GET_LABEL_TEXT, you can get the localized name. - For a full list, see here: pastebin.com/wvpyS4kS (pastebin.com/dA3TbkZw) - - - - - Returns the distance between two three-dimensional points, optionally ignoring the Z values. - You'll most likely want to use your language's native vector functionality instead. - - The X coordinate of the first point. - The Y coordinate of the first point. - The Z coordinate of the first point. - The X coordinate of the second point. - The Y coordinate of the second point. - The Z coordinate of the second point. - Whether or not to use the Z coordinate. - The distance between the passed points in units. - - - - dlcVehicleIndex takes a number from 0 - GET_NUM_DLC_VEHICLES() - 1. - outData is a struct of 3 8-byte items. - The Second item in the struct *(Hash *)(outData + 1) is the vehicle hash. - - - - - dlcVehicleIndex is 0 to GET_NUM_DLC_VEHICLS() - - - - - p0 seems to be the weapon index - p1 seems to be the weapon component index - struct DlcComponentData{ - int attachBone; - int padding1; - int bActiveByDefault; - int padding2; - int unk; - int padding3; - int componentHash; - int padding4; - int unk2; - int padding5; - int componentCost; - int padding6; - char nameLabel[64]; - char descLabel[64]; - }; - - - - - dlcWeaponIndex takes a number from 0 - GET_NUM_DLC_WEAPONS() - 1. - struct DlcWeaponData - { - int emptyCheck; //use DLC1::_IS_DLC_DATA_EMPTY on this - int padding1; - int weaponHash; - int padding2; - int unk; - int padding3; - int weaponCost; - int padding4; - int ammoCost; - int padding5; - int ammoType; - int padding6; - int defaultClipSize; - int padding7; - char nameLabel[64]; - char descLabel[64]; - char desc2Label[64]; // usually "the" + name - char upperCaseNameLabel[64]; - }; - - - - - Returns the NUI window handle for a specified DUI browser object. - - The DUI browser handle. - The NUI window handle, for use in e.g. CREATE_RUNTIME_TEXTURE_FROM_DUI_HANDLE. - - - - Returns a float value representing animation's current playtime with respect to its total playtime. This value increasing in a range from [0 to 1] and wrap back to 0 when it reach 1. - Example: - 0.000000 - mark the starting of animation. - 0.500000 - mark the midpoint of the animation. - 1.000000 - mark the end of animation. - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Returns a float value representing animation's total playtime in milliseconds. - Example: - GET_ENTITY_ANIM_TOTAL_TIME(PLAYER_ID(),"amb@world_human_yoga@female@base","base_b") - return 20800.000000 - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Returns the index of the bone. If the bone was not found, -1 will be returned. - list: - pastebin.com/D7JMnX1g - BoneNames: - chassis, - windscreen, - seat_pside_r, - seat_dside_r, - bodyshell, - suspension_lm, - suspension_lr, - platelight, - attach_female, - attach_male, - bonnet, - boot, - chassis_dummy, //Center of the dummy - chassis_Control, //Not found yet - door_dside_f, //Door left, front - door_dside_r, //Door left, back - door_pside_f, //Door right, front - door_pside_r, //Door right, back - Gun_GripR, - windscreen_f, - platelight, //Position where the light above the numberplate is located - VFX_Emitter, - window_lf, //Window left, front - window_lr, //Window left, back - window_rf, //Window right, front - window_rr, //Window right, back - engine, //Position of the engine - gun_ammo, - ROPE_ATTATCH, //Not misspelled. In script "finale_heist2b.c4". - wheel_lf, //Wheel left, front - wheel_lr, //Wheel left, back - wheel_rf, //Wheel right, front - wheel_rr, //Wheel right, back - exhaust, //Exhaust. shows only the position of the stock-exhaust - overheat, //A position on the engine(not exactly sure, how to name it) - misc_e, //Not a car-bone. - seat_dside_f, //Driver-seat - seat_pside_f, //Seat next to driver - Gun_Nuzzle, - seat_r - I doubt that the function is case-sensitive, since I found a "Chassis" and a "chassis". - Just tested: Definitely not case-sensitive. - - - - - console hash: 0xE8C0C629 - - - - - console hash: 0xE8C0C629 - - - - - Gets the current coordinates for a specified entity. - - The entity to get the coordinates from. - Unused by the game, potentially used by debug builds of GTA in order to assert whether or not an entity was alive. - The current entity coordinates. - - - - Gets the entity's forward vector. - - - - - Gets the X-component of the entity's forward vector. - - - - - Gets the Y-component of the entity's forward vector. - - - - - Returns the heading of the entity in degrees. Also know as the "Yaw" of an entity. - - - - - Returns an integer value of entity's current health. - Example of range for ped: - - Player [0 to 200] - - Ped [100 to 200] - - Vehicle [0 to 1000] - - Object [0 to 1000] - Health is actually a float value but this native casts it to int. - In order to get the actual value, do: - float health = *(float *)(entityAddress + 0x280); - - - - - Return height (z-dimension) above ground. - Example: The pilot in a titan plane is 1.844176 above ground. - How can i convert it to meters? - Everything seems to be in meters, probably this too. - - - - - Returns the LOD distance of an entity. - - - - - Return an integer value of entity's maximum health. - Example: - - Player = 200 - - - - - Returns the model hash from the entity - Sometimes throws an exception, idk what causes it though. - - - - - Gets the heading of the entity physics in degrees, which tends to be more accurate than just "GET_ENTITY_HEADING". This can be clearly seen while, for example, ragdolling a ped/player. - NOTE: The name and description of this native are based on independent research. If you find this native to be more suitable under a different name and/or described differently, please feel free to do so. - - - - - Gets the heading of the entity physics in degrees, which tends to be more accurate than just "GET_ENTITY_HEADING". This can be clearly seen while, for example, ragdolling a ped/player. - NOTE: The name and description of this native are based on independent research. If you find this native to be more suitable under a different name and/or described differently, please feel free to do so. - - - - - Returns TRUE if it found an entity in your crosshair within range of your weapon. Assigns the handle of the target to the *entity that you pass it. - Returns false if no entity found. - - - - - Gets an entity's population type. - **Valid population types:** - ```cpp - enum ePopulationType - { - POPTYPE_UNKNOWN = 0, - POPTYPE_RANDOM_PERMANENT, - POPTYPE_RANDOM_PARKED, - POPTYPE_RANDOM_PATROL, - POPTYPE_RANDOM_SCENARIO, - POPTYPE_RANDOM_AMBIENT, - POPTYPE_PERMANENT, - POPTYPE_MISSION, - POPTYPE_REPLAY, - POPTYPE_CACHE, - POPTYPE_TOOL - }; - ``` - - The entity to obtain the population type from. - A population type, from the enumeration above. - - - - w is the correct parameter name! - - - - - Displays the current ROLL axis of the entity [-180.0000/180.0000+] - (Sideways Roll) such as a vehicle tipped on its side - - - - - rotationOrder refers to the order yaw pitch roll is applied - value ranges from 0 to 5. What you use for rotationOrder when getting must be the same as rotationOrder when setting the rotation. - Unsure what value corresponds to what rotation order, more testing will be needed for that. - ------ - rotationOrder is usually 2 in scripts - ------ - ENTITY::GET_ENTITY_ROTATION(Any p0, false or true); - if false than return from -180 to 180 - if true than return from -90 to 90 - --- - As said above, the value of p1 affects the outcome. R* uses 1 and 2 instead of 0 and 1, so I marked it as an int. - What it returns is the yaw on the z part of the vector, which makes sense considering R* considers z as vertical. Here's a picture for those of you who don't understand pitch, yaw, and roll: - www.allstar.fiu.edu/aero/images/pic5-1.gif - I don't know why it returns a Vec3, but sometimes the values x and y go negative, yet they're always zero. Just use GET_ENTITY_PITCH and GET_ENTITY_ROLL for pitch and roll. - - - - - ANGULAR_VELOCITY* - - - - - All ambient entities in-world seem to have the same value for the second argument (Any *script), depending on when the scripthook was activated/re-activated. I've seen numbers from ~5 to almost 70 when the value was translated with to_string. The function return value seems to always be 0. - - - - - result is in meters per second - ------------------------------------------------------------ - So would the conversion to mph and km/h, be along the lines of this. - float speed = GET_ENTITY_SPEED(veh); - float kmh = (speed * 3.6); - float mph = (speed * 2.236936); - - - - - Relative can be used for getting speed relative to the frame of the vehicle, to determine for example, if you are going in reverse (-y speed) or not (+y speed). - - - - - Get how much of the entity is submerged. 1.0f is whole entity. - - - - - Returns: - 0 = no entity - 1 = ped - 2 = vehicle - 3 = object - This is weird, because in memory atleast on xbox360 it stores it from testing with a variety of (ped, vehicle, and objects). - 03 - 04 - 05 - The above is more then likely true for the native's return, but if you were to skip using the native it's a bit weird it returns different results. - - - - - the unit is m/s along each axis - GET_ENTITY_VELOCITY(aEntity) is the same as GET_ENTITY_SPEED_VECTOR(aEntity,false) - - - - - eventGroup: 0 = CEventGroupScriptAI, 1 = CEventGroupScriptNetwork - - - - - eventGroup: 0 = CEventGroupScriptAI, 1 = CEventGroupScriptNetwork - - - - - eventGroup: 0 = CEventGroupScriptAI, 1 = CEventGroupScriptNetwork - - - - - See [`GetTimecycleModifierIndex`](#_0xFDF3D97C674AFB66) for use, works the same just for the secondary timecycle modifier. - - An integer representing the Timecycle modifier - - - - 8 = waypoint - - - - - Type equals 0 for male non-dlc, 1 for female non-dlc, 2 for male dlc, and 3 for female dlc. - Used when calling SET_PED_HEAD_BLEND_DATA. - - - - - Returns - 0 - Third Person Close - 1 - Third Person Mid - 2 - Third Person Far - 4 - First Person - - - - - Returns the type of camera: - 0 - Third Person Close - 1 - Third Person Mid - 2 - Third Person Far - 4 - First Person - - - - - Gets the gameplay camera's far clipping plane. - - - - - Gets the gameplay camera's far clipping plane. - - - - - Gets the gameplay camera's far depth of field distance. - - - - - Gets the gameplay camera's far depth of field distance. - - - - - Gets the gameplay camera's near depth of field distance. - - - - - Gets the gameplay camera's near depth of field distance. - - - - - p0 dosen't seem to change much, I tried it with 0, 1, 2: - 0-Pitch(X): -70.000092 - 0-Roll(Y): -0.000001 - 0-Yaw(Z): -43.886459 - 1-Pitch(X): -70.000092 - 1-Roll(Y): -0.000001 - 1-Yaw(Z): -43.886463 - 2-Pitch(X): -70.000092 - 2-Roll(Y): -0.000002 - 2-Yaw(Z): -43.886467 - - - - - p0 seems to consistently be 2 across scripts - Function is called faily often by CAM::CREATE_CAM_WITH_PARAMS - - - - - it returns a reference to an empty string, the same empty string that's used by 1687 internal gta functions. if it was used in a script (and i cannot find an instance of it being used), it would be as the source for a StringCopy or somesuch. - - - - - it returns a reference to an empty string, the same empty string that's used by 1687 internal gta functions. if it was used in a script (and i cannot find an instance of it being used), it would be as the source for a StringCopy or somesuch. - - - - - only documented to be continued... - - - - - only documented to be continued... - - - - - Gets the ground elevation at the specified position. Note that if the specified position is below ground level, the function will output zero! - x: Position on the X-axis to get ground elevation at. - y: Position on the Y-axis to get ground elevation at. - z: Position on the Z-axis to get ground elevation at. - groundZ: The ground elevation at the specified position. - unk: Nearly always 0, very rarely 1 in the scripts. - - - - - p1 may be a BOOL representing whether or not the group even exists - - - - - Input: Haircolor index, value between 0 and 63 (inclusive). - Output: RGB values for the haircolor specified in the input. - This is used with the hair color swatches scaleform. - Use [`_0x013E5CFC38CD5387`](#_0x013E5CFC38CD5387) to get the makeup colors. - - The hair color index. Value between 0-63 (inclusive). - Output red value. - Output green value. - Output blue value. - - - - Input: Haircolor index, value between 0 and 63 (inclusive). - Output: RGB values for the haircolor specified in the input. - This is used with the hair color swatches scaleform. - Use [`_0x013E5CFC38CD5387`](#_0x013E5CFC38CD5387) to get the makeup colors. - - The hair color index. Value between 0-63 (inclusive). - Output red value. - Output green value. - Output blue value. - - - - Gets the (case-insensitive, lower-cased) hash value for the passed string. This uses the 'Jenkins one-at-a-time' hashing - algorithm. - - The string to hash. - The hash of `string`. - - - - Returns a hash representing which part of the map the given coords are located. - Possible return values: - (Hash of) city -> -289320599 - (Hash of) countryside -> 2072609373 - C# Example : - Ped player = Game.Player.Character; - Hash h = Function.Call<Hash>(Hash.GET_HASH_OF_MAP_AREA_AT_COORDS, player.Position.X, player.Position.Y, player.Position.Z); - - - - - dx = x1 - dy = y1 - - - - - Max 1000. - At -100 both helicopter rotors will stall. - - - - - Max 1000. - At 0 the main rotor will stall. - - - - - Max 1000. - At 0 the tail rotor will stall. - - - - - HUD colors and their values: pastebin.com/d9aHPbXN - - - - - MulleDK19: Gets the ID of the next active thread. - First call _BEGIN_ENUMERATE_THREADS (0xDADFADA5A20143A8). - Any subsequent call to this function will then return the ID of the next active thread. - If the function returns 0, the end of the enumeration has been reached. - ----------------------------------------------------------------------- - Here's an example: - std::vector<int> vecCurrentThreads; - void update_current_threads_list() - { - vecCurrentThreads.clear(); - _BEGIN_ENUMERATING_THREADS(); - int id = _GET_ID_OF_NEXT_THREAD_IN_ENUMERATION(); - while (id != 0) - { - id = _GET_ID_OF_NEXT_THREAD_IN_ENUMERATION(); - vecCurrentThreads.push_back(id); - } - } - - - - - MulleDK19: Gets the ID of the next active thread. - First call _BEGIN_ENUMERATE_THREADS (0xDADFADA5A20143A8). - Any subsequent call to this function will then return the ID of the next active thread. - If the function returns 0, the end of the enumeration has been reached. - ----------------------------------------------------------------------- - Here's an example: - std::vector<int> vecCurrentThreads; - void update_current_threads_list() - { - vecCurrentThreads.clear(); - _BEGIN_ENUMERATING_THREADS(); - int id = _GET_ID_OF_NEXT_THREAD_IN_ENUMERATION(); - while (id != 0) - { - id = _GET_ID_OF_NEXT_THREAD_IN_ENUMERATION(); - vecCurrentThreads.push_back(id); - } - } - - - - - x1, y1, z1 -- Coords of your ped model - x2, y2, z2 -- Coords of the ped you want to switch to - - - - - Returns interior ID from specified coordinates. If coordinates are outside, then it returns 0. - Example for VB.NET - Dim interiorID As Integer = Native.Function.Call(Of Integer)(Hash.GET_INTERIOR_AT_COORDS, X, Y, Z) - - - - - Returns the interior ID representing the requested interior at that location (if found?). The supplied interior string is not the same as the one used to load the interior. - Use: INTERIOR::UNPIN_INTERIOR(INTERIOR::GET_INTERIOR_AT_COORDS_WITH_TYPE(x, y, z, interior)) - Interior types include: "V_Michael", "V_Franklins", "V_Franklinshouse", etc.. you can find them in the scripts. - Not a very useful native as you could just use GET_INTERIOR_AT_COORDS instead and get the same result, without even having to specify the interior type. - - - - - Returns the interior ID representing the requested interior at that location (if found?). The supplied interior string is not the same as the one used to load the interior. - Use: INTERIOR::UNPIN_INTERIOR(INTERIOR::GET_INTERIOR_AT_COORDS_WITH_TYPE(x, y, z, interior)) - Interior types include: "V_Michael", "V_Franklins", "V_Franklinshouse", etc.. you can find them in the scripts. - Not a very useful native as you could just use GET_INTERIOR_AT_COORDS instead and get the same result, without even having to specify the interior type. - - - - - Returns the handle of the interior that the entity is in. Returns 0 if outside. - - - - - Returns the group ID of the specified interior. For example, regular interiors have group 0, subway interiors have group 1. There are a few other groups too. - - - - - false = Any resolution < 1280x720 - true = Any resolution >= 1280x720 - - - - - From the driver's perspective, is the left headlight broken. - - - - - From the driver's perspective, is the left headlight broken. - - - - - Hash collision - - - - - gadgetHash - was always 0xFBAB5776 ("GADGET_PARACHUTE"). - - - - - Dr. Underscore (1/6/18): - Works exactly like IS_PROJECTILE_TYPE_IN_AREA, but it puts the position of the projectile in the vector. - p8 is probably ownedByPlayer, but not known for sure. (see IS_PROJECTILE_IN_AREA for info) - Unsure of the hash name, could someone confirm this? - - - - - Dr. Underscore (1/6/18): - Works exactly like IS_PROJECTILE_TYPE_IN_AREA, but it puts the position of the projectile in the vector. - p8 is probably ownedByPlayer, but not known for sure. (see IS_PROJECTILE_IN_AREA for info) - Unsure of the hash name, could someone confirm this? - - - - - From the driver's perspective, is the right headlight broken. - - - - - From the driver's perspective, is the right headlight broken. - - - - - p0 = VEHICLE_NODE_ID - Returns true when the node is Offroad. Alleys, some dirt roads, and carparks return true. - Normal roads where plenty of Peds spawn will return false - - - - - p0 = VEHICLE_NODE_ID - Returns true when the node is Offroad. Alleys, some dirt roads, and carparks return true. - Normal roads where plenty of Peds spawn will return false - - - - - from docks_heistb.c4: - AI::GET_IS_TASK_ACTIVE(PLAYER::PLAYER_PED_ID(), 2)) - Known Tasks: pastebin.com/2gFqJ3Px - - - - - Returns true when in a vehicle, false whilst entering/exiting. - - - - - Returns true when in a vehicle, false whilst entering/exiting. - - - - - Check if Vehicle Secondary is avaliable for customize - - - - - For a full list, see here: pastebin.com/Tp0XpBMN - - - - - Setting Aspect Ratio Manually in game will return: - false - for Narrow format Aspect Ratios (3:2, 4:3, 5:4, etc. ) - true - for Wide format Aspect Ratios (5:3, 16:9, 16:10, etc. ) - Setting Aspect Ratio to "Auto" in game will return "false" or "true" based on the actual set Resolution Ratio. - - - - - Seems to do the exact same as INTERIOR::GET_ROOM_KEY_FROM_ENTITY - - - - - Gets a string literal from a label name. - - - - - ``` - Landing gear states: - 0: Deployed - 1: Closing (Retracting) - 3: Opening (Deploying) - 4: Retracted - ``` - Landing gear state 2 is never used. - - The vehicle to check. - The current state of the vehicles landing gear. - - - - ``` - Landing gear states: - 0: Deployed - 1: Closing (Retracting) - 3: Opening (Deploying) - 4: Retracted - ``` - Landing gear state 2 is never used. - - The vehicle to check. - The current state of the vehicles landing gear. - - - - Not exactly sure on this one, but here's a snippet of code: - if (PED::IS_PED_IN_ANY_VEHICLE(PLAYER::PLAYER_PED_ID(), 0)) { - v_2 = PED::GET_VEHICLE_PED_IS_IN(PLAYER::PLAYER_PED_ID(), 0); - } else { - v_2 = VEHICLE::_B2D06FAEDE65B577(); - } - - - - - Not exactly sure on this one, but here's a snippet of code: - if (PED::IS_PED_IN_ANY_VEHICLE(PLAYER::PLAYER_PED_ID(), 0)) { - v_2 = PED::GET_VEHICLE_PED_IS_IN(PLAYER::PLAYER_PED_ID(), 0); - } else { - v_2 = VEHICLE::_B2D06FAEDE65B577(); - } - - - - - Returns the length of the string passed (much like strlen). - - - - - gets the length of a null terminated string, without checking unicode encodings - - - - - gets the length of a null terminated string, without checking unicode encodings - - - - - Returns the string length of the string from the gxt string . - - - - - Second Param = LiveryIndex - example - int count = VEHICLE::GET_VEHICLE_LIVERY_COUNT(veh); - for (int i = 0; i < count; i++) - { - char* LiveryName = VEHICLE::GET_LIVERY_NAME(veh, i); - } - this example will work fine to fetch all names - for example for Sanchez we get - SANC_LV1 - SANC_LV2 - SANC_LV3 - SANC_LV4 - SANC_LV5 - Use _GET_LABEL_TEXT, to get the localized livery name. - ----------- - NOTE: You may need to set the vehicle's modKit to 0 by using this function: SET_VEHICLE_MOD_KIT() before getting the name, otherwise this native may return NULL. - dev-c.com/nativedb/func/info/1f2aa07f00b3217a - - - - - Gets local system time as year, month, day, hour, minute and second. - Example usage: - int year; - int month; - int day; - int hour; - int minute; - int second; - or use std::tm struct - TIME::GET_LOCAL_TIME(&year, &month, &day, &hour, &minute, &second); - - - - - Input: Makeup color index, value between 0 and 63 (inclusive). - Output: RGB values for the makeup color specified in the input. - This is used with the makeup color swatches scaleform. - Use [`_0x4852FC386E2E1BB5`](#_0x4852FC386E2E1BB5) to get the hair colors. - - The hair color index. Value between 0-63 (inclusive). - Output red value. - Output green value. - Output blue value. - - - - Input: Makeup color index, value between 0 and 63 (inclusive). - Output: RGB values for the makeup color specified in the input. - This is used with the makeup color swatches scaleform. - Use [`_0x4852FC386E2E1BB5`](#_0x4852FC386E2E1BB5) to get the hair colors. - - The hair color index. Value between 0-63 (inclusive). - Output red value. - Output green value. - Output blue value. - - - - p2 is mostly 1 in the scripts. - - - - - Gets the maximum wanted level the player can get. - Ranges from 0 to 5. - - - - - This function is hard-coded to always return 0. - Limit is 96, see _GET_MAXIMUM_NUMBER_OF_PHOTOS_2 (0xDC54A7AF8B3A14EF). - - - - - This is the "actual" GET_MAXIMUM_NUMBER_OF_PHOTOS native. Always returns 96. - - - - - This is the "actual" GET_MAXIMUM_NUMBER_OF_PHOTOS native. Always returns 96. - - - - - Returns the name for the type of vehicle mod(Armour, engine etc) - ----------- - for some reason this native seems unreliable: sometimes returns NULL, and when retval != NULL the string can be empty - - - - - Returns the text label of a mod type for a given vehicle - Use _GET_LABEL_TEXT to get the part name in the game's language - - - - - Gets the dimensions of a model. - Calculate (maximum - minimum) to get the size, in which case, Y will be how long the model is. - Vector3 GetDimensions(Hash model) - { - Vector3 right, left; - GET_MODEL_DIMENSIONS(model, &right, &left); - return Vector3::Subtract(left, right); - } - Example from the scripts: GAMEPLAY::GET_MODEL_DIMENSIONS(ENTITY::GET_ENTITY_MODEL(PLAYER::PLAYER_PED_ID()), &v_1A, &v_17); - - - - - Function just returns 0 - void __fastcall ped__get_mount(NativeContext *a1) - { - NativeContext *v1; // rbx@1 - v1 = a1; - GetAddressOfPedFromScriptHandle(a1->Args->Arg1); - v1->Returns->Item1= 0; - } - - - - - The reversed code looks like this (Sasuke78200) - // - char g_szScriptName[64]; - char* _0xBE7ACD89(int a_iThreadID) - { - scrThread* l_pThread; - // Get the script thread - l_pThread = GetThreadByID(a_iThreadID); - if(l_pThread == 0 || l_pThread->m_iThreadState == 2) - { - strncpy(g_szScriptName, "", 64); - } - else - { - strncpy(g_szScriptName, l_pThread->m_szScriptName, 64); - } - return g_szScriptName; - } - - - - - The reversed code looks like this (Sasuke78200) - // - char g_szScriptName[64]; - char* _0xBE7ACD89(int a_iThreadID) - { - scrThread* l_pThread; - // Get the script thread - l_pThread = GetThreadByID(a_iThreadID); - if(l_pThread == 0 || l_pThread->m_iThreadState == 2) - { - strncpy(g_szScriptName, "", 64); - } - else - { - strncpy(g_szScriptName, l_pThread->m_szScriptName, 64); - } - return g_szScriptName; - } - - - - - AIRP = Los Santos International Airport - ALAMO = Alamo Sea - ALTA = Alta - ARMYB = Fort Zancudo - BANHAMC = Banham Canyon Dr - BANNING = Banning - BEACH = Vespucci Beach - BHAMCA = Banham Canyon - BRADP = Braddock Pass - BRADT = Braddock Tunnel - BURTON = Burton - CALAFB = Calafia Bridge - CANNY = Raton Canyon - CCREAK = Cassidy Creek - CHAMH = Chamberlain Hills - CHIL = Vinewood Hills - CHU = Chumash - CMSW = Chiliad Mountain State Wilderness - CYPRE = Cypress Flats - DAVIS = Davis - DELBE = Del Perro Beach - DELPE = Del Perro - DELSOL = La Puerta - DESRT = Grand Senora Desert - DOWNT = Downtown - DTVINE = Downtown Vinewood - EAST_V = East Vinewood - EBURO = El Burro Heights - ELGORL = El Gordo Lighthouse - ELYSIAN = Elysian Island - GALFISH = Galilee - GOLF = GWC and Golfing Society - GRAPES = Grapeseed - GREATC = Great Chaparral - HARMO = Harmony - HAWICK = Hawick - HORS = Vinewood Racetrack - HUMLAB = Humane Labs and Research - JAIL = Bolingbroke Penitentiary - KOREAT = Little Seoul - LACT = Land Act Reservoir - LAGO = Lago Zancudo - LDAM = Land Act Dam - LEGSQU = Legion Square - LMESA = La Mesa - LOSPUER = La Puerta - MIRR = Mirror Park - MORN = Morningwood - MOVIE = Richards Majestic - MTCHIL = Mount Chiliad - MTGORDO = Mount Gordo - MTJOSE = Mount Josiah - MURRI = Murrieta Heights - NCHU = North Chumash - NOOSE = N.O.O.S.E - OCEANA = Pacific Ocean - PALCOV = Paleto Cove - PALETO = Paleto Bay - PALFOR = Paleto Forest - PALHIGH = Palomino Highlands - PALMPOW = Palmer-Taylor Power Station - PBLUFF = Pacific Bluffs - PBOX = Pillbox Hill - PROCOB = Procopio Beach - RANCHO = Rancho - RGLEN = Richman Glen - RICHM = Richman - ROCKF = Rockford Hills - RTRAK = Redwood Lights Track - SANAND = San Andreas - SANCHIA = San Chianski Mountain Range - SANDY = Sandy Shores - SKID = Mission Row - SLAB = Stab City - STAD = Maze Bank Arena - STRAW = Strawberry - TATAMO = Tataviam Mountains - TERMINA = Terminal - TEXTI = Textile City - TONGVAH = Tongva Hills - TONGVAV = Tongva Valley - VCANA = Vespucci Canals - VESP = Vespucci - VINE = Vinewood - WINDF = Ron Alternates Wind Farm - WVINE = West Vinewood - ZANCUDO = Zancudo River - ZP_ORT = Port of South Los Santos - ZQ_UAR = Davis Quartz - - - - - Looks like the last parameter returns true if the path has been calculated, while the first returns the remaining distance to the end of the path. - Return value of native is the same as GET_NAVMESH_ROUTE_RESULT - Looks like the native returns an int for the path's state: - 1 - ??? - 2 - 3 - Finished Generating - - - - - See GET_NAVMESH_ROUTE_DISTANCE_REMAINING for more details. - - - - - Could this be used alongside either, - SET_NETWORK_ID_EXISTS_ON_ALL_MACHINES or _SET_NETWORK_ID_SYNC_TO_PLAYER to make it so other players can hear the sound while online? It'd be a bit troll-fun to be able to play the Zancudo UFO creepy sounds globally. - - - - - Gets the next zone that has been disabled using SET_GPS_DISABLED_ZONE_AT_INDEX. - - The disabled zone index - - - - Gets the next zone that has been disabled using SET_GPS_DISABLED_ZONE_AT_INDEX. - - The disabled zone index - - - - Returns weather name hash - - - - - Returns weather name hash - - - - - Needs more research. Gets the stat name of a masked bool? - p4 - Usually "_NGPSTAT_BOOL" or "_NGTATPSTAT_BOOL". There may be more that I missed. - - - - - Needs more research. Gets the stat name of a masked bool? - p4 - Usually "_NGPSTAT_BOOL" or "_NGTATPSTAT_BOOL". There may be more that I missed. - - - - - Needs more research. Gets the stat name of a masked int? - p4 - Usually one of the following (there may be more that I missed): - -----> "_APAPSTAT_INT" - -----> "_LRPSTAT_INT" - -----> "_NGPSTAT_INT" - -----> "_MP_APAPSTAT_INT" - -----> "_MP_LRPSTAT_INT" - - - - - Needs more research. Gets the stat name of a masked int? - p4 - Usually one of the following (there may be more that I missed): - -----> "_APAPSTAT_INT" - -----> "_LRPSTAT_INT" - -----> "_NGPSTAT_INT" - -----> "_MP_APAPSTAT_INT" - -----> "_MP_LRPSTAT_INT" - - - - - See gtaforums.com/topic/843561-pathfind-node-types for node type info. 0 = paved road only, 1 = any road, 3 = water - p10 always equal 0x40400000 - p11 always equal 0 - - - - - Returns the id. - - - - - Get the nth closest vehicle node and its heading. (unknown2 = 9, unknown3 = 3.0, unknown4 = 2.5) - - - - - only documented to be continued... - - - - - only documented to be continued... - - - - - Allowed Values from 0 - DLC1::GET_NUM_DLC_WEAPONS() - - - - - Gets the total number of DLC weapons. - - - - - Returns number of possible values of the componentId argument of GET_FORCED_COMPONENT. - - - - - Used for freemode (online) characters. - - - - - Used with freemode (online) characters. - - - - - Type equals 0 for male non-dlc, 1 for female non-dlc, 2 for male dlc, and 3 for female dlc. - - - - - character is 0 for Michael, 1 for Franklin, 2 for Trevor, 3 for freemode male, and 4 for freemode female. - componentId is between 0 and 11 and corresponds to the usual component slots. - p1 could be the outfit number; unsure. - p2 is usually -1; unknown function. - p3 appears to be a boolean flag; unknown function. - p4 is usually -1; unknown function. - - - - - p0 appears to be for MP - - - - - p0 appears to be for MP - - - - - p0 appears to be for MP - - - - - Gets the amount of metadata values with the specified key existing in the specified resource's manifest. - See also: [Resource manifest](https://docs.fivem.net/resources/manifest/) - - The resource name. - The key to look up in the resource manifest. - - - - Returns how many possible mods a vehicle has for a given mod type - - - - - eventGroup: 0 = CEventGroupScriptAI, 1 = CEventGroupScriptNetwork - - - - - Gets the number of instances of the specified script is currently running. - Actually returns numInstances - 1. - if (scriptPtr) - v3 = GetNumberOfInstancesOfScript(scriptPtr) - 1; - return v3; - - - - - Gets the number of instances of the specified script is currently running. - Actually returns numInstances - 1. - if (scriptPtr) - v3 = GetNumberOfInstancesOfScript(scriptPtr) - 1; - return v3; - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - Need to check behavior when drawableId = -1 - - Doofy.Ass - Why this function doesn't work and return nill value? - GET_NUMBER_OF_PED_PROP_TEXTURE_VARIATIONS(PLAYER.PLAYER_PED_ID(), 0, 5) - tick: scripts/addins/menu_execute.lua:51: attempt to call field 'GET_NUMBER_OF_PED_PROP_TEXTURE_VARIATIONS' (a nil value) - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - Actually number of color combinations - - - - - Returns the number of *types* of licence plates, enumerated below in SET_VEHICLE_NUMBER_PLATE_TEXT_INDEX. - - - - - Simply returns whatever is passed to it (Regardless of whether the handle is valid or not). - - - - - Converts world coords (posX - Z) to coords relative to the entity - Example: - posX = 50 - posY = 1000 - posZ = 60 - Entity's coords are: x=30, y=1000, z=60. - All three returned coords will then be in range of [-20,20] depending on rotation of the entity. - - - - - Offset values are relative to the entity. - x = left/right - y = forward/backward - z = up/down - - - - - Online version is defined here: update\update.rpf\common\data\version.txt - Example: - [ONLINE_VERSION_NUMBER] - 1.33 - _GET_ONLINE_VERSION() will return "1.33" - Belongs in NETWORK - - - - - Online version is defined here: update\update.rpf\common\data\version.txt - Example: - [ONLINE_VERSION_NUMBER] - 1.33 - _GET_ONLINE_VERSION() will return "1.33" - Belongs in NETWORK - - - - - Returns NULL unless UPDATE_ONSCREEN_KEYBOARD() returns 1 in the same tick. - - - - - Returns: - 5 - 10 - 15 - 20 - 25 - 30 - 35 - - - - - Returns the ped's alertness (0-3). - Values : - 0 : Neutral - 1 : Heard something (gun shot, hit, etc) - 2 : Knows (the origin of the event) - 3 : Fully alerted (is facing the event?) - If the Ped does not exist, returns -1. - - - - - Returns an ammo type hash, which is defined in AmmoInfo. - - - - - Returns an ammo type hash, which is defined in AmmoInfo. - - - - - from fm_mission_controller.c4 (variable names changed for clarity): - int groupID = PLAYER::GET_PLAYER_GROUP(PLAYER::PLAYER_ID()); - PED::GET_GROUP_SIZE(group, &unused, &groupSize); - if (groupSize >= 1) { - . . . . for (int memberNumber = 0; memberNumber < groupSize; memberNumber++) { - . . . . . . . . Ped ped1 = PED::GET_PED_AS_GROUP_MEMBER(groupID, memberNumber); - . . . . . . . . //and so on - - - - - Gets the position of the specified bone of the specified ped. - ped: The ped to get the position of a bone from. - boneId: The ID of the bone to get the position from. This is NOT the index. - offsetX: The X-component of the offset to add to the position relative to the bone's rotation. - offsetY: The Y-component of the offset to add to the position relative to the bone's rotation. - offsetZ: The Z-component of the offset to add to the position relative to the bone's rotation. - - - - - Bone ID enum: pastebin.com/3pz17QGd - - - - - Returns the hash of the weapon/model/object that killed the ped. - - - - - p2 is always 1 in the scripts. - if (GET_PED_CONFIG_FLAG(ped, 78, 1)) - = returns true if ped is aiming/shooting a gun - - - - - Ids - 1 - 2 - 3 - 4 - 5 - 6 - 7 - ------ - 8 - Accessories 1 - 9 - Accessories 2 - 10 - 11 - Auxiliary parts for torso - - - - - Gets the offset the specified ped has moved since the previous tick. - If worldSpace is false, the returned offset is relative to the ped. That is, if the ped has moved 1 meter right and 5 meters forward, it'll return 1,5,0. - If worldSpace is true, the returned offset is relative to the world. That is, if the ped has moved 1 meter on the X axis and 5 meters on the Y axis, it'll return 1,5,0. - - - - - A getter for [\_SET_PED_EYE_COLOR](#_0x50B56988B170AFDF). Returns -1 if fails to get. - - The target ped - Returns ped's eye colour, or -1 if fails to get. - - - - A getter for [\_SET_PED_FACE_FEATURE](#_0x71A5C1DBA060049E). Returns 0.0 if fails to get. - - The target ped - Face feature index - Returns ped's face feature value, or 0.0 if fails to get. - - - - hash collision??? - - - - - Returns the group id of which the specified ped is a member of. - - - - - A getter for [\_SET_PED_HAIR_COLOR](#_0x4CFFC65454C93A49). Returns -1 if fails to get. - - The target ped - Returns ped's primary hair colour. - - - - A getter for [\_SET_PED_HAIR_COLOR](#_0x4CFFC65454C93A49). Returns -1 if fails to get. - - The target ped - Returns ped's secondary hair colour. - - - - The pointer is to a padded struct that matches the arguments to SET_PED_HEAD_BLEND_DATA(...). There are 4 bytes of padding after each field. - (Edit) Console Hash: 0x44E1680C - pass this struct in the second parameter - typedef struct - { - int shapeFirst, shapeSecond, shapeThird; - int skinFirst, skinSecond, skinThird; - float shapeMix, skinMix, thirdMix; - } headBlendData; - - - - - A getter for [SET_PED_HEAD_OVERLAY](#_0x48F44967FA05CC1E) and [\_SET_PED_HEAD_OVERLAY_COLOR](#_0x497BF74A7B9CB952) natives. - - The target ped - Overlay index - Overlay value pointer - Colour type pointer - First colour pointer - Second colour pointer - Opacity pointer - Returns ped's head overlay data. - - - - Likely a char, if that overlay is not set, e.i. "None" option, returns 255; - - - - - Use [`SetPedIlluminatedClothingGlowIntensity`](#_0x4E90D746056E273D) to set the illuminated clothing glow intensity for a specific ped. - - The ped to get the glow intensity from. - A float between 0.0 and 1.0 representing the current illuminated clothing glow intensity. - - - - Use [`SetPedIlluminatedClothingGlowIntensity`](#_0x4E90D746056E273D) to set the illuminated clothing glow intensity for a specific ped. - - The ped to get the glow intensity from. - A float between 0.0 and 1.0 representing the current illuminated clothing glow intensity. - - - - -1 (driver) <= index < GET_VEHICLE_MAX_NUMBER_OF_PASSENGERS(vehicle) - - - - - Simply returns whatever is passed to it (Regardless of whether the handle is valid or not). - - - - - Returns a handle to the first entity within the a circle spawned inside the 2 points from a radius. It could return a ped or an entity, but the scripts expect a ped, but still check if it's a ped. - - - - - Pretty sure outBone is an int. - - - - - Pass ped. Pass address of Vector3. - The coord will be put into the Vector3. - The return will determine whether there was a coord found or not. - - - - - sizeAndPeds - is a pointer to an array. The array is filled with peds found nearby the ped supplied to the first argument. - ignore - ped type to ignore - Return value is the number of peds found and added to the array passed. - ----------------------------------- - To make this work in most menu bases at least in C++ do it like so, - Formatted Example: pastebin.com/D8an9wwp - ----------------------------------- - Example: gtaforums.com/topic/789788-function-args-to-pedget-ped-nearby-peds/?p=1067386687 - Here's the right way to do it (console and pc): - pastebin.com/SsFej963 - - - - - Returns size of array, passed into the second variable. - See below for usage information. - This function actually requires a struct, where the first value is the maximum number of elements to return. Here is a sample of how I was able to get it to work correctly, without yet knowing the struct format. - //Setup the array - const int numElements = 10; - const int arrSize = numElements * 2 + 2; - Any veh[arrSize]; - //0 index is the size of the array - veh[0] = numElements; - int count = PED::GET_PED_NEARBY_VEHICLES(PLAYER::PLAYER_PED_ID(), veh); - if (veh != NULL) - { - //Simple loop to go through results - for (int i = 0; i < count; i++) - { - int offsettedID = i * 2 + 2; - //Make sure it exists - if (veh[offsettedID] != NULL && ENTITY::DOES_ENTITY_EXIST(veh[offsettedID])) - { - //Do something - } - } - } - Here's the right way to do it (console and pc): - pastebin.com/SsFej963 - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - -1: no landing - 0: landing on both feet - 1: stumbling - 2: rolling - 3: ragdoll - - - - - Returns: - -1: Normal - 0: Wearing parachute on back - 1: Parachute opening - 2: Parachute open - 3: Falling to doom (e.g. after exiting parachute) - Normal means no parachute? - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - Returns the Entity (Ped, Vehicle, or ?Object?) that killed the 'ped' - Is best to check if the Ped is dead before asking for its killer. - - - - - Returns the Entity (Ped, Vehicle, or ?Object?) that killed the 'ped' - Is best to check if the Ped is dead before asking for its killer. - - - - - Returns whether the entity is in stealth mode - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - Ped Types: (ordered by return priority) - Michael = 0 - Franklin = 1 - Trevor = 2 - Army = 29 - Animal = 28 - SWAT = 27 - LSFD = 21 - Paramedic = 20 - Cop = 6 - Male = 4 - Female = 5 - Human = 26 - Note/Exception - hc_gunman : 4 // Mix male and female - hc_hacker : 4 // Mix male and female - mp_f_misty_01 : 4 // Female character - s_f_y_ranger_01 : 5 // Ranger - s_m_y_ranger_01 : 4 // Ranger - s_m_y_uscg_01 : 6 // US Coast Guard - - - - - Quick disassembly and test seems to indicate that this native gets the Ped currently using the specified door. - - - - - Quick disassembly and test seems to indicate that this native gets the Ped currently using the specified door. - - - - - Returns the progress percent to current waypoint. - - - - - gtaforums.com/topic/885580-ped-headshotmugshot-txd/ - - - - - returns pickup hash. - - - - - returns pickup hash. - - - - - Returns the group ID the player is member of. - - - - - Called 5 times in the scripts. All occurrences found in b617d, sorted alphabetically and identical lines removed: - AUDIO::GET_PLAYER_HEADSET_SOUND_ALTERNATE("INOUT", 0.0); - AUDIO::GET_PLAYER_HEADSET_SOUND_ALTERNATE("INOUT", 1.0); - - - - - Returns the same as PLAYER_ID and NETWORK_PLAYER_ID_TO_INT - - - - - Returns the Player's Invincible status. - This function will always return false if 0x733A643B5B0C53C1 is used to set the invincibility status. To always get the correct result, use this: - bool IsPlayerInvincible(Player player) - { - auto addr = getScriptHandleBaseAddress(GET_PLAYER_PED(player)); - if (addr) - { - DWORD flag = *(DWORD *)(addr + 0x188); - return ((flag & (1 << 8)) != 0) || ((flag & (1 << 9)) != 0); - } - return false; - } - ============================================================ - This has bothered me for too long, whoever may come across this, where did anyone ever come up with this made up hash? 0x733A643B5B0C53C1 I've looked all over old hash list, and this nativedb I can not find that PC hash anywhere. What native name is it now or was it? - - - - - Returns the players name - - - - - Tints: - None = -1, - Rainbow = 0, - Red = 1, - SeasideStripes = 2, - WidowMaker = 3, - Patriot = 4, - Blue = 5, - Black = 6, - Hornet = 7, - AirFocce = 8, - Desert = 9, - Shadow = 10, - HighAltitude = 11, - Airbone = 12, - Sunrise = 13, - - - - - Gets the ped for a specified player index. - - The player index, or -1 to get the local player ped. - The specified player's ped, or 0 if invalid. - - - - Does the same like PLAYER::GET_PLAYER_PED<br/> - - - - - Returns 255 (radio off index) if the function fails. - - - - - Returns active radio station name - - - - - Tints: - None = -1, - Rainbow = 0, - Red = 1, - SeasideStripes = 2, - WidowMaker = 3, - Patriot = 4, - Blue = 5, - Black = 6, - Hornet = 7, - AirFocce = 8, - Desert = 9, - Shadow = 10, - HighAltitude = 11, - Airbone = 12, - Sunrise = 13, - - - - - Returns RGB color of the player - - - - - Assigns the handle of locked-on melee target to *entity that you pass it. - Returns false if no entity found. - - - - - Gets the player's team. - Does nothing in singleplayer. - - - - - Alternative: GET_VEHICLE_PED_IS_IN(PLAYER_PED_ID(), 1); - - - - - p1 is some kind of tolerance - - - - - Gets system time as year, month, day, hour, minute and second. - Example usage: - int year; - int month; - int day; - int hour; - int minute; - int second; - TIME::GET_POSIX_TIME(&year, &month, &day, &hour, &minute, &second); - - - - - Returns current weather name hash - - - - - Returns current weather name hash - - - - - gtaforums.com/topic/799843-stats-profile-settings/ - - - - - only documented to be continued... - Dr. Underscore (1/6/18): - Exactly like _GET_PROJECTILE_NEAR_PED_COORDS (_0xDFB4138EEFED7B81), but it gives us the Entity that was found aswell. - p6 is (most likely) ownedByPlayer. (see IS_PROJECTILE_IN_AREA for info) - - - - - only documented to be continued... - Dr. Underscore (1/6/18): - Exactly like _GET_PROJECTILE_NEAR_PED_COORDS (_0xDFB4138EEFED7B81), but it gives us the Entity that was found aswell. - p6 is (most likely) ownedByPlayer. (see IS_PROJECTILE_IN_AREA for info) - - - - - From a quick disassembly I can say that this has something to do with weapons. - Added params according to what I could see in IDA. - Dr. Underscore (1/6/18): - Returns if any projectiles of projHash type are in a radius around this ped. If true, projPos is filled with the position of that entity. - This native was only ever used with projectiles, but may not be limited to. - p4 isn't an Entity*, it's actually a Vector3*, which outputs the position of the found entity. - p5 is (most likely) ownedByPlayer. (see IS_PROJECTILE_IN_AREA for info) - - - - - From a quick disassembly I can say that this has something to do with weapons. - Added params according to what I could see in IDA. - Dr. Underscore (1/6/18): - Returns if any projectiles of projHash type are in a radius around this ped. If true, projPos is filled with the position of that entity. - This native was only ever used with projectiles, but may not be limited to. - p4 isn't an Entity*, it's actually a Vector3*, which outputs the position of the found entity. - p5 is (most likely) ownedByPlayer. (see IS_PROJECTILE_IN_AREA for info) - - - - - outfit = a structure passing though it - see GET_SHOP_PED_QUERY_OUTFIT - slot - outfit slot - item - hold 3 ints in a struct, you can use Vector3 structure - GET_SHOP_PED_??? - - - - - Returns String with radio station name. - - - - - Another extremely useful native. - You can use it simply like: - if (GAMEPLAY::GET_RANDOM_INT_IN_RANGE(0, 2)) - - - - - Gets a random ped in the x/y/zRadius near the x/y/z coordinates passed. - Ped Types: - Any = -1 - Player = 1 - Male = 4 - Female = 5 - Cop = 6 - Human = 26 - SWAT = 27 - Animal = 28 - Army = 29 - - - - - Gets a random vehicle in a sphere at the specified position, of the specified radius. - x: The X-component of the position of the sphere. - y: The Y-component of the position of the sphere. - z: The Z-component of the position of the sphere. - radius: The radius of the sphere. Max is 9999.9004. - modelHash: The vehicle model to limit the selection to. Pass 0 for any model. - flags: The bitwise flags that modifies the behaviour of this function. - - - - - Not present in the retail version! It's just a nullsub. - p0 always true (except in one case) - p1 a random vehicle hash loaded in memory - p2 0 if success, -1 if failed - - - - - Returns all commands that are registered in the command system. - The data returned adheres to the following layout: - ``` - [ - { - "name": "cmdlist" - }, - { - "name": "command1" - } - ] - ``` - - An object containing registered commands. - - - - Gets the relationship between two groups. This should be called twice (once for each group). - Relationship types: - 0 = Companion - 1 = Respect - 2 = Like - 3 = Neutral - 4 = Dislike - 5 = Hate - 255 = Pedestrians - Example: - PED::GET_RELATIONSHIP_BETWEEN_GROUPS(l_1017, 0xA49E591C); - PED::GET_RELATIONSHIP_BETWEEN_GROUPS(0xA49E591C, l_1017); - - - - - Gets the relationship between two peds. This should be called twice (once for each ped). - Relationship types: - 0 = Companion - 1 = Respect - 2 = Like - 3 = Neutral - 4 = Dislike - 5 = Hate - 255 = Pedestrians - (Credits: Inco) - Example: - PED::GET_RELATIONSHIP_BETWEEN_PEDS(2, l_1017, 0xA49E591C); - PED::GET_RELATIONSHIP_BETWEEN_PEDS(2, 0xA49E591C, l_1017); - - - - - Gets the metadata value at a specified key/index from a resource's manifest. - See also: [Resource manifest](https://docs.fivem.net/resources/manifest/) - - The resource name. - The key in the resource manifest. - The value index, in a range from [0..GET_NUM_RESOURCE_METDATA-1]. - - - - Returns the current state of the specified resource. - - The name of the resource. - The resource state. One of `"missing", "started", "starting", "stopped", "stopping", "uninitialized" or "unknown"`. - - - - Gets the room hash key from the room that the specified entity is in. Each room in every interior has a unique key. Returns 0 if the entity is outside. - - - - - Returns the room hash key from the current gameplay cam. - - - - - Returns the room hash key from the current gameplay cam. - - - - - Return the root content id of a job. - - - - - Return the root content id of a job. - - - - - Get a rope's length. Can be modified with ROPE_FORCE_LENGTH - - - - - Gets the height of the specified runtime texture. - - A handle to the runtime texture. - The height in pixels. - - - - Gets the row pitch of the specified runtime texture, for use when creating data for `SET_RUNTIME_TEXTURE_ARGB_DATA`. - - A handle to the runtime texture. - The row pitch in bytes. - - - - Gets the width of the specified runtime texture. - - A handle to the runtime texture. - The width in pixels. - - - - When onGround == true outPosition is a position located on the nearest pavement. - When a safe coord could not be found the result of a function is false and outPosition == Vector3.Zero. - In the scripts these flags are used: 0, 14, 12, 16, 20, 21, 28. 0 is most commonly used, then 16. - 16 works for me, 0 crashed the script. - - - - - Gets the scale of safe zone. if the safe zone size scale is max, it will return 1.0. - - - - - Used to get a return value from a scaleform function. - Returns an int in the same way `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_STRING` returns a string. - Old description: - ``` - Needs a bit more research, but it seems to return an int. - Testing with the scaleform "HACKING_PC" it seems to return an int depending on the clicked App/Program ID - "agency_heist3b.ysc", line 71836: - if (CONTROLS::IS_CONTROL_JUST_PRESSED(2, 201) || CONTROLS::IS_CONTROL_JUST_PRESSED(2, 237)) { - GRAPHICS::BEGIN_SCALEFORM_MOVIE_METHOD(l_46, "SET_INPUT_EVENT_SELECT"); - l_45 = GRAPHICS::_END_SCALEFORM_MOVIE_METHOD_RETURN(); - } - if (GRAPHICS::IS_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_READY(l_45)) { - v_13 = GRAPHICS::GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT(l_45); - if (v_13 == 6) { - sub_73269(a_0); - } - } - ``` - - The return value of this native: `EndScaleformMovieMethodReturn` - Returns an int in the same way `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_STRING` returns a string. - - - - Used to get a return value from a scaleform function. - Returns an int in the same way `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_STRING` returns a string. - Old description: - ``` - Needs a bit more research, but it seems to return an int. - Testing with the scaleform "HACKING_PC" it seems to return an int depending on the clicked App/Program ID - "agency_heist3b.ysc", line 71836: - if (CONTROLS::IS_CONTROL_JUST_PRESSED(2, 201) || CONTROLS::IS_CONTROL_JUST_PRESSED(2, 237)) { - GRAPHICS::BEGIN_SCALEFORM_MOVIE_METHOD(l_46, "SET_INPUT_EVENT_SELECT"); - l_45 = GRAPHICS::_END_SCALEFORM_MOVIE_METHOD_RETURN(); - } - if (GRAPHICS::IS_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_READY(l_45)) { - v_13 = GRAPHICS::GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT(l_45); - if (v_13 == 6) { - sub_73269(a_0); - } - } - ``` - - The return value of this native: `EndScaleformMovieMethodReturn` - Returns an int in the same way `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_STRING` returns a string. - - - - Used to get a return value from a scaleform function. - Returns an int in the same way `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_STRING` returns a string. - Old description: - ``` - Needs a bit more research, but it seems to return an int. - Testing with the scaleform "HACKING_PC" it seems to return an int depending on the clicked App/Program ID - "agency_heist3b.ysc", line 71836: - if (CONTROLS::IS_CONTROL_JUST_PRESSED(2, 201) || CONTROLS::IS_CONTROL_JUST_PRESSED(2, 237)) { - GRAPHICS::BEGIN_SCALEFORM_MOVIE_METHOD(l_46, "SET_INPUT_EVENT_SELECT"); - l_45 = GRAPHICS::_END_SCALEFORM_MOVIE_METHOD_RETURN(); - } - if (GRAPHICS::IS_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_READY(l_45)) { - v_13 = GRAPHICS::GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT(l_45); - if (v_13 == 6) { - sub_73269(a_0); - } - } - ``` - - The return value of this native: `EndScaleformMovieMethodReturn` - Returns an int in the same way `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_STRING` returns a string. - - - - Used to get a return value from a scaleform function. - Returns a string in the same way GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT returns an int. - - The return value of this native: `EndScaleformMovieMethodReturn` - Returns a string in the same way `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT` returns an int. - - - - Used to get a return value from a scaleform function. - Returns a string in the same way GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT returns an int. - - The return value of this native: `EndScaleformMovieMethodReturn` - Returns a string in the same way `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT` returns an int. - - - - Used to get a return value from a scaleform function. - Returns a string in the same way GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT returns an int. - - The return value of this native: `EndScaleformMovieMethodReturn` - Returns a string in the same way `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT` returns an int. - - - - Convert a world coordinate into its relative screen coordinate. (WorldToScreen) - Returns a boolean; whether or not the operation was successful. It will return false if the coordinates given are not visible to the rendering camera. - For .NET users... - VB: - Public Shared Function World3DToScreen2d(pos as vector3) As Vector2 - Dim x2dp, y2dp As New Native.OutputArgument - Native.Function.Call(Of Boolean)(Native.Hash.GET_SCREEN_COORD_FROM_WORLD_COORD , pos.x, pos.y, pos.z, x2dp, y2dp) - Return New Vector2(x2dp.GetResult(Of Single), y2dp.GetResult(Of Single)) - End Function - C#: - Vector2 World3DToScreen2d(Vector3 pos) - { - var x2dp = new OutputArgument(); - var y2dp = new OutputArgument(); - Function.Call<bool>(Hash.GET_SCREEN_COORD_FROM_WORLD_COORD , pos.X, pos.Y, pos.Z, x2dp, y2dp); - return new Vector2(x2dp.GetResult<float>(), y2dp.GetResult<float>()); - } - //USE VERY SMALL VALUES FOR THE SCALE OF RECTS/TEXT because it is dramatically larger on screen than in 3D, e.g '0.05' small. - Used to be called _WORLD3D_TO_SCREEN2D - I thought we lost you from the scene forever. It does seem however that calling SET_DRAW_ORIGIN then your natives, then ending it. Seems to work better for certain things such as keeping boxes around people for a predator missile e.g. - - - - - Convert a world coordinate into its relative screen coordinate. (WorldToScreen) - Returns a boolean; whether or not the operation was successful. It will return false if the coordinates given are not visible to the rendering camera. - For .NET users... - VB: - Public Shared Function World3DToScreen2d(pos as vector3) As Vector2 - Dim x2dp, y2dp As New Native.OutputArgument - Native.Function.Call(Of Boolean)(Native.Hash.GET_SCREEN_COORD_FROM_WORLD_COORD , pos.x, pos.y, pos.z, x2dp, y2dp) - Return New Vector2(x2dp.GetResult(Of Single), y2dp.GetResult(Of Single)) - End Function - C#: - Vector2 World3DToScreen2d(Vector3 pos) - { - var x2dp = new OutputArgument(); - var y2dp = new OutputArgument(); - Function.Call<bool>(Hash.GET_SCREEN_COORD_FROM_WORLD_COORD , pos.X, pos.Y, pos.Z, x2dp, y2dp); - return new Vector2(x2dp.GetResult<float>(), y2dp.GetResult<float>()); - } - //USE VERY SMALL VALUES FOR THE SCALE OF RECTS/TEXT because it is dramatically larger on screen than in 3D, e.g '0.05' small. - Used to be called _WORLD3D_TO_SCREEN2D - I thought we lost you from the scene forever. It does seem however that calling SET_DRAW_ORIGIN then your natives, then ending it. Seems to work better for certain things such as keeping boxes around people for a predator missile e.g. - - - - - Returns whether the specified screen effect is active. - See the effects list in _START_SCREEN_EFFECT - Example and list of screen FX: www.pastebin.com/dafBAjs0 - - - - - int screenresx,screenresy; - GET_SCREEN_RESOLUTION(&screenresx,&screenresy); - Hardcoded to always return 1280 x 720 - - - - - Calculates the effective X/Y fractions when applying the values set by `SET_SCRIPT_GFX_ALIGN` and - `SET_SCRIPT_GFX_ALIGN_PARAMS`. - - The input X coordinate. - The input Y coordinate. - A pointer to the calculated X value. - A pointer to the calculated Y value. - - - - Calculates the effective X/Y fractions when applying the values set by `SET_SCRIPT_GFX_ALIGN` and - `SET_SCRIPT_GFX_ALIGN_PARAMS`. - - The input X coordinate. - The input Y coordinate. - A pointer to the calculated X value. - A pointer to the calculated Y value. - - - - Gets the status of a script-assigned task. The hash does not seem to match the actual native name, but is assigned hardcoded from the executable during task creation. - Statuses are specific to tasks, in addition '7' means the specified task is not assigned to the ped. - A few hashes found in the executable (although not a complete list) can be found at pastebin.com/R9iK6M9W as it was too long for this wiki. - - - - - Returns the hash of the weapon. - var num7 = WEAPON::GET_SELECTED_PED_WEAPON(num4); - sub_27D3(num7); - switch (num7) - { - case 0x24B17070: - Also see WEAPON::GET_CURRENT_PED_WEAPON. Difference? - ------------------------------------------------------------------------- - The difference is that GET_SELECTED_PED_WEAPON simply returns the ped's current weapon hash but GET_CURRENT_PED_WEAPON also checks the weapon object and returns true if the hash of the weapon object equals the weapon hash - - - - - returned values: - 0 to 7 = task that's currently in progress, 0 meaning the first one. - - - - - Parameters: - rayHandle - Ray Handle from a casted ray, as returned by CAST_RAY_POINT_TO_POINT - hit - Where to store whether or not it hit anything. False is when the ray reached its destination. - endCoords - Where to store the world-coords of where the ray was stopped (by hitting its desired max range or by colliding with an entity/the map) - surfaceNormal - Where to store the surface-normal coords (NOT relative to the game world) of where the entity was hit by the ray - entityHit - Where to store the handle of the entity hit by the ray - Returns: - Result? Some type of enum. - NOTE: To get the offset-coords of where the ray hit relative to the entity that it hit (which is NOT the same as surfaceNormal), you can use these two natives: - Vector3 offset = ENTITY::GET_OFFSET_FROM_ENTITY_GIVEN_WORLD_COORDS(entityHit, endCoords.x, endCoords.y, endCoords.z); - Vector3 entitySpotCoords = ENTITY::GET_OFFSET_FROM_ENTITY_IN_WORLD_COORDS(entityHit, offset.x, offset.y, offset.z); - Use ENTITY::GET_ENTITY_TYPE(entityHit) to quickly distinguish what type of entity you hit (ped/vehicle/object - 1/2/3) - - - - - Parameters: - rayHandle - Ray Handle from a casted ray, as returned by CAST_RAY_POINT_TO_POINT - hit - Where to store whether or not it hit anything. False is when the ray reached its destination. - endCoords - Where to store the world-coords of where the ray was stopped (by hitting its desired max range or by colliding with an entity/the map) - surfaceNormal - Where to store the surface-normal coords (NOT relative to the game world) of where the entity was hit by the ray - entityHit - Where to store the handle of the entity hit by the ray - Returns: - Result? Some type of enum. - NOTE: To get the offset-coords of where the ray hit relative to the entity that it hit (which is NOT the same as surfaceNormal), you can use these two natives: - Vector3 offset = ENTITY::GET_OFFSET_FROM_ENTITY_GIVEN_WORLD_COORDS(entityHit, endCoords.x, endCoords.y, endCoords.z); - Vector3 entitySpotCoords = ENTITY::GET_OFFSET_FROM_ENTITY_IN_WORLD_COORDS(entityHit, offset.x, offset.y, offset.z); - Use ENTITY::GET_ENTITY_TYPE(entityHit) to quickly distinguish what type of entity you hit (ped/vehicle/object - 1/2/3) - - - - - behaves exactly the same way as GET_SHAPE_TEST_RESULT except it has one extra parameter (_materialHash). - Quick disassembly seems to indicate that the unknown is a hash. EDIT: Seems to be the hash of the hit material or surface type. - found a materialFX.dat list of them but not sure if it has to do with this native yet. - materials (full list): pastebin.com/gyHjsYBK - - - - - behaves exactly the same way as GET_SHAPE_TEST_RESULT except it has one extra parameter (_materialHash). - Quick disassembly seems to indicate that the unknown is a hash. EDIT: Seems to be the hash of the hit material or surface type. - found a materialFX.dat list of them but not sure if it has to do with this native yet. - materials (full list): pastebin.com/gyHjsYBK - - - - - struct Outfit_s - { - int mask, torso, pants, parachute, shoes, misc1, tops1, armour, crew, tops2, hat, glasses, earpiece; - int maskTexture, torsoTexture, pantsTexture, parachuteTexture, shoesTexture, misc1Texture, tops1Texture, - armourTexture, crewTexture, tops2Texture, hatTexture, glassesTexture, earpieceTexture; - }; - - - - - locked is 0 if no door is found - locked is 0 if door is unlocked - locked is 1 if door is found and unlocked. - ------------- - the locked bool is either 0(unlocked)(false) or 1(locked)(true) - - - - - Determines the name of the street which is the closest to the given coordinates. - x,y,z - the coordinates of the street - streetName - returns a hash to the name of the street the coords are on - crossingRoad - if the coordinates are on an intersection, a hash to the name of the crossing road - Note: the names are returned as hashes, the strings can be returned using the function UI::GET_STREET_NAME_FROM_HASH_KEY. - - - - - This functions converts the hash of a street name into a readable string. - For how to get the hashes, see PATHFIND::GET_STREET_NAME_AT_COORD. - - - - - p0 = VEHICLE_NODE_ID - Returns false for nodes that aren't used for GPS routes. - Example: - Nodes in Fort Zancudo and LSIA are false - - - - - p0 = VEHICLE_NODE_ID - Returns false for nodes that aren't used for GPS routes. - Example: - Nodes in Fort Zancudo and LSIA are false - - - - - Character types: - ``` - 0 = Michael, - 1 = Franklin, - 2 = Trevor, - 3 = MPMale, - 4 = MPFemale - ``` - ```csharp - enum TattooZoneData - { - ZONE_TORSO = 0, - ZONE_HEAD = 1, - ZONE_LEFT_ARM = 2, - ZONE_RIGHT_ARM = 3, - ZONE_LEFT_LEG = 4, - ZONE_RIGHT_LEG = 5, - ZONE_UNKNOWN = 6, - ZONE_NONE = 7, - }; - struct outComponent - { - // these vars are suffixed with 4 bytes of padding each. - uint unk; - int unk2; - uint tattooCollectionHash; - uint tattooNameHash; - int unk3; - TattooZoneData zoneId; - uint unk4; - uint unk5; - // maybe more, not sure exactly, decompiled scripts are very vague around this part. - } - ``` - - Character types 0 = Michael, 1 = Franklin, 2 = Trevor, 3 = MPMale, 4 = MPFemale. - Tattoo index, value between 0 and GetNumDecorations(characterType). - The referenced struct. - A bool indicating that the tattoo data could be fetched(?) - - - - Character types: - ``` - 0 = Michael, - 1 = Franklin, - 2 = Trevor, - 3 = MPMale, - 4 = MPFemale - ``` - ```csharp - enum TattooZoneData - { - ZONE_TORSO = 0, - ZONE_HEAD = 1, - ZONE_LEFT_ARM = 2, - ZONE_RIGHT_ARM = 3, - ZONE_LEFT_LEG = 4, - ZONE_RIGHT_LEG = 5, - ZONE_UNKNOWN = 6, - ZONE_NONE = 7, - }; - struct outComponent - { - // these vars are suffixed with 4 bytes of padding each. - uint unk; - int unk2; - uint tattooCollectionHash; - uint tattooNameHash; - int unk3; - TattooZoneData zoneId; - uint unk4; - uint unk5; - // maybe more, not sure exactly, decompiled scripts are very vague around this part. - } - ``` - - Character types 0 = Michael, 1 = Franklin, 2 = Trevor, 3 = MPMale, 4 = MPFemale. - Tattoo index, value between 0 and GetNumDecorations(characterType). - The referenced struct. - A bool indicating that the tattoo data could be fetched(?) - - - - Returns the zoneID for the overlay if it is a member of collection. - enum TattooZoneData - { - ZONE_TORSO = 0, - ZONE_HEAD = 1, - ZONE_LEFT_ARM = 2, - ZONE_RIGHT_ARM = 3, - ZONE_LEFT_LEG = 4, - ZONE_RIGHT_LEG = 5, - ZONE_UNKNOWN = 6, - ZONE_NONE = 7, - }; - - - - - This get's the height of the FONT and not the total text. You need to get the number of lines your text uses, and get the height of a newline (I'm using a smaller value) to get the total text height. - - - - - This get's the height of the FONT and not the total text. You need to get the number of lines your text uses, and get the height of a newline (I'm using a smaller value) to get the total text height. - - - - - Determines how many lines the text string will use when drawn on screen. - Must use _BEGIN_TEXT_COMMAND_LINE_COUNT for setting up - - - - - Determines how many lines the text string will use when drawn on screen. - Must use _BEGIN_TEXT_COMMAND_LINE_COUNT for setting up - - - - - Determines how many lines the text string will use when drawn on screen. - Must use _BEGIN_TEXT_COMMAND_LINE_COUNT for setting up - - - - - Returns a substring of a specified length starting at a specified position. - Example: - // Get "STRING" text from "MY_STRING" - subStr = UI::_GET_TEXT_SUBSTRING("MY_STRING", 3, 6); - - - - - Returns a substring of a specified length starting at a specified position. The result is guaranteed not to exceed the specified max length. - NOTE: The 'maxLength' parameter might actually be the size of the buffer that is returned. More research is needed. -CL69 - Example: - // Condensed example of how Rockstar uses this function - strLen = UI::GET_LENGTH_OF_LITERAL_STRING(GAMEPLAY::GET_ONSCREEN_KEYBOARD_RESULT()); - subStr = UI::_GET_TEXT_SUBSTRING_SAFE(GAMEPLAY::GET_ONSCREEN_KEYBOARD_RESULT(), 0, strLen, 63); - -- - "fm_race_creator.ysc", line 85115: - // parameters modified for clarity - BOOL sub_8e5aa(char *text, int length) { - for (i = 0; i <= (length - 2); i += 1) { - if (!GAMEPLAY::ARE_STRINGS_EQUAL(UI::_GET_TEXT_SUBSTRING_SAFE(text, i, i + 1, 1), " ")) { - return FALSE; - } - } - return TRUE; - } - - - - - Returns a substring that is between two specified positions. The length of the string will be calculated using (endPosition - startPosition). - Example: - // Get "STRING" text from "MY_STRING" - subStr = UI::_GET_TEXT_SUBSTRING_SLICE("MY_STRING", 3, 9); - // Overflows are possibly replaced with underscores (needs verification) - subStr = UI::_GET_TEXT_SUBSTRING_SLICE("MY_STRING", 3, 10); // "STRING_"? - - - - - Returns the texture resolution of the passed texture dict+name. - Note: Most texture resolutions are doubled compared to the console version of the game. - - - - - Previously named, '_FORMAT_TIME' for people who can't find it's uses in decompiled scripts. - - - - - Previously named, '_FORMAT_TIME' for people who can't find it's uses in decompiled scripts. - - - - - Subtracts the second argument from the first. - - - - - Adds the first argument to the second. - - - - - Returns the time since the character was arrested in (ms) milliseconds. - example - var time = Function.call<int>(Hash.GET_TIME_SINCE_LAST_ARREST(); - UI.DrawSubtitle(time.ToString()); - if player has not been arrested, the int returned will be -1. - - - - - Returns the time since the character died in (ms) milliseconds. - example - var time = Function.call<int>(Hash.GET_TIME_SINCE_LAST_DEATH(); - UI.DrawSubtitle(time.ToString()); - if player has not died, the int returned will be -1. - - - - - Only use for this in the PC scripts is: - if (GRAPHICS::GET_TIMECYCLE_MODIFIER_INDEX() != -1) - For a full list, see here: pastebin.com/cnk7FTF2 - can someone update this pastebin??? - - - - - Corrected p1. it's basically the 'carriage/trailer number'. So if the train has 3 trailers you'd call the native once with a var or 3 times with 1, 2, 3. - - - - - Return the content modifier id (the tunables context if you want) of a specific content. - It takes the content hash (which is the mission id hash), and return the content modifier id, used as the tunables context. - The mission id can be found on the Social club, for example, 'socialclub.rockstargames.com/games/gtav/jobs/job/A8M6Bz8MLEC5xngvDCzGwA' - 'A8M6Bz8MLEC5xngvDCzGwA' is the mission id, so the game hash this and use it as the parameter for this native. - - - - - Return the content modifier id (the tunables context if you want) of a specific content. - It takes the content hash (which is the mission id hash), and return the content modifier id, used as the tunables context. - The mission id can be found on the Social club, for example, 'socialclub.rockstargames.com/games/gtav/jobs/job/A8M6Bz8MLEC5xngvDCzGwA' - 'A8M6Bz8MLEC5xngvDCzGwA' is the mission id, so the game hash this and use it as the parameter for this native. - - - - - Returns the user's defined langauge as ID - english: 12 - french = 7 - german = 22 - italian = 21 - japanese = 9 - korean = 17 - portuguese = 16 - spanish = 10 - russian = 25 - - - - - console hash: 0xC589CD7D = GET_UTC_TIME - gets current UTC time - - - - - console hash: 0xC589CD7D = GET_UTC_TIME - gets current UTC time - - - - - static - max acceleration - - - - - Returns attached vehicle (Vehicle in parameter must be cargobob) - - - - - Get the vehicle attached to the object/entity? May also just convert it to a vehicle, but I'm not sure. - - - - - Get the vehicle attached to the object/entity? May also just convert it to a vehicle, but I'm not sure. - - - - - Seems related to vehicle health, like the one in IV. - Max 1000, min 0. - Vehicle does not necessarily explode or become undrivable at 0. - - - - - 0 min 100 max - starts at 100 - Seams to have health zones - Front of vehicle when damaged goes from 100-50 and stops at 50. - Rear can be damaged from 100-0 - Only tested with two cars. - any idea how this differs from the first one? - -- - May return the vehicle health on a scale of 0.0 - 100.0 (needs to be confirmed) - example: - v_F = ENTITY::GET_ENTITY_MODEL(v_3); - if (((v_F == ${tanker}) || (v_F == ${armytanker})) || (v_F == ${tanker2})) { - if (VEHICLE::_GET_VEHICLE_BODY_HEALTH_2(v_3) <= 1.0) { - NETWORK::NETWORK_EXPLODE_VEHICLE(v_3, 1, 1, -1); - } - } - - - - - iVar3 = get_vehicle_cause_of_destruction(uLocal_248[iVar2]); - if (iVar3 == joaat("weapon_stickybomb")) - { - func_171(726); - iLocal_260 = 1; - } - - - - - Returns an int - Vehicle Classes: - 0: Compacts - 1: Sedans - 2: SUVs - 3: Coupes - 4: Muscle - 5: Sports Classics - 6: Sports - 7: Super - 8: Motorcycles - 9: Off-road - 10: Industrial - 11: Utility - 12: Vans - 13: Cycles - 14: Boats - 15: Helicopters - 16: Planes - 17: Service - 18: Emergency - 19: Military - 20: Commercial - 21: Trains - char buffer[128]; - std::sprintf(buffer, "VEH_CLASS_%i", VEHICLE::GET_VEHICLE_CLASS(vehicle)); - char* className = UI::_GET_LABEL_TEXT(buffer); - - - - - For a full enum, see here : pastebin.com/i2GGAjY0 - char buffer[128]; - std::sprintf(buffer, "VEH_CLASS_%i", VEHICLE::GET_VEHICLE_CLASS_FROM_NAME (hash)); - char* className = UI::_GET_LABEL_TEXT(buffer); - - - - - GET_VEHICLE_CLASS_MAX_* - - - - - GET_VEHICLE_CLASS_MAX_* - - - - - What's this for? Primary and Secondary RGB have their own natives and this one doesn't seem specific. - - - - - Returns hash of default vehicle horn - Hash is stored in audVehicleAudioEntity - - - - - The only example I can find of this function in the scripts, is this: - struct _s = VEHICLE::GET_VEHICLE_DEFORMATION_AT_POS(rPtr((A_0) + 4), 1.21f, 6.15f, 0.3f); - ----------------------------------------------------------------------------------------------------------------------------------------- - PC scripts: - v_5 -- [[{3}]] = VEHICLE::GET_VEHICLE_DEFORMATION_AT_POS(a_0._f1, 1.21, 6.15, 0.3); - - - - - Dirt level 0..15 - - - - - example in vb: - Public Shared Function Get_Vehicle_Door_Angle(Vehicle As Vehicle, Door As VehicleDoor) As Single - Return Native.Function.Call(Of Single)(Hash.GET_VEHICLE_DOOR_ANGLE_RATIO, Vehicle.Handle, Door) - End Function - I'm Not MentaL - - - - - 2 seems to disable getting vehicle in modshop - - - - - Returns 1000.0 if the function is unable to get the address of the specified vehicle or if it's not a vehicle. - Minimum: -4000 - Maximum: 1000 - -4000: Engine is destroyed - 0 and below: Engine catches fire and health rapidly declines - 300: Engine is smoking and losing functionality - 1000: Engine is perfect - - - - - formerly known as _GET_VEHICLE_PAINT_FADE - The result is a value from 0-1, where 0 is fresh paint. - ----------------------------------------------------------------------- - The actual value isn't stored as a float but as an unsigned char (BYTE). - - - - - formerly known as _GET_VEHICLE_PAINT_FADE - The result is a value from 0-1, where 0 is fresh paint. - ----------------------------------------------------------------------- - The actual value isn't stored as a float but as an unsigned char (BYTE). - - - - - Returns the effective handling data of a vehicle as a floating-point value. - Example: `local fSteeringLock = GetVehicleHandlingFloat(vehicle, 'CHandlingData', 'fSteeringLock')` - - The vehicle to obtain data for. - The handling class to get. Only "CHandlingData" is supported at this time. - The field name to get. These match the keys in `handling.meta`. - A floating-point value. - - - - Returns the effective handling data of a vehicle as an integer value. - Example: `local modelFlags = GetVehicleHandlingInt(vehicle, 'CHandlingData', 'strModelFlags')` - - The vehicle to obtain data for. - The handling class to get. Only "CHandlingData" is supported at this time. - The field name to get. These match the keys in `handling.meta`. - An integer. - - - - Returns the effective handling data of a vehicle as a vector value. - Example: `local inertiaMultiplier = GetVehicleHandlingVector(vehicle, 'CHandlingData', 'vecInertiaMultiplier')` - - The vehicle to obtain data for. - The handling class to get. Only "CHandlingData" is supported at this time. - The field name to get. These match the keys in `handling.meta`. - An integer. - - - - Returns the headlight color index from the vehicle. Value between 0, 12. - Use [\_SET_VEHICLE_HEADLIGHTS_COLOUR](#_0xE41033B25D003A07) to set the headlights color for the vehicle. - Must enable xenon headlights before it'll take affect. - List of colors and ids: - ``` - enum headlightColors { - Default = -1, - White = 0, - Blue = 1, - Electric_Blue = 2, - Mint_Green = 3, - Lime_Green = 4, - Yellow = 5, - Golden_Shower = 6, - Orange = 7, - Red = 8, - Pony_Pink = 9, - Hot_Pink = 10, - Purple = 11, - Blacklight = 12 - } - ``` - - The vehicle to get the headlight color from. - Returns an int, value between 0-12 or 255 if no color is set. - - - - Returns the headlight color index from the vehicle. Value between 0, 12. - Use [\_SET_VEHICLE_HEADLIGHTS_COLOUR](#_0xE41033B25D003A07) to set the headlights color for the vehicle. - Must enable xenon headlights before it'll take affect. - List of colors and ids: - ``` - enum headlightColors { - Default = -1, - White = 0, - Blue = 1, - Electric_Blue = 2, - Mint_Green = 3, - Lime_Green = 4, - Yellow = 5, - Golden_Shower = 6, - Orange = 7, - Red = 8, - Pony_Pink = 9, - Hot_Pink = 10, - Purple = 11, - Blacklight = 12 - } - ``` - - The vehicle to get the headlight color from. - Returns an int, value between 0-12 or 255 if no color is set. - - - - Seems to get the hash of the vehicle's currently installed horn? - - - - - Seems to get the hash of the vehicle's currently installed horn? - - - - - A float indicating the percentage of the hover mode. 1.0 = in VTOL mode, 0.0 = in normal flying mode. - - The vehicle to check the hover mode on. - A float indicating the percentage of the hover mode. 1.0 = in VTOL mode, 0.0 = in normal flying mode. - - - - A float indicating the percentage of the hover mode. 1.0 = in VTOL mode, 0.0 = in normal flying mode. - - The vehicle to check the hover mode on. - A float indicating the percentage of the hover mode. 1.0 = in VTOL mode, 0.0 = in normal flying mode. - - - - A float indicating the percentage of the hover mode. 1.0 = in VTOL mode, 0.0 = in normal flying mode. - - The vehicle to check the hover mode on. - A float indicating the percentage of the hover mode. 1.0 = in VTOL mode, 0.0 = in normal flying mode. - - - - Simply returns whatever is passed to it (Regardless of whether the handle is valid or not). - - - - - Gets the vehicle indicator light state. 0 = off, 1 = left, 2 = right, 3 = both - - An integer. - - - - -1 = no livery - - - - - Returns -1 if the vehicle has no livery - - - - - In b944, there are 50 (0 - 49) mod types. - Returns -1 if the vehicle mod is stock - - - - - p3 seems to be the pearlescent highlight color. - Seems redondant with void GET_VEHICLE_EXTRA_COLOURS(Vehicle vehicle, int *pearlescentColor, int *wheelColor) - - - - - returns a string which is the codename of the vehicle's currently selected primary color - p1 is always 0 - - - - - returns a string which is the codename of the vehicle's currently selected primary color - p1 is always 0 - - - - - returns a string which is the codename of the vehicle's currently selected secondary color - - - - - returns a string which is the codename of the vehicle's currently selected secondary color - - - - - Can be used for IS_DLC_VEHICLE_MOD and _0xC098810437312FFF - - - - - Can be used for IS_DLC_VEHICLE_MOD and _0xC098810437312FFF - - - - - Returns true if the wheels are custom wheels - - - - - Returns the acceleration of the specified model. - For a full list, see here: pastebin.com/GaN6vT4R - - - - - GET_VEHICLE_MODEL_* - 9.8 * thrust if air vehicle, else 0.38 + drive force? - For a full list, see here: pastebin.com/bJQeDqNd - - - - - GET_VEHICLE_MODEL_* - 9.8 * thrust if air vehicle, else 0.38 + drive force? - For a full list, see here: pastebin.com/bJQeDqNd - - - - - GET_VEHICLE_MODEL_MAX_* - max braking if air vehicle, else max braking + 0.1 - ------------------- - For a full list, see here: pastebin.com/Cb9L1Cn0 - - - - - GET_VEHICLE_MODEL_MAX_* - max braking if air vehicle, else max braking + 0.1 - ------------------- - For a full list, see here: pastebin.com/Cb9L1Cn0 - - - - - Returns max braking of the specified vehicle model. - For a full list, see here: pastebin.com/3N8DVbpG - - - - - GET_VEHICLE_MODEL_* - Function pertains only to aviation vehicles. - For a full list, see here: pastebin.com/JwuGNp2K - - - - - GET_VEHICLE_MODEL_* - Function pertains only to aviation vehicles. - For a full list, see here: pastebin.com/JwuGNp2K - - - - - Returns max speed (without mods) of the specified vehicle model in m/s. - For a full list, see here: pastebin.com/AUuHHK06 - GET_VEHICLE_MODEL_* - - - - - Returns max traction of the specified vehicle model. - For a full list, see here: pastebin.com/ERnntVjK - - - - - GET_VEHICLE_MODEL_* - called if the vehicle is a boat -- returns vecMoveResistanceX? - For a full list, see here: pastebin.com/Pyb2RhZ9 - - - - - GET_VEHICLE_MODEL_* - called if the vehicle is a boat -- returns vecMoveResistanceX? - For a full list, see here: pastebin.com/Pyb2RhZ9 - - - - - Returns max number of passengers (including the driver) for the specified vehicle model. - For a full list, see here: pastebin.com/MdETCS1j - - - - - Returns max number of passengers (including the driver) for the specified vehicle model. - For a full list, see here: pastebin.com/MdETCS1j - - - - - Gets the color of the neon lights of the specified vehicle. - See _SET_VEHICLE_NEON_LIGHTS_COLOUR (0x8E0A582209A62695) for more information - - - - - Calling this with an invalid node id, will crash the game. - Note that IS_VEHICLE_NODE_ID_VALID simply checks if nodeId is not zero. It does not actually ensure that the id is valid. - Eg. IS_VEHICLE_NODE_ID_VALID(1) will return true, but will crash when calling GET_VEHICLE_NODE_POSITION(). - sfink: This native returns a pointer to a packed Vector3 struct in the RAX register, as do the following natives: - AI::WAYPOINT_RECORDING_GET_COORD - ENTITY::GET_ENTITY_MATRIX - FIRE::GET_CLOSEST_FIRE_POS - GAMEPLAY::FIND_SPAWN_POINT_IN_DIRECTION - GAMEPLAY::GET_MODEL_DIMENSIONS - GAMEPLAY::OVERRIDE_SAVE_HOUSE - GAMEPLAY::_0x82FDE6A57EE4EE44 - GAMEPLAY::_0x8BDC7BFC57A81E76 - GAMEPLAY::_0x8D7A43EC6A5FEA45 - GAMEPLAY::_0xA4A0065E39C9F25C - GAMEPLAY::_0xDFB4138EEFED7B81 - MOBILE::GET_MOBILE_PHONE_POSITION - MOBILE::GET_MOBILE_PHONE_ROTATION - NETWORK::NETWORK_GET_RESPAWN_RESULT - OBJECT::_0x163F8B586BC95F2A - PATHFIND::GET_CLOSEST_MAJOR_VEHICLE_NODE - PATHFIND::GET_CLOSEST_ROAD - PATHFIND::GET_CLOSEST_VEHICLE_NODE - PATHFIND::GET_CLOSEST_VEHICLE_NODE_WITH_HEADING - PATHFIND::GET_NTH_CLOSEST_VEHICLE_NODE - PATHFIND::GET_NTH_CLOSEST_VEHICLE_NODE_FAVOUR_DIRECTION - PATHFIND::GET_NTH_CLOSEST_VEHICLE_NODE_WITH_HEADING - PATHFIND::GET_RANDOM_VEHICLE_NODE - PATHFIND::GET_SAFE_COORD_FOR_PED - PATHFIND::GET_VEHICLE_NODE_POSITION - PATHFIND::_0x16F46FB18C8009E4 - VEHICLE::_0xA4822F1CF23F4810 - VEHICLE::_0xDF7E3EEB29642C38 - WATER::TEST_PROBE_AGAINST_ALL_WATER - WATER::TEST_PROBE_AGAINST_WATER - WEAPON::GET_PED_LAST_WEAPON_IMPACT_COORD - WORLDPROBE::_0xFF6BE494C7987F34 - WORLDPROBE::_GET_RAYCAST_RESULT - - - - - MulleDK19: Gets the density and flags of the closest node to the specified position. - Density is a value between 0 and 15, indicating how busy the road is. - Flags is a bit field. - - - - - Gets the number of passengers, NOT including the driver. Use IS_VEHICLE_SEAT_FREE(Vehicle, -1) to also check for the driver - - - - - Returns the license plate text from a vehicle. 8 chars maximum. - - - - - Returns the PlateType of a vehicle - Blue_on_White_1 = 3, - Blue_on_White_2 = 0, - Blue_on_White_3 = 4, - Yellow_on_Blue = 2, - Yellow_on_Black = 1, - North_Yankton = 5, - - - - - The resulting entity can be a Vehicle or Ped. - The native is stored between GET_VEHICLE_LIVERY_COUNT and GET_VEHICLE_MAX_BRAKING so the actual name is either GET_VEHICLE_L* or GET_VEHICLE_M* - ========================= - on a side note watching changes in memory this will only store your ped's entityPoolAddress if it's your personal vehicle. So seems to be related to personal vehicles or atleast a specific decor of it maybe. - - - - - Gets the vehicle the specified Ped is/was in depending on bool value. - - The target ped - False = CurrentVehicle, True = LastVehicle - The vehicle id. Returns 0 if the ped is/was not in a vehicle. - - - - Should be renamed GET_CAR_PED_IS_TRYING_TO_ENTER... - Because this works only for cars, not for helis, planes,motorcycles or bicycles... - From Calderon - This is what R* named it, deal with it. - - - - - Gets ID of vehicle player using. It means it can get ID at any interaction with vehicle. Enter\exit for example. And that means it is faster than GET_VEHICLE_PED_IS_IN but less safe. - - - - - 1000 is max health - Begins leaking gas at around 650 health - - - - - Returns index of the current vehicle's rooftop livery. - A getter for [\_SET_VEHICLE_ROOF_LIVERY](#_0xA6D3A8750DC73270). - - The vehicle handle. - An index of the current vehicle's rooftop livery. - - - - Returns index of the current vehicle's rooftop livery. - A getter for [\_SET_VEHICLE_ROOF_LIVERY](#_0xA6D3A8750DC73270). - - The vehicle handle. - An index of the current vehicle's rooftop livery. - - - - Returns a number of available rooftop liveries, or -1 if vehicle has no rooftop liveries available. - - The vehicle handle. - A number of available rooftop liveries for vehicle. - - - - Returns a number of available rooftop liveries, or -1 if vehicle has no rooftop liveries available. - - The vehicle handle. - A number of available rooftop liveries for vehicle. - - - - Gets the height of the vehicle's suspension. - The higher the value the lower the suspension. Each 0.002 corresponds with one more level lowered. - 0.000 is the stock suspension. - 0.008 is Ultra Suspension. - - - - - Gets the trailer of a vehicle and puts it into the trailer parameter. - - - - - Gets speed of a wheel at the tyre. - Max number of wheels can be retrieved with the native GET_VEHICLE_NUMBER_OF_WHEELS. - - An integer. - - - - Returns an int - Wheel Types: - 0: Sport - 1: Muscle - 2: Lowrider - 3: SUV - 4: Offroad - 5: Tuner - 6: Bike Wheels - 7: High End - Tested in Los Santos Customs - - - - - Returns the offset of the specified wheel relative to the wheel's axle center. - - - - - List of known states: - ``` - 1: Not wheeling. - 65: Vehicle is ready to do wheelie (burnouting). - 129: Vehicle is doing wheelie. - ``` - - Vehicle - Vehicle's current wheelie state. - - - - Remnant from GTA IV. Does nothing in GTA V. - - - - - Drft - - - - - This function set height to the value of z-axis of the water surface. - This function works with sea and lake. However it does not work with shallow rivers (e.g. raton canyon will return -100000.0f) - note: seems to return true when you are in water - - - - - // Returns the size of the default weapon component clip. - Use it like this: - char cClipSize[32]; - Hash cur; - if (WEAPON::GET_CURRENT_PED_WEAPON(playerPed, &cur, 1)) - { - if (WEAPON::IS_WEAPON_VALID(cur)) - { - int iClipSize = WEAPON::GET_WEAPON_CLIP_SIZE(cur); - sprintf_s(cClipSize, "ClipSize: %.d", iClipSize); - vDrawString(cClipSize, 0.5f, 0.5f); - } - } - - - - - This native does not return damages of weapons from the melee and explosive group. - - 0 in the decompiled scripts. - Damages of the weapon. - - - - This native does not return damages of weapons from the melee and explosive group. - - 0 in the decompiled scripts. - Damages of the weapon. - - - - 0=unknown (or incorrect weaponHash) - 1= no damage (flare,snowball, petrolcan) - 2=melee - 3=bullet - 4=force ragdoll fall - 5=explosive (RPG, Railgun, grenade) - 6=fire(molotov) - 8=fall(WEAPON_HELI_CRASH) - 10=electric - 11=barbed wire - 12=extinguisher - 13=gas - 14=water cannon(WEAPON_HIT_BY_WATER_CANNON) - - - - - returns the weapon hash of pickup - - - - - returns the weapon hash of pickup - - - - - // members should be aligned to 8 bytes by default but it's best to use alignas here, just to be sure - struct WeaponHudStatsData - { - alignas(8) uint8_t hudDamage; // 0x0000 - alignas(8) uint8_t hudSpeed; // 0x0008 - alignas(8) uint8_t hudCapacity; // 0x0010 - alignas(8) uint8_t hudAccuracy; // 0x0018 - alignas(8) uint8_t hudRange; // 0x0020 - }; - Usage: - WeaponHudStatsData data; - if (GET_WEAPON_HUD_STATS(weaponHash, (Any*)&data)) - { - // uint8_t damagePercentage = data.hudDamage etc... - } - - - - - Drops the current weapon and returns the object - Unknown behavior when unarmed. - - - - - Returns the model of any weapon. - Can also take an ammo hash? - sub_6663a(&l_115B, WEAPON::GET_WEAPONTYPE_MODEL(${ammo_rpg})); - - - - - changed any --> hash - progress_or_time --> percentWeather2, is not time but percent of the 2nd weather (0-1). - weatherType1 is same as GAMEPLAY::GET_PREV_WEATHER_TYPE_HASH_NAME() - and weatherType 2 GAMEPLAY::GET_NEXT_WEATHER_TYPE_HASH_NAME() - -QuantFC - - - - - Returns the coordinates of an entity-bone. - - - - - 'zoneName' corresponds to an entry in 'popzone.ipl'. - AIRP = Los Santos International Airport - ALAMO = Alamo Sea - ALTA = Alta - ARMYB = Fort Zancudo - BANHAMC = Banham Canyon Dr - BANNING = Banning - BEACH = Vespucci Beach - BHAMCA = Banham Canyon - BRADP = Braddock Pass - BRADT = Braddock Tunnel - BURTON = Burton - CALAFB = Calafia Bridge - CANNY = Raton Canyon - CCREAK = Cassidy Creek - CHAMH = Chamberlain Hills - CHIL = Vinewood Hills - CHU = Chumash - CMSW = Chiliad Mountain State Wilderness - CYPRE = Cypress Flats - DAVIS = Davis - DELBE = Del Perro Beach - DELPE = Del Perro - DELSOL = La Puerta - DESRT = Grand Senora Desert - DOWNT = Downtown - DTVINE = Downtown Vinewood - EAST_V = East Vinewood - EBURO = El Burro Heights - ELGORL = El Gordo Lighthouse - ELYSIAN = Elysian Island - GALFISH = Galilee - GOLF = GWC and Golfing Society - GRAPES = Grapeseed - GREATC = Great Chaparral - HARMO = Harmony - HAWICK = Hawick - HORS = Vinewood Racetrack - HUMLAB = Humane Labs and Research - JAIL = Bolingbroke Penitentiary - KOREAT = Little Seoul - LACT = Land Act Reservoir - LAGO = Lago Zancudo - LDAM = Land Act Dam - LEGSQU = Legion Square - LMESA = La Mesa - LOSPUER = La Puerta - MIRR = Mirror Park - MORN = Morningwood - MOVIE = Richards Majestic - MTCHIL = Mount Chiliad - MTGORDO = Mount Gordo - MTJOSE = Mount Josiah - MURRI = Murrieta Heights - NCHU = North Chumash - NOOSE = N.O.O.S.E - OCEANA = Pacific Ocean - PALCOV = Paleto Cove - PALETO = Paleto Bay - PALFOR = Paleto Forest - PALHIGH = Palomino Highlands - PALMPOW = Palmer-Taylor Power Station - PBLUFF = Pacific Bluffs - PBOX = Pillbox Hill - PROCOB = Procopio Beach - RANCHO = Rancho - RGLEN = Richman Glen - RICHM = Richman - ROCKF = Rockford Hills - RTRAK = Redwood Lights Track - SANAND = San Andreas - SANCHIA = San Chianski Mountain Range - SANDY = Sandy Shores - SKID = Mission Row - SLAB = Stab City - STAD = Maze Bank Arena - STRAW = Strawberry - TATAMO = Tataviam Mountains - TERMINA = Terminal - TEXTI = Textile City - TONGVAH = Tongva Hills - TONGVAV = Tongva Valley - VCANA = Vespucci Canals - VESP = Vespucci - VINE = Vinewood - WINDF = Ron Alternates Wind Farm - WVINE = West Vinewood - ZANCUDO = Zancudo River - ZP_ORT = Port of South Los Santos - ZQ_UAR = Davis Quartz - - - - - cellphone range 1- 5 used for signal bar in iFruit phone - - - - - World to relative screen coords - this world to screen will keep the text on screen. it will keep it in the screen pos. good for a deer hunting mod - Was named _GET_SCREEN_COORD_FROM_WORLD_COORD, but this conflicts with 0x34E82F05DF2974F5 - As that hash actually matches GET_SCREEN_COORD_FROM_WORLD_COORD that one supercedes and this one was renamed - to _GET_2D_COORD_FROM_3D_COORD - - - - - World to relative screen coords - this world to screen will keep the text on screen. it will keep it in the screen pos. good for a deer hunting mod - Was named _GET_SCREEN_COORD_FROM_WORLD_COORD, but this conflicts with 0x34E82F05DF2974F5 - As that hash actually matches GET_SCREEN_COORD_FROM_WORLD_COORD that one supercedes and this one was renamed - to _GET_2D_COORD_FROM_3D_COORD - - - - - Achievements from 0-57 - more achievements came with update 1.29 (freemode events update), I'd say that they now go to 60, but I'll need to check. - - - - - Gives a weapon to PED with a delay, example: - WEAPON::GIVE_DELAYED_WEAPON_TO_PED(PED::PLAYER_PED_ID(), GAMEPLAY::GET_HASH_KEY("WEAPON_PISTOL"), 1000, false) - ---------------------------------------------------------------------------------------------------------------------------------------- - Translation table: - pastebin.com/a39K8Nz8 - - - - - PoliceMotorcycleHelmet 1024 - RegularMotorcycleHelmet 4096 - FiremanHelmet 16384 - PilotHeadset 32768 - PilotHelmet 65536 - -- - p2 is generally 4096 or 16384 in the scripts. p1 varies between 1 and 0. - - - - - Sends the message that was created by a call to CREATE_NM_MESSAGE to the specified Ped. - If a message hasn't been created already, this function does nothing. - If the Ped is not ragdolled with Euphoria enabled, this function does nothing. - The following call can be used to ragdoll the Ped with Euphoria enabled: SET_PED_TO_RAGDOLL(ped, 4000, 5000, 1, 1, 1, 0); - Call order: - SET_PED_TO_RAGDOLL - CREATE_NM_MESSAGE - GIVE_PED_NM_MESSAGE - Multiple messages can be chained. Eg. to make the ped stagger and swing his arms around, the following calls can be made: - SET_PED_TO_RAGDOLL(ped, 4000, 5000, 1, 1, 1, 0); - CREATE_NM_MESSAGE(true, 0); // stopAllBehaviours - Stop all other behaviours, in case the Ped is already doing some Euphoria stuff. - GIVE_PED_NM_MESSAGE(ped); // Dispatch message to Ped. - CREATE_NM_MESSAGE(true, 1151); // staggerFall - Attempt to walk while falling. - GIVE_PED_NM_MESSAGE(ped); // Dispatch message to Ped. - CREATE_NM_MESSAGE(true, 372); // armsWindmill - Swing arms around. - GIVE_PED_NM_MESSAGE(ped); // Dispatch message to Ped. - - - - - p1 is either 1 or 2 in the PC scripts. - - - - - addonHash: - (use WEAPON::GET_WEAPON_COMPONENT_TYPE_MODEL() to get hash value) - ^ Wrong. - AddonHash is NOT a model hash, it's the weapon component hash. - ${component_at_ar_flsh}, ${component_at_ar_supp}, ${component_at_pi_flsh}, ${component_at_scope_large}, ${component_at_ar_supp_02} - - - - - isHidden - ???? - All weapon names (add to the list if something is missing), use GAMEPLAY::GET_HASH_KEY((char *)weaponNames[i]) to get get the hash: - static LPCSTR weaponNames[] = { - "WEAPON_KNIFE", "WEAPON_NIGHTSTICK", "WEAPON_HAMMER", "WEAPON_BAT", "WEAPON_GOLFCLUB", - "WEAPON_CROWBAR", "WEAPON_PISTOL", "WEAPON_COMBATPISTOL", "WEAPON_APPISTOL", "WEAPON_PISTOL50", - "WEAPON_MICROSMG", "WEAPON_SMG", "WEAPON_ASSAULTSMG", "WEAPON_ASSAULTRIFLE", - "WEAPON_CARBINERIFLE", "WEAPON_ADVANCEDRIFLE", "WEAPON_MG", "WEAPON_COMBATMG", "WEAPON_PUMPSHOTGUN", - "WEAPON_SAWNOFFSHOTGUN", "WEAPON_ASSAULTSHOTGUN", "WEAPON_BULLPUPSHOTGUN", "WEAPON_STUNGUN", "WEAPON_SNIPERRIFLE", - "WEAPON_HEAVYSNIPER", "WEAPON_GRENADELAUNCHER", "WEAPON_GRENADELAUNCHER_SMOKE", "WEAPON_RPG", "WEAPON_MINIGUN", - "WEAPON_GRENADE", "WEAPON_STICKYBOMB", "WEAPON_SMOKEGRENADE", "WEAPON_BZGAS", "WEAPON_MOLOTOV", - "WEAPON_FIREEXTINGUISHER", "WEAPON_PETROLCAN", "WEAPON_FLARE", "WEAPON_SNSPISTOL", "WEAPON_SPECIALCARBINE", - "WEAPON_HEAVYPISTOL", "WEAPON_BULLPUPRIFLE", "WEAPON_HOMINGLAUNCHER", "WEAPON_PROXMINE", "WEAPON_SNOWBALL", - "WEAPON_VINTAGEPISTOL", "WEAPON_DAGGER", "WEAPON_FIREWORK", "WEAPON_MUSKET", "WEAPON_MARKSMANRIFLE", - "WEAPON_HEAVYSHOTGUN", "WEAPON_GUSENBERG", "WEAPON_HATCHET", "WEAPON_RAILGUN", "WEAPON_COMBATPDW", - "WEAPON_KNUCKLE", "WEAPON_MARKSMANPISTOL", "WEAPON_FLASHLIGHT", "WEAPON_MACHETE", "WEAPON_MACHINEPISTOL", - "WEAPON_SWITCHBLADE", "WEAPON_REVOLVER", "WEAPON_COMPACTRIFLE", "WEAPON_DBSHOTGUN", "WEAPON_FLAREGUN", - "WEAPON_AUTOSHOTGUN", "WEAPON_BATTLEAXE", "WEAPON_COMPACTLAUNCHER", "WEAPON_MINISMG", "WEAPON_PIPEBOMB", - "WEAPON_POOLCUE", "WEAPON_SWEEPER", "WEAPON_WRENCH" - }; - ---------------------------------------------------------------------------------------------------------------------------------------- - Translation table: - pastebin.com/a39K8Nz8 - - - - - if (ENTITY::HAS_ANIM_EVENT_FIRED(PLAYER::PLAYER_PED_ID(), GAMEPLAY::GET_HASH_KEY("CreateObject"))) - - - - - Gets whether the specified animation set has finished loading. An animation set provides movement animations for a ped. See SET_PED_MOVEMENT_CLIPSET. - Animation set and clip set are synonymous. - - - - - Console Hash - - - - - Console Hash - - - - - p3 - possibly radius? - - - - - This native appears on the cheat_controller script and tracks a combination of buttons, which may be used to toggle cheats in-game. Credits to ThreeSocks for the info. The hash contains the combination, while the "amount" represents the amount of buttons used in a combination. The following page can be used to make a button combination: gta5offset.com/ts/hash/ - INT_SCORES_SCORTED was a hash collision - - - - - This native appears on the cheat_controller script and tracks a combination of buttons, which may be used to toggle cheats in-game. Credits to ThreeSocks for the info. The hash contains the combination, while the "amount" represents the amount of buttons used in a combination. The following page can be used to make a button combination: gta5offset.com/ts/hash/ - INT_SCORES_SCORTED was a hash collision - - - - - Get inputted "Cheat code", for example: - while (TRUE) - { - if (GAMEPLAY::_557E43C447E700A8(${fugitive})) - { - // Do something. - } - SYSTEM::WAIT(0); - } - Calling this will also set the last saved string hash to zero. - - - - - Get inputted "Cheat code", for example: - while (TRUE) - { - if (GAMEPLAY::_557E43C447E700A8(${fugitive})) - { - // Do something. - } - SYSTEM::WAIT(0); - } - Calling this will also set the last saved string hash to zero. - - - - - Alias for HAS_ANIM_SET_LOADED. - - - - - P3 is always 3 as far as i cant tell - Animations List : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Entity 1 = Victim - Entity 2 = Attacker - p2 seems to always be 1 - - - - - It determines what weapons caused damage: - If youu want to define only a specific weapon, second parameter=weapon hash code, third parameter=0 - If you want to define any melee weapon, second parameter=0, third parameter=1. - If you want to identify any weapon (firearms, melee, rockets, etc.), second parameter=0, third parameter=2. - - - - - traceType is always 17 in the scripts. - There is other codes used for traceType: - 19 - in jewelry_prep1a - 126 - in am_hunt_the_beast - 256 & 287 - in fm_mission_controller - - - - - Has the entity1 got a clear line of sight to the other entity2 from the direction entity1 is facing. - This is one of the most CPU demanding BOOL natives in the game; avoid calling this in things like nested for-loops - - - - - Called on tick. - Tested with vehicles, returns true whenever the vehicle is touching any entity. - Note: for vehicles, the wheels can touch the ground and it will still return false, but if the body of the vehicle touches the ground, it will return true. - - - - - Check to see if hud component Scaleform has loaded? - - - - - Returns whether or not the specific minimap overlay has loaded. - - A minimap overlay ID. - A boolean indicating load status. - - - - Checks if the specified model has loaded into memory. - - - - - assetName = For example "core" - - - - - Pretty sure it's the real name (not 100% sure so I added the _ prefix); can someone else confirm it? - Only values used in the scripts are: - "heist_mp" - "heistmap_mp" - "instructional_buttons" - "heist_pre" - - - - - Pretty sure it's the real name (not 100% sure so I added the _ prefix); can someone else confirm it? - Only values used in the scripts are: - "heist_mp" - "heistmap_mp" - "instructional_buttons" - "heist_pre" - - - - - It determines what weapons caused damage: - If you want to define only a specific weapon, second parameter=weapon hash code, third parameter=0 - If you want to define any melee weapon, second parameter=0, third parameter=1. - If you want to identify any weapon (firearms, melee, rockets, etc.), second parameter=0, third parameter=2. - - - - - p2 should be FALSE, otherwise it seems to always return FALSE - Bool does not check if the weapon is current equipped, unfortunately. - - - - - Gets the player's info and calls a function that checks the player's ped position. - Here's the decompiled function that checks the position: pastebin.com/ZdHG2E7n - - - - - Returns if a script has been loaded into the game. Used to see if a script was loaded after requesting. - For a full list, see here: pastebin.com/yLNWicUi - - - - - Checks if the specified gxt has loaded into the passed slot. - - - - - Console Hash - - - - - Console Hash - - - - - Third Parameter = unsure, but pretty sure it is weapon hash - --> get_hash_key("weapon_stickybomb") - Fourth Parameter = unsure, almost always -1 - - - - - I think this works, but seems to prohibit switching to other weapons (or accessing the weapon wheel) - - - - - Once called each frame hides all above radar notifications. - - - - - Once called each frame hides all above radar notifications. - - - - - This is the native that is used to hide the exterior of GTA Online apartment buildings when you are inside an apartment. - More info: http://gtaforums.com/topic/836301-hiding-gta-online-apartment-exteriors/ - - - - - This is the native that is used to hide the exterior of GTA Online apartment buildings when you are inside an apartment. - More info: http://gtaforums.com/topic/836301-hiding-gta-online-apartment-exteriors/ - - - - - Hides the players weapon during a cutscene. - - - - - Hash collision - If used with a Ped that has an AI blip as the first argument: - - if p1 is true, a view cone is displayed with the AI blip - - - - - draws circular marker at pos - -1 = none - 0 = red - 1 = green - 2 = blue - 3 = green larger - 4 = nothing - 5 = green small - - - - - draws circular marker at pos - -1 = none - 0 = red - 1 = green - 2 = blue - 3 = green larger - 4 = nothing - 5 = green small - - - - - Simply returns whatever is passed to it (Regardless of whether the handle is valid or not). - -------------------------------------------------------- - if (NETWORK::NETWORK_IS_PARTICIPANT_ACTIVE(PLAYER::INT_TO_PARTICIPANTINDEX(i))) - - - - - Simply returns whatever is passed to it (Regardless of whether the handle is valid or not). - - - - - Resets the idle camera timer. Calling this in a loop will disable the idle camera. - - - - - Resets the idle camera timer. Calling this in a loop will disable the idle camera. - - - - - if "flag" is true, the AI blip will always be displayed for the specified ped, if it has an AI blip - If "flag" is false, the AI blip will only be displayed when the player is in combat with the specified ped, if it has an AI blip - - - - - if "flag" is true, the AI blip will always be displayed for the specified ped, if it has an AI blip - If "flag" is false, the AI blip will only be displayed when the player is in combat with the specified ped, if it has an AI blip - - - - - Example: - bool playing = AUDIO::IS_ALARM_PLAYING("PORT_OF_LS_HEIST_FORT_ZANCUDO_ALARMS"); - - - - - Common in the scripts: - AUDIO::IS_AMBIENT_SPEECH_DISABLED(PLAYER::PLAYER_PED_ID()); - - - - - if (GAMEPLAY::IS_AUSSIE_VERSION()) { - sub_127a9(&l_31, 1024); // l_31 |= 1024 - l_129 = 3; - sub_129d2("AUSSIE VERSION IS TRUE!?!?!"); // DEBUG - } - Used to block some of the prostitute stuff due to laws in Australia. - - - - - <!-- Native implemented by Disquse. 0xFFF65C63 --> - Returns true if the minimap is currently expanded. False if it's the normal minimap state. - Use [`IsBigmapFull`](#_0x66EE14B2) to check if the full map is currently revealed on the minimap. - - A bool indicating if the minimap is currently expanded or normal state. - - - - <!-- Native implemented by Disquse. 0x66EE14B2 --> - Returns true if the full map is currently revealed on the minimap. - Use [`IsBigmapActive`](#_0xFFF65C63) to check if the minimap is currently expanded or in it's normal state. - - Returns true if the full map is currently revealed on the minimap. - - - - Returns bit's boolean state from [offset] of [address]. - Example: - GAMEPLAY::IS_BIT_SET(bitAddress, 1); - To enable and disable bits, see: - GAMEPLAY::SET_BIT(&bitAddress, 1); // enable - GAMEPLAY::CLEAR_BIT(&bitAddress, 1); // disable - - - - - Returns whether or not the passed camera handle is active. - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Control Groups: - enum InputGroups - { - INPUTGROUP_MOVE = 0, - INPUTGROUP_LOOK = 1, - INPUTGROUP_WHEEL = 2, - INPUTGROUP_CELLPHONE_NAVIGATE = 3, - INPUTGROUP_CELLPHONE_NAVIGATE_UD = 4, - INPUTGROUP_CELLPHONE_NAVIGATE_LR = 5, - INPUTGROUP_FRONTEND_DPAD_ALL = 6, - INPUTGROUP_FRONTEND_DPAD_UD = 7, - INPUTGROUP_FRONTEND_DPAD_LR = 8, - INPUTGROUP_FRONTEND_LSTICK_ALL = 9, - INPUTGROUP_FRONTEND_RSTICK_ALL = 10, - INPUTGROUP_FRONTEND_GENERIC_UD = 11, - INPUTGROUP_FRONTEND_GENERIC_LR = 12, - INPUTGROUP_FRONTEND_GENERIC_ALL = 13, - INPUTGROUP_FRONTEND_BUMPERS = 14, - INPUTGROUP_FRONTEND_TRIGGERS = 15, - INPUTGROUP_FRONTEND_STICKS = 16, - INPUTGROUP_SCRIPT_DPAD_ALL = 17, - INPUTGROUP_SCRIPT_DPAD_UD = 18, - INPUTGROUP_SCRIPT_DPAD_LR = 19, - INPUTGROUP_SCRIPT_LSTICK_ALL = 20, - INPUTGROUP_SCRIPT_RSTICK_ALL = 21, - INPUTGROUP_SCRIPT_BUMPERS = 22, - INPUTGROUP_SCRIPT_TRIGGERS = 23, - INPUTGROUP_WEAPON_WHEEL_CYCLE = 24, - INPUTGROUP_FLY = 25, - INPUTGROUP_SUB = 26, - INPUTGROUP_VEH_MOVE_ALL = 27, - INPUTGROUP_CURSOR = 28, - INPUTGROUP_CURSOR_SCROLL = 29, - INPUTGROUP_SNIPER_ZOOM_SECONDARY = 30, - INPUTGROUP_VEH_HYDRAULICS_CONTROL = 31, - MAX_INPUTGROUPS = 32, - INPUTGROUP_INVALID = 33 - }; - 0, 1 and 2 used in the scripts. - - - - - Returns whether a [control](https://docs.fivem.net/game-references/controls/) was newly pressed since the last check. - - The control system instance to use. Usually set to 0. - The control ID to check. - True if the control was pressed. - - - - Returns whether a [control](https://docs.fivem.net/game-references/controls/) was newly released since the last check. - - The control system instance to use. Usually set to 0. - The control ID to check. - True if the control was recently released. - - - - Returns whether a [control](https://docs.fivem.net/game-references/controls/) is currently pressed. - - The control system instance to use. Usually set to 0. - The control ID to check. - True if the control was pressed. - - - - Returns whether a [control](https://docs.fivem.net/game-references/controls/) is currently _not_ pressed. - - The control system instance to use. Usually set to 0. - The control ID to check. - True if the control is not pressed. - - - - xyz - relative to the world origin. - - - - - Usage: - public bool isCopInRange(Vector3 Location, float Range) - { - return Function.Call<bool>(Hash.IS_COP_PED_IN_AREA_3D, Location.X - Range, Location.Y - Range, Location.Z - Range, Location.X + Range, Location.Y + Range, Location.Z + Range); - } - - - - - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - Example: - DLC2::IS_DLC_PRESENT($\mpbusiness2\); - ($ = gethashkey) - bruteforce these: - 0xB119F6D - 0x96F02EE6 - - - - - Use _GET_VEHICLE_MOD_DATA for modData - - - - - Use _GET_VEHICLE_MOD_DATA for modData - - - - - Returns whether or not a browser is created for a specified DUI browser object. - - The DUI browser handle. - A boolean indicating TRUE if the browser is created. - - - - Gets whether or not this is the CitizenFX server. - - A boolean value. - - - - XBOX ONE - MulleDK19: This function is hard-coded to always return 0. - - - - - Checks if entity is within x/y/zSize distance of x/y/z. - Last three are unknown ints, almost always p7 = 0, p8 = 1, p9 = 0 - - - - - Checks if entity1 is within the box defined by x/y/zSize of entity2. - Last three parameters are almost alwasy p5 = 0, p6 = 1, p7 = 0 - - - - - Creates a spherical cone at origin that extends to surface with the angle specified. Then returns true if the entity is inside the spherical cone - Angle is measured in degrees. - These values are constant, most likely bogus: - p8 = 0, p9 = 1, p10 = 0 - This method can also take two float<3> instead of 6 floats. - - - - - Returns true if the entity is in between the minimum and maximum values for the 2d screen coords. - This means that it will return true even if the entity is behind a wall for example, as long as you're looking at their location. - Chipping - - - - - See also PED::IS_SCRIPTED_SCENARIO_PED_USING_CONDITIONAL_ANIM 0x6EC47A344923E1ED 0x3C30B447 - Taken from ENTITY::IS_ENTITY_PLAYING_ANIM(PLAYER::PLAYER_PED_ID(), "creatures@shark@move", "attack_player", 3) - p4 is always 3 in the scripts. - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - taskFlag: - 2 - Check synchronized scene - - - - - A static ped will not react to natives like "APPLY_FORCE_TO_ENTITY" or "SET_ENTITY_VELOCITY" and oftentimes will not react to task-natives like "AI::TASK_COMBAT_PED". The only way I know of to make one of these peds react is to ragdoll them (or sometimes to use CLEAR_PED_TASKS_IMMEDIATELY(). Static peds include almost all far-away peds, beach-combers, peds in certain scenarios, peds crossing a crosswalk, peds walking to get back into their cars, and others. If anyone knows how to make a ped non-static without ragdolling them, please edit this with the solution. - ^ Attach a phCollider to the ped. - - - - - // add this to your CSS to view code with formatting intact. - // pre + hr + p { white-space: pre; } // - - bool isEntityUpright(Entity e, float angle) { - bool bIsUpright; // bl@1 - CDynamicEntity* pEntity; // rdi@1 - bIsUpright = 0; - pEntity = getEntityAddressIfPhysical(e); - if (pEntity) { - bIsUpright = 0; - if (pEntity->Matrix.up.z >= cosf(angle * 0.017453292)) // radians(angle) - bIsUpright = 1; - } - return bIsUpright; - } - - - - - This function is hard-coded to always return 0. - - - - - Hardcoded to return 1 - - - - - Examples when this function will return 0 are: - - During busted screen. - - When player is coming out from a hospital. - - When player is coming out from a police station. - - - - - Doesn't appear to work, use IS_HELP_MESSAGE_BEING_DISPLAYED instead - - - - - Checks whether the horn of a vehicle is currently played. - - - - - Full list of components below - HUD = 0; - HUD_WANTED_STARS = 1; - HUD_WEAPON_ICON = 2; - HUD_CASH = 3; - HUD_MP_CASH = 4; - HUD_MP_MESSAGE = 5; - HUD_VEHICLE_NAME = 6; - HUD_AREA_NAME = 7; - HUD_VEHICLE_CLASS = 8; - HUD_STREET_NAME = 9; - HUD_HELP_TEXT = 10; - HUD_FLOATING_HELP_TEXT_1 = 11; - HUD_FLOATING_HELP_TEXT_2 = 12; - HUD_CASH_CHANGE = 13; - HUD_RETICLE = 14; - HUD_SUBTITLE_TEXT = 15; - HUD_RADIO_STATIONS = 16; - HUD_SAVING_GAME = 17; - HUD_GAME_STREAM = 18; - HUD_WEAPON_WHEEL = 19; - HUD_WEAPON_WHEEL_STATS = 20; - MAX_HUD_COMPONENTS = 21; - MAX_HUD_WEAPONS = 22; - MAX_SCRIPTED_HUD_COMPONENTS = 141; - - - - - Only occurrence was false, in maintransition. - - - - - Only occurrence was false, in maintransition. - - - - - ======================================================= - Correction, I have change this to int, instead of int* - as it doesn't use a pointer to the createdIncident. - If you try it you will crash (or) freeze. - ======================================================= - - - - - Seems to return true if the input is currently disabled. "_GET_LAST_INPUT_METHOD" didn't seem very accurate, but I've left the original description below. - -- - index usually 2 - returns true if the last input method was made with mouse + keyboard, false if it was made with a gamepad - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - Seems to return true if the input is currently disabled. "_GET_LAST_INPUT_METHOD" didn't seem very accurate, but I've left the original description below. - -- - index usually 2 - returns true if the last input method was made with mouse + keyboard, false if it was made with a gamepad - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - I may be wrong with this one, but from the looks of the scripts, it sets keyboard related stuff as soon as this returns true. - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - I may be wrong with this one, but from the looks of the scripts, it sets keyboard related stuff as soon as this returns true. - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - Returns a bool if interior rendering is disabled, if yes, all "normal" rendered interiors are invisible - - - - - List of all IPLs: pastebin.com/iNGLY32D - - - - - Returns whether the specified model represents a vehicle. - - - - - Check if model is in cdimage(rpf) - - - - - Returns whether the specified model exists in the game. - - - - - Returns whether navmesh for the region is loaded. The region is a rectangular prism defined by it's top left deepest corner to it's bottom right shallowest corner. - If you can re-word this so it makes more sense, please do. I'm horrible with words sometimes... - - - - - hash collision. - Definitely a hash collision, has something do to with your local player, not a vehicle - - - - - Gets whether or not NIGHTVISION is Active. - Note: When nightvision is actually active, this native will return TRUE! - - - - - Gets whether or not NIGHTVISION is Active. - Note: When nightvision is actually active, this native will return TRUE! - - - - - PS4 - MulleDK19: This function is hard-coded to always return 0. - Force67: I patched return result and got this : i.imgur.com/hUn7zSj.jpg - translate please? - - - - - MulleDK19: This function is hard-coded to always return 1. - - - - - Returns true if the given ped has a valid pointer to CPlayerInfo in its CPed class. That's it. - - - - - p1 is anywhere from 4 to 7 in the scripts. Might be a weapon wheel group? - ^It's kinda like that. - 7 returns true if you are equipped with any weapon except your fists. - 6 returns true if you are equipped with any weapon except melee weapons. - 5 returns true if you are equipped with any weapon except the Explosives weapon group. - 4 returns true if you are equipped with any weapon except Explosives weapon group AND melee weapons. - 3 returns true if you are equipped with either Explosives or Melee weapons (the exact opposite of 4). - 2 returns true only if you are equipped with any weapon from the Explosives weapon group. - 1 returns true only if you are equipped with any Melee weapon. - 0 never returns true. - Note: When I say "Explosives weapon group", it does not include the Jerry can and Fire Extinguisher. - - - - - This function is hard-coded to always return 0. - - - - - p1 is always 0 - - - - - Checks if the component variation is valid, this works great for randomizing components using loops. - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - l - - - - - This native returns a true or false value. - Ped ped = The ped whose weapon you want to check. - - - - - Seems to consistently return true if the ped is dead. - p1 is always passed 1 in the scripts. - I suggest to remove "OR_DYING" part, because it does not detect dying phase. - That's what the devs call it, cry about it. - lol - that's a good meme right there. - - - - - Presumably returns the Entity that the Ped is currently diving out of the way of. - var num3; - if (PED::IS_PED_EVASIVE_DIVING(A_0, &num3) != 0) - if (ENTITY::IS_ENTITY_A_VEHICLE(num3) != 0) - - - - - angle is ped's view cone - - - - - Gets a value indicating whether this ped's health is below its fatally injured threshold. The default threshold is 100. - If the handle is invalid, the function returns true. - - - - - Returns true/false if the ped is/isn't humanoid. - - - - - Returns whether the specified ped is hurt. - - - - - Returns whether the specified ped is in any vehicle. If `atGetIn` is set to true, also returns true if the ped is - currently in the process of entering a vehicle (a specific stage check for `CTaskEnterVehicle`). - - The ped to check. - `true` to also consider attempting to enter a vehicle. - Whether or not the ped is currently involved in any vehicle. - - - - Checks to see if ped and target are in combat with eachother. Only goes one-way: if target is engaged in combat with ped but ped has not yet reacted, the function will return false until ped starts fighting back. - p1 is usually 0 in the scripts because it gets the ped id during the task sequence. For instance: PED::IS_PED_IN_COMBAT(l_42E[4 -- [[14]] ], PLAYER::PLAYER_PED_ID()) // armenian2.ct4: 43794 - - - - - p1 is nearly always 0 in the scripts. - - - - - Notes: The function only returns true while the ped is: - A.) Swinging a random melee attack (including pistol-whipping) - B.) Reacting to being hit by a melee attack (including pistol-whipping) - C.) Is locked-on to an enemy (arms up, strafing/skipping in the default fighting-stance, ready to dodge+counter). - You don't have to be holding the melee-targetting button to be in this stance; you stay in it by default for a few seconds after swinging at someone. If you do a sprinting punch, it returns true for the duration of the punch animation and then returns false again, even if you've punched and made-angry many peds - - - - - Gets a value indicating whether the specified ped is in the specified vehicle. - If 'atGetIn' is false, the function will not return true until the ped is sitting in the vehicle and is about to close the door. If it's true, the function returns true the moment the ped starts to get onto the seat (after opening the door). Eg. if false, and the ped is getting into a submersible, the function will not return true until the ped has descended down into the submersible and gotten into the seat, while if it's true, it'll return true the moment the hatch has been opened and the ped is about to descend into the submersible. - - - - - returns true is the ped is on the ground whining like a little female dog from a gunshot wound - - - - - Gets a value indicating whether this ped's health is below its injured threshold. - The default threshold is 100. - - - - - Returns true/false if the ped is/isn't male. - - - - - Same function call as PED::GET_MOUNT, aka just returns 0 - - - - - Gets a value indicating whether the specified ped is on top of any vehicle. - Return 1 when ped is on vehicle. - Return 0 when ped is not on a vehicle. - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - If the ped handle passed through the parenthesis is in a ragdoll state this will return true. - - - - - Returns whether the specified ped is reloading. - - - - - Returns whether the specified ped is shooting. - - - - - Detect if ped is in any vehicle - [True/False] - - - - - Detect if ped is sitting in the specified vehicle - [True/False] - - - - - Console Hash: 0xDD5D08A7 - - - - - Console Hash: 0xDD5D08A7 - - - - - Returns true if the ped doesn't do any movement. If the ped is being pushed forwards by using APPLY_FORCE_TO_ENTITY for example, the function returns false. - - - - - What's strafing? - - - - - Definition of vaulting? - - - - - Probably checks whether the ped has finished reloading or not and if the current weapon is not being switched to another. - - - - - Returns true if the ped passed through the parenthesis is wearing a helmet. - - - - - gtaforums.com/topic/885580-ped-headshotmugshot-txd/ - - - - - gtaforums.com/topic/885580-ped-headshotmugshot-txd/ - - - - - Pickup hashes: pastebin.com/8EuSv2r1 - - - - - Return true while player is being arrested / busted. - If atArresting is set to 1, this function will return 1 when player is being arrested (while player is putting his hand up, but still have control) - If atArresting is set to 0, this function will return 1 only when the busted screen is shown. - - - - - Returns true when the player is not able to control the cam i.e. when running a benchmark test, switching the player or viewing a cutscene. - Note: I am not 100% sure if the native actually checks if the cam control is disabled but it seems promising. - - - - - Returns true when the player is not able to control the cam i.e. when running a benchmark test, switching the player or viewing a cutscene. - Note: I am not 100% sure if the native actually checks if the cam control is disabled but it seems promising. - - - - - Returns TRUE if the player ('s ped) is climbing at the moment. - - - - - Can the player control himself, used to disable controls for player for things like a cutscene. - --- - You can't disable controls with this, use SET_PLAYER_CONTROL(...) for this. - - - - - Gets a value indicating whether the specified player is currently aiming freely. - - - - - Gets a value indicating whether the specified player is currently aiming freely at the specified entity. - - - - - this function is hard-coded to always return 0. - - - - - Returns TRUE if the game is in online mode and FALSE if in offline mode. - This is an alias for NETWORK_IS_SIGNED_ONLINE. - - - - - Checks whether the specified player has a Ped, the Ped is not dead, is not injured and is not arrested. - - - - - Returns true if the player is riding a train. - - - - - Returns true if the player is currently switching, false otherwise. - (When the camera is in the sky moving from Trevor to Franklin for example) - - - - - Returns true if the player is currently switching, false otherwise. - (When the camera is in the sky moving from Trevor to Franklin for example) - - - - - Gets a value indicating whether the specified position is on a road. - The vehicle parameter is not implemented (ignored). - - - - - Determines whether there is a projectile within the specified coordinates. The coordinates form a rectangle. - ownedByPlayer = only projectiles fired by the player will be detected. - - - - - Determines whether there is a projectile of a specific type within the specified coordinates. The coordinates form a rectangle. - Note: This native hasn't been tested yet. - - - - - Dr. Underscore (1/6/18): - Checks if the projectile is in the radius around that point. - p6 is (most likely) ownedByPlayer. (see IS_PROJECTILE_IN_AREA for info) - - - - - Dr. Underscore (1/6/18): - Checks if the projectile is in the radius around that point. - p6 is (most likely) ownedByPlayer. (see IS_PROJECTILE_IN_AREA for info) - - - - - MulleDK19: This function is hard-coded to always return 0. - - - - - Checks if you're recording, returns TRUE when you start recording (F1) or turn on action replay (F2) - mov al, cs:g_bIsRecordingGameplay // byte_141DD0CD0 in b944 - retn - - - - - if(NETWORK::_IS_ROCKSTAR_BANNED() == 0) means the player is rockstar banned - - - - - Returns true if the return value of a scaleform function is ready to be collected (using `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_STRING` or `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT`). - Old description/example: - ``` - Seems to take data that is returned from "_POP_SCALEFORM_MOVIE_FUNCTION" and checks to see if it's not null/empty. - "agency_heist3b.ysc", line 71836: - if (CONTROLS::IS_CONTROL_JUST_PRESSED(2, 201) || CONTROLS::IS_CONTROL_JUST_PRESSED(2, 237)) { - GRAPHICS::BEGIN_SCALEFORM_MOVIE_METHOD(l_46, "SET_INPUT_EVENT_SELECT"); - l_45 = GRAPHICS::_END_SCALEFORM_MOVIE_METHOD_RETURN(); - } - if (GRAPHICS::IS_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_READY(l_45)) { - v_13 = GRAPHICS::GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT(l_45); - if (v_13 == 6) { - sub_73269(a_0); - } - } - ``` - - The return value of this native: `EndScaleformMovieMethodReturn` - Returns true if the return value of a scaleform function is ready to be collected - - - - Returns true if the return value of a scaleform function is ready to be collected (using `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_STRING` or `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT`). - Old description/example: - ``` - Seems to take data that is returned from "_POP_SCALEFORM_MOVIE_FUNCTION" and checks to see if it's not null/empty. - "agency_heist3b.ysc", line 71836: - if (CONTROLS::IS_CONTROL_JUST_PRESSED(2, 201) || CONTROLS::IS_CONTROL_JUST_PRESSED(2, 237)) { - GRAPHICS::BEGIN_SCALEFORM_MOVIE_METHOD(l_46, "SET_INPUT_EVENT_SELECT"); - l_45 = GRAPHICS::_END_SCALEFORM_MOVIE_METHOD_RETURN(); - } - if (GRAPHICS::IS_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_READY(l_45)) { - v_13 = GRAPHICS::GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT(l_45); - if (v_13 == 6) { - sub_73269(a_0); - } - } - ``` - - The return value of this native: `EndScaleformMovieMethodReturn` - Returns true if the return value of a scaleform function is ready to be collected - - - - Returns true if the return value of a scaleform function is ready to be collected (using `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_STRING` or `GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT`). - Old description/example: - ``` - Seems to take data that is returned from "_POP_SCALEFORM_MOVIE_FUNCTION" and checks to see if it's not null/empty. - "agency_heist3b.ysc", line 71836: - if (CONTROLS::IS_CONTROL_JUST_PRESSED(2, 201) || CONTROLS::IS_CONTROL_JUST_PRESSED(2, 237)) { - GRAPHICS::BEGIN_SCALEFORM_MOVIE_METHOD(l_46, "SET_INPUT_EVENT_SELECT"); - l_45 = GRAPHICS::_END_SCALEFORM_MOVIE_METHOD_RETURN(); - } - if (GRAPHICS::IS_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_READY(l_45)) { - v_13 = GRAPHICS::GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT(l_45); - if (v_13 == 6) { - sub_73269(a_0); - } - } - ``` - - The return value of this native: `EndScaleformMovieMethodReturn` - Returns true if the return value of a scaleform function is ready to be collected - - - - Occurrences in the b617d scripts: - "ARMY_GUARD", - "ARMY_HELI", - "BLIMP", - "Cinema_Downtown", - "Cinema_Morningwood", - "Cinema_Textile", - "City_Banks", - "Countryside_Banks", - "DEALERSHIP", - "KORTZ_SECURITY", - "LSA_Planes", - "MP_POLICE", - "Observatory_Bikers", - "POLICE_POUND1", - "POLICE_POUND2", - "POLICE_POUND3", - "POLICE_POUND4", - "POLICE_POUND5", - "Rampage1", - "SANDY_PLANES", - "SCRAP_SECURITY", - "SEW_MACHINE", - "SOLOMON_GATE" - Sometimes used with DOES_SCENARIO_GROUP_EXIST: - if (AI::DOES_SCENARIO_GROUP_EXIST("Observatory_Bikers") && (!AI::IS_SCENARIO_GROUP_ENABLED("Observatory_Bikers"))) { - else if (AI::IS_SCENARIO_GROUP_ENABLED("BLIMP")) { - - - - - Occurrences in the b617d scripts: - "PROP_HUMAN_SEAT_CHAIR", - "WORLD_HUMAN_DRINKING", - "WORLD_HUMAN_HANG_OUT_STREET", - "WORLD_HUMAN_SMOKING", - "WORLD_MOUNTAIN_LION_WANDER", - "WORLD_HUMAN_DRINKING" - Sometimes used together with GAMEPLAY::IS_STRING_NULL_OR_EMPTY in the scripts. - scenarioType could be the same as scenarioName, used in for example AI::TASK_START_SCENARIO_AT_POSITION. - - - - - In drunk_controller.c4, sub_309 - if (CAM::_C912AF078AF19212()) { - CAM::_1C9D7949FA533490(0); - } - What does "IS_SCRIPT_GLOBAL_SHAKING" mean..? :/ Is this a hash collision? - - - - - In drunk_controller.c4, sub_309 - if (CAM::_C912AF078AF19212()) { - CAM::_1C9D7949FA533490(0); - } - What does "IS_SCRIPT_GLOBAL_SHAKING" mean..? :/ Is this a hash collision? - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Returns whether or not SEETHROUGH is active. - - - - - Some events that i found, not sure about them, but seems to have logic based on my tests: - '82 - dead body - '86 - '87 - '88 - shooting, fire extinguisher in use - '89 - '93 - ped using horn - '95 - ped receiving melee attack - '102 - living ped receiving shot - '104 - player thrown grenade, tear gas, smoke grenade, jerry can dropping gasoline - '105 - melee attack against veh - '106 - player running - '108 - vehicle theft - '112 - melee attack - '113 - veh rollover ped - '114 - dead ped receiving shot - '116 - aiming at ped - '121 - Here is full dump of shocking event types from the exe camx.me/gtav/tasks/shockingevents.txt - - - - - Determines whether there is a sniper bullet within the specified coordinates. The coordinates form a rectangle. - - - - - This function is hard-coded to always return 0. - - - - - if(_IS_SOCIALCLUB_BANNED() == 0) means the player is social club banned - - - - - Returns true when the srl from BeginSrl is loaded. - - - A boolean once BeginSrl srl is loaded. - - - - **Experimental**: This native may be altered or removed in future versions of CitizenFX without warning. - Returns whether an asynchronous streaming file registration completed. - - The file name to check, for example `asset.ydr`. - Whether or not the streaming file has been registered. - - - - Returns true if a synchronized scene is running - - - - - Return whether tennis mode is active or not. - - - - - Returns whether or not the text chat (MULTIPLAYER_CHAT Scaleform component) is active. - - - - - Returns true if the model is motorcycle or bycicle. - - - - - To check if the model is an amphibious car, see gtaforums.com/topic/717612-v-scriptnative-documentation-and-research/page-33#entry1069317363 (for build 944 and above only!) - - - - - Checks if model is a boat, then checks for FLAG_IS_JETSKI. - @whoever named this _IS_THIS_MODEL_AN_EMERGENCY_BOAT: please do some tests before naming natives, thanks. - - - - - Checks if model is a boat, then checks for FLAG_IS_JETSKI. - @whoever named this _IS_THIS_MODEL_AN_EMERGENCY_BOAT: please do some tests before naming natives, thanks. - - - - - Checks if model is a boat, then checks for FLAG_IS_JETSKI. - @whoever named this _IS_THIS_MODEL_AN_EMERGENCY_BOAT: please do some tests before naming natives, thanks. - - - - - Returns true if the two times are equal; otherwise returns false. - - - - - Returns true if the two times are equal; otherwise returns false. - - - - - Subtracts the second argument from the first, then returns whether the result is negative. - - - - - Subtracts the second argument from the first, then returns whether the result is negative. - - - - - Subtracts the first argument from the second, then returns whether the result is negative. - - - - - Subtracts the first argument from the second, then returns whether the result is negative. - - - - - returns whether or not a ped is visible within your FOV, not this check auto's to false after a certain distance. - Target needs to be tracked.. won't work otherwise. - - - - - Return if interior is valid. - - - - - p1 is false almost always. - However, in launcher_carwash/carwash1/carwash2 scripts, p1 is true and is accompanied by DOES_VEHICLE_HAVE_ROOF - - - - - Scripts verify that towTruck is the first parameter, not the second. - - - - - Public Function isVehicleAttachedToTrailer(vh As Vehicle) As Boolean - Return Native.Function.Call(Of Boolean)(Hash.IS_VEHICLE_ATTACHED_TO_TRAILER, vh) - End Function - - - - - Appears to return true if the vehicle has any damage, including cosmetically. - - - - - doorID starts at 0, not seeming to skip any numbers. Four door vehicles intuitively range from 0 to 3. - - - - - doorIndex: - 0 = Front Left Door - 1 = Front Right Door - 2 = Back Left Door - 3 = Back Right Door - 4 = Hood - 5 = Trunk - 6 = Trunk2 - - The vehicle to check. - The index of the door to check. - A bool indiciating if the specified door is fully open on the specified vehicle. - - - - p1 is always 0 in the scripts. - p1 = check if vehicle is on fire - - - - - Only ever used once in decompiled scripts: **am_pi_menu**: - Returns true if the engine is on fire, or if the vehicle engine health is &lt; 0 and it **has been** on fire. - It sometimes doesn't return true when the vehicle engine has been on fire, and has since been fixed. I'm not really sure what the exact conditions are. - This usually returns true even if there are no visible flames yet (engine health > 0). However if you monitor engine health you'll see that it starts decreasing as soon as this returns true. - ``` - if (((ENTITY::DOES_ENTITY_EXIST(Global_1281959) && !ENTITY::IS_ENTITY_DEAD(Global_1281959, 0)) && func_1545(Global_1281959)) && !func_205(PLAYER::PLAYER_ID())) - { - if (VEHICLE::GET_VEHICLE_ENGINE_HEALTH(Global_1281959) > 0f && VEHICLE::GET_IS_VEHICLE_ENGINE_RUNNING(Global_1281959)) - { - bVar0 = true; - } - else - { - bVar0 = false; - } - if (VEHICLE::_0xEC69ADF931AAE0C3(Global_1281959)) // _IS_VEHICLE_ENGINE_ON_FIRE - { - bVar0 = false; - } - } - ``` - - The vehicle to check. - Returns true when the engine of your vehicle is on fire. Returns false if it's not on fire. - - - - Only ever used once in decompiled scripts: **am_pi_menu**: - Returns true if the engine is on fire, or if the vehicle engine health is &lt; 0 and it **has been** on fire. - It sometimes doesn't return true when the vehicle engine has been on fire, and has since been fixed. I'm not really sure what the exact conditions are. - This usually returns true even if there are no visible flames yet (engine health > 0). However if you monitor engine health you'll see that it starts decreasing as soon as this returns true. - ``` - if (((ENTITY::DOES_ENTITY_EXIST(Global_1281959) && !ENTITY::IS_ENTITY_DEAD(Global_1281959, 0)) && func_1545(Global_1281959)) && !func_205(PLAYER::PLAYER_ID())) - { - if (VEHICLE::GET_VEHICLE_ENGINE_HEALTH(Global_1281959) > 0f && VEHICLE::GET_IS_VEHICLE_ENGINE_RUNNING(Global_1281959)) - { - bVar0 = true; - } - else - { - bVar0 = false; - } - if (VEHICLE::_0xEC69ADF931AAE0C3(Global_1281959)) // _IS_VEHICLE_ENGINE_ON_FIRE - { - bVar0 = false; - } - } - ``` - - The vehicle to check. - Returns true when the engine of your vehicle is on fire. Returns false if it's not on fire. - - - - Returns whether the specified vehicle is currently in a burnout. - vb.net - Public Function isVehicleInBurnout(vh As Vehicle) As Boolean - Return Native.Function.Call(Of Boolean)(Hash.IS_VEHICLE_IN_BURNOUT, vh) - End Function - - - - - garageName example "Michael - Beverly Hills" - For a full list, see here: pastebin.com/73VfwsmS - - - - - Returns whether or not the vehicle has a CVehicleStreamRequestGfx that's trying to load mods. - True if it isn't loading mods, false if it is. - - - - - Returns whether or not the vehicle has a CVehicleStreamRequestGfx that's trying to load mods. - True if it isn't loading mods, false if it is. - - - - - indices: - 0 = Left - 1 = Right - 2 = Front - 3 = Back - - - - - Returns true if the id is non zero. - - - - - Public Function isVehicleOnAllWheels(vh As Vehicle) As Boolean - Return Native.Function.Call(Of Boolean)(Hash.IS_VEHICLE_ON_ALL_WHEELS, vh) - End Function - - - - - Possibly: Returns whether the searchlight (found on police vehicles) is toggled on. - - - - - Has an additional BOOL parameter since version [???]. - Check if a vehicle seat is free. - -1 being the driver seat. - Use GET_VEHICLE_MAX_NUMBER_OF_PASSENGERS(vehicle) - 1 for last seat index. - - - - - Checks for FLAG_NO_RESPRAY - - - - - Checks for FLAG_NO_RESPRAY - - - - - MulleDK19: Returns true if the vehicle's speed is equal to, or less than 0.02 meters per second, or 0.05 meters per second, if the vehicle's handbrake is engaged. - - - - - is this for red lights only? more testing required. - - - - - p1 can be anywhere from 0 to 3 in the scripts. p2 is generally somewhere in the 1000 to 10000 range. - - - - - wheelID used for 4 wheelers seem to be (0, 1, 4, 5) - completely - is to check if tire completely gone from rim. - '0 = wheel_lf / bike, plane or jet front - '1 = wheel_rf - '2 = wheel_lm / in 6 wheels trailer, plane or jet is first one on left - '3 = wheel_rm / in 6 wheels trailer, plane or jet is first one on right - '4 = wheel_lr / bike rear / in 6 wheels trailer, plane or jet is last one on left - '5 = wheel_rr / in 6 wheels trailer, plane or jet is last one on right - '45 = 6 wheels trailer mid wheel left - '47 = 6 wheels trailer mid wheel right - - - - - must be called after TRACK_VEHICLE_VISIBILITY - it's not instant so probabilly must pass an 'update' to see correct result. - - - - - Gets whether the world point the calling script is registered to is within desired range of the player. - - - - - MulleDK19: This function is hard-coded to always return 0. - - - - - When I called this with what the script was doing, which was -190f for yaw pitch and roll, all my car did was jitter a little. I also tried 0 and 190f. I altered the p1 variable between TRUE and FALSE and didn't see a difference. - This might have something to do with the physbox of the vehicle, but I'm not sure. - - - - - hash collision - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - 1 - - - - - Loads all path nodes. - If keepInMemory is true, all path nodes will be loaded and be kept in memory; otherwise, all path nodes will be loaded, but unloaded as the game sees fit. - - MulleDK19. - August 29, 2017: This native has been removed in v1180. - - - - - Load interior - - - - - Load interior - - - - - Loads "common:/data/missioncreatordata" data and sets some values. - - - - - Loads "common:/data/missioncreatordata" data and sets some values. - - - - - This loads the GTA:O dlc map parts (high end garages, apartments). - Works in singleplayer. - In order to use GTA:O heist IPL's you have to call this native with the following params: _9BAE5AD2508DF078(1); - console hash: 0xC65586A9 - - - - - Reads the contents of a text file in a specified resource. - If executed on the client, this file has to be included in `files` in the resource manifest. - Example: `local data = LoadResourceFile("devtools", "data.json")` - - The resource name. - The file in the resource. - The file contents - - - - Rope presets can be found in the gamefiles. One example is "ropeFamily3", it is NOT a hash but rather a string. - - - - - Example: - AUDIO::LOAD_STREAM("CAR_STEAL_1_PASSBY", "CAR_STEAL_1_SOUNDSET"); - All found occurrences in the b678d decompiled scripts: pastebin.com/3rma6w5w - Stream names often ends with "_MASTER", "_SMALL" or "_STREAM". Also "_IN", "_OUT" and numbers. - soundSet is often set to 0 in the scripts. These are common to end the soundSets: "_SOUNDS", "_SOUNDSET" and numbers. - - - - - Example: - AUDIO::LOAD_STREAM_WITH_START_OFFSET("STASH_TOXIN_STREAM", 2400, "FBI_05_SOUNDS"); - Only called a few times in the scripts. - - - - - Loads specified video sequence into the TV Channel - TV_Channel ranges from 0-2 - VideoSequence can be any of the following: - "PL_STD_CNT" CNT Standard Channel - "PL_STD_WZL" Weazel Standard Channel - "PL_LO_CNT" - "PL_LO_WZL" - "PL_SP_WORKOUT" - "PL_SP_INV" - Jay Norris Assassination Mission Fail - "PL_SP_INV_EXP" - Jay Norris Assassination Mission Success - "PL_LO_RS" - Righteous Slaughter Ad - "PL_LO_RS_CUTSCENE" - Righteous Slaughter Cut-scene - "PL_SP_PLSH1_INTRO" - "PL_LES1_FAME_OR_SHAME" - "PL_STD_WZL_FOS_EP2" - "PL_MP_WEAZEL" - Weazel Logo on loop - "PL_MP_CCTV" - Generic CCTV loop - Restart - 0=video sequence continues as normal - 1=sequence restarts from beginning every time that channel is selected - - - - - Loads specified video sequence into the TV Channel - TV_Channel ranges from 0-2 - VideoSequence can be any of the following: - "PL_STD_CNT" CNT Standard Channel - "PL_STD_WZL" Weazel Standard Channel - "PL_LO_CNT" - "PL_LO_WZL" - "PL_SP_WORKOUT" - "PL_SP_INV" - Jay Norris Assassination Mission Fail - "PL_SP_INV_EXP" - Jay Norris Assassination Mission Success - "PL_LO_RS" - Righteous Slaughter Ad - "PL_LO_RS_CUTSCENE" - Righteous Slaughter Cut-scene - "PL_SP_PLSH1_INTRO" - "PL_LES1_FAME_OR_SHAME" - "PL_STD_WZL_FOS_EP2" - "PL_MP_WEAZEL" - Weazel Logo on loop - "PL_MP_CCTV" - Generic CCTV loop - Restart - 0=video sequence continues as normal - 1=sequence restarts from beginning every time that channel is selected - - - - - Loads a User-Generated Content (UGC) file. These files can be found in "[GTA5]\data\ugc" and "[GTA5]\common\patch\ugc". They seem to follow a naming convention, most likely of "[name]_[part].ugc". See example below for usage. - Returns whether or not the file was successfully loaded. - Example: - DATAFILE::_LOAD_UGC_FILE("RockstarPlaylists") // loads "rockstarplaylists_00.ugc" - - - - - Locks the minimap to the specified angle in integer degrees. - angle: The angle in whole degrees. If less than 0 or greater than 360, unlocks the angle. - - - - - Locks the minimap to the specified world position. - - - - - Not present in retail version of the game, actual definiton seems to be - _LOG_DEBUG_INFO(char* category, char* debugText); - - - - - Not present in retail version of the game, actual definiton seems to be - _LOG_DEBUG_INFO(char* category, char* debugText); - - - - - is this like setting is as no longer needed? - - - - - Sets the water height for a given position and radius. - - - - - For move the finger of player, the value of int goes 1 at 5. - - - - - 2 matches in 1 script - Used in multiplayer scripts? - - - - - if ((NETWORK::_597F8DBA9B206FC7() > 0) && DATAFILE::_01095C95CD46B624(0)) { - v_10 = DATAFILE::_GET_ROOT_OBJECT(); - v_11 = DATAFILE::_OBJECT_VALUE_GET_INTEGER(v_10, "pt"); - sub_20202(2, v_11); - a_0 += 1; - } else { - a_0 += 1; - } - - - - - some camera effect that is (also) used in the drunk-cheat, and turned off (by setting it to 0.0) along with the shaking effects once the drunk cheat is disabled. Possibly a cinematic or script-cam version of _0x487A82C650EB7799 - - - - - Found in the scripts: - GAMEPLAY::_02DEAAC8F8EA7FE7(""); - - - - - **This native does absolutely nothing, just a nullsub** - - - - - 2 calls in the b617d scripts. This line is called 2 times: - AUDIO::_031ACB6ABA18C729("RADIO_16_SILVERLAKE", "MIRRORPARK_LOCKED"); - Note: Another name for RADIO_16_SILVERLAKE is RADIO MIRROR PARK - - - - - Found in the b617d scripts, duplicates removed: - AUDIO::_044DBAD7A7FA2BE5("V_CARSHOWROOM_PS_WINDOW_UNBROKEN", "V_CARSHOWROOM_PS_WINDOW_BROKEN"); - AUDIO::_044DBAD7A7FA2BE5("V_CIA_PS_WINDOW_UNBROKEN", "V_CIA_PS_WINDOW_BROKEN"); - AUDIO::_044DBAD7A7FA2BE5("V_DLC_HEIST_APARTMENT_DOOR_CLOSED", "V_DLC_HEIST_APARTMENT_DOOR_OPEN"); - AUDIO::_044DBAD7A7FA2BE5("V_FINALEBANK_PS_VAULT_INTACT", "V_FINALEBANK_PS_VAULT_BLOWN"); - AUDIO::_044DBAD7A7FA2BE5("V_MICHAEL_PS_BATHROOM_WITH_WINDOW", "V_MICHAEL_PS_BATHROOM_WITHOUT_WINDOW"); - - - - - p0 was always 0xAE2602A3. - - - - - Dr. Underscore (1/6/18): - Seems to return a value 0-2. - - - - - x360 Hash: 0x4AF0ADF5 - - - - - Dr. Underscore (1/6/18): - Seems to return a value 0-2. - - - - - SET_PLAYERS_* - - - - - p0 is always false in scripts. - - - - - Not sure what this function does, but it's related to the audio of the local player's vehicle (Considering the surrounding natives, it's probably radio related). - - - - - In agency_heist3b.c4, its like this 90% of the time: - PED::_110F526AB784111F(ped, 0.099); - PED::SET_PED_ENVEFF_SCALE(ped, 1.0); - PED::_D69411AA0CEBF9E9(ped, 87, 81, 68); - PED::SET_ENABLE_PED_ENVEFF_SCALE(ped, 1); - and its like this 10% of the time: - PED::_110F526AB784111F(ped, 0.2); - PED::SET_PED_ENVEFF_SCALE(ped, 0.65); - PED::_D69411AA0CEBF9E9(ped, 74, 69, 60); - PED::SET_ENABLE_PED_ENVEFF_SCALE(ped, 1); - - - - - SET_TEXT_??? - Used in golf and golf_mp - - - - - Found in the scripts: - GAMEPLAY::_11B56FBBF7224868("CONTRAILS"); - - - - - console hash: 0x883DAB2D - - - - - **This native does absolutely nothing, just a nullsub** - - - - - p0 is usually 0. sometimes 2. Not sure what this does. - - - - - Only used in the golf and golf_mp script - - - - - Hardcoded to only work in multiplayer. - - - - - Returns some kind of banned state - - - - - Enables frontend (works in custom frontends, not sure about regular pause menu) navigation keys on keyboard if they were disabled using the native below. - To disable the keys, use [`0xEC9264727EEC0F28`](#_0xEC9264727EEC0F28). - - - - - **This native does absolutely nothing, just a nullsub** - - - - - Displays loading screen tips, requires `_0x56C8B608CFD49854` to be called beforehand. - - - - - gets some camera far clip - - - - - only documented params - dont know what this does.... To Be Continued... - - - - - 3 calls in the b617d scripts, removed duplicate. - AUDIO::_1654F24A88A8E3FE("RADIO_16_SILVERLAKE"); - AUDIO::_1654F24A88A8E3FE("RADIO_01_CLASS_ROCK"); - - - - - Dr. Underscore (1/6/18): - Seems to return a value 0-2. - - - - - only documented to be continued... - - - - - Related to displaying cash on the HUD - Always called before UI::_SET_SINGLEPLAYER_HUD_CASH in decompiled scripts - - - - - Related to notification color flashing, setting p0 to 0 invalidates a `_SET_NOTIFICATION_FLASH_COLOR` call for the target notification. - ``` - var uVar0; - var uVar1; - var uVar2; - var uVar3; - int iVar4; - iVar4 = 1; - - UI::GET_HUD_COLOUR(1, &uVar0, &uVar1, &uVar2, &uVar3); - UI::_SET_NOTIFICATION_FLASH_COLOR(uVar0, uVar1, uVar2, uVar3); - UI::_0x17AD8C9706BDD88A(iVar4); - UI::_SET_NOTIFICATION_TEXT_ENTRY("RSMAN_N"); - UI::_DRAW_NOTIFICATION_2(1, 1); - ``` - - - - - RELEASE_??? - I say RELEASE_???, as in IDA this native calls the same function as - -'RELEASE_MISSION_AUDIO_BANK()'. - -'RELEASE_AMBIENT_AUDIO_BANK()'. - -'RELEASE_SCRIPT_AUDIO_BANK()'. - However 'RELEASE_NAMED_SCRIPT_AUDIO_BANK' does not use the same function. So may be, 'RELEASE_???_AUDIO_BANK()'? Doubt it. - - - - - Seems to return the current type of view - example: // checks if you're currently in first person - if ((CAM::_EE778F8C7E1142E2(CAM::_19CAFA3C87F7C2FF()) == 4) && (!__463_$28ED382849B17AFC())) { - UI::_FDEC055AB549E328(); - UI::_SET_NOTIFICATION_TEXT_ENTRY("REC_FEED_WAR"); - l_CE[0 -- [[1]] ] = UI::_DRAW_NOTIFICATION(0, 1); - } - - - - - SET_ENTITY_* - - - - - Only appears in lamar1 script. - - - - - unk_0xCEA55F4C(uVar3, "AM_ROLLERCOASTER", -1)) - Probably has to do with seeing if they are riding the roller coaster or ferris wheel - NETWORK_IS_PLAYER_??? - - - - - Console Hash: 0x76A9FEB6 - - - - - Dr. Underscore (1/6/18): - Only one instance across all scripts. (maintransition) - May not be a bool, it could be one of these 0-2 values that are returned just about 500 god damn times. - - - - - NETWORK_CAN_R??? or NETWORK_CAN_S??? - - - - - This native is used along with these two natives: [`0xa356990e161c9e65`](https://runtime.fivem.net/doc/reference.html#_0xA356990E161C9E65) and [`0x5ce62918f8d703c7`](https://runtime.fivem.net/doc/reference.html#_0x5CE62918F8D703C7). - This native configures the location, size, rotation, normal height, and the difference ratio between min, normal and max. - All those natives combined they will output something like this: <https://i.imgur.com/TC6cku6.png> - - Grid center x coord. - Grid center y coord. - Grid center z coord. - Not sure, but seems to be the amount of lines top/bottom there are in the grid. -1.0 works best. - Grid rotation (keep between 0.0 and 1.0). - Offset top/bottom (? not sure about this one, seems weird). - Grid width (usually 15.0). - Grid height (usually 15.0). - Not sure, but seems to be the amount of lines left/right there are in the grid. -1.0 works best. - Zoom / scale (higher values = smaller (more) squares) (lower values = bigger (less) squares). - glow intensity / opacity (40.0 is fine for daylight, 15.0 is fine for night time). - The z coord for 'normal' height (white grid lines level). - This is the height difference/margin used for line color changes. 0.2 works fine (normalHeight + 0.2 = yellow, normalHeight - 0.2 = red). - - - - Related to Hao races. - - - - - Console Hash: 0xDF6D5D54 - Name was _GET_PED_TIME_OF_DEATH - ----------------------------------------------------------------- - There is no way this is the correct name. The only time this is called it's compared with the game timer and I used this to test something and noticed when I was killed by no matter what it was my 'Time Of Death' via this native was always 0, but my friends was some random big number like so, 147591. - Retreives [CPed + 15CC] (as of 944) - - - - - Console Hash: 0xDF6D5D54 - Name was _GET_PED_TIME_OF_DEATH - ----------------------------------------------------------------- - There is no way this is the correct name. The only time this is called it's compared with the game timer and I used this to test something and noticed when I was killed by no matter what it was my 'Time Of Death' via this native was always 0, but my friends was some random big number like so, 147591. - Retreives [CPed + 15CC] (as of 944) - - - - - Unsure about the use of this native but here's an example: - void sub_8709() { - GAMEPLAY::_1EAE0A6E978894A2(0, 1); - GAMEPLAY::_1EAE0A6E978894A2(1, 1); - GAMEPLAY::_1EAE0A6E978894A2(2, 1); - GAMEPLAY::_1EAE0A6E978894A2(3, 1); - GAMEPLAY::_1EAE0A6E978894A2(4, 1); - GAMEPLAY::_1EAE0A6E978894A2(5, 1); - GAMEPLAY::_1EAE0A6E978894A2(6, 1); - GAMEPLAY::_1EAE0A6E978894A2(7, 1); - GAMEPLAY::_1EAE0A6E978894A2(8, 1); - } - So it appears that p0 ranges from 0 to 8. - ENABLE_DISPATCH_SERVICE, seems to have a similar layout. - - - - - -This function appears to be deprecated/ unused. Tracing the call internally leads to a _nullsub - - first one seems to be a string of a mission name, second one seems to be a bool/toggle - p1 was always 0. - - - - - **This native does absolutely nothing, just a nullsub** - - - - - example - if (UI::IS_HELP_MESSAGE_BEING_DISPLAYED()&&(!UI::_214CD562A939246A())) { - return 0; - } - - - - - Only called once inside main_persitant with the parameters, 0 - - - - - From b617 scripts: - CAM::_21E253A7F8DA5DFB("DINGHY"); - CAM::_21E253A7F8DA5DFB("ISSI2"); - CAM::_21E253A7F8DA5DFB("SPEEDO"); - - - - - SET_TV_??? - - - - - Function.Call(Hash._0x2208438012482A1A, ped, 0, 0); - This makes the ped have faster animations - - - - - Probably the opposite of 0x80E4A6EDDB0BE8D9 / LOAD_ALL_PATH_NODES - - - - - Probably GET_VEHICLE_SOMETHING - - Returns a BOOL - - - - **This native does absolutely nothing, just a nullsub** - - - - - Dr. Underscore (1/6/18): - Found only in all creator scripts. (fm_capture_creator, fm_deathmatch_creator, fm_lts_creator, fm_mission_controller, fm_race_creator) - Used in-between DRAW_* calls (DRAW_POLY specifically). - - - - - ------------------------ - | Belongs in DLC2 | - ------------------------ - Console Hash: 0x0AF83036 - Only used once in scripts, in maintransition. - maintransition.c4, line ~82432: - if (PED::_7350823473013C02(PLAYER::PLAYER_PED_ID()) && (DECORATOR::_241FCA5B1AA14F75() == 0)) { - g_2542A5 = a_1; // 'g_2542A5' used in 'building_controller.ysc' for IPL stuff? - return 1; - } - Likely used solely for the players ped. The function it's in seems to only be used for initialization/quitting. Called among natives to discard scaleforms, disable frontend, fading in/out, etc. Neighboring strings to some calls include "HUD_JOINING", "HUD_QUITTING". - - - - - p0 is int or bool - - - - - STATS::0x343B27E2(0); - STATS::0x343B27E2(1); - STATS::0x343B27E2(2); - STATS::0x343B27E2(3); - STATS::0x343B27E2(4); - STATS::0x343B27E2(5); - STATS::0x343B27E2(6); - STATS::0x343B27E2(7); - Identical in ingamehud & maintransition. - - - - - spook. - This function calls a function that gets another player stat, although implementation wasn't finished so it can only get your own stat. - Stat value it calls: 0xFC58E972 - - - - - IS_VEHICLE_BUMPER_HANGING_OFF - Not sure what the actual name is but this checks if the bumper of a vehicle is hanging off. It will return true if it is hanging, false if it falls off and false if it is not hanging off. - - - - - 2 matches across 2 scripts. Only showed in appcamera & appmedia. Both were 0. - Dr. Underscore (1/6/18): - I've found a reference in maintransition with 1, plus in appcamera and appmedia. - Takes and returns a bool. - - - - - VEHICLE::_2A8F319B392E7B3F(vehicle, 0.5); - - - - - if (ENTITY::DOES_ENTITY_EXIST(l_228)) { - CAM::_2AED6301F67007D5(l_228); - - - - - Seems to always return 0 from what I can tell. I've tried a lot of different blip related natives and it always seems to return 0. - Decompiled scripts always pass a blip handle as p0. - ``` - // freemode.c - if (HUD::DOES_BLIP_EXIST(Global_2415594[iParam0])) - { - if (HUD::_0x2C173AE2BDB9385E(Global_2415594[iParam0]) != 0) - { - return 1; - } - } - ``` - - The blip to check. - Seems to always return 0 from what I can tell. I've tried a lot of different blip related natives and it always seems to return 0. - - - - SET_ENTITY_* - - - - - Appears to return whether the player is using the pause menu store. Can't be sure though. - - - - - only documented. to be continued... - - - - - Used with radios: - void sub_cf383(auto _a0) { - if ((a_0)==1) { - if (GAMEPLAY::IS_BIT_SET((g_240005._f1), 3)) { - PLAYER::_2F7CEB6520288061(0); - AUDIO::SET_AUDIO_FLAG("AllowRadioDuringSwitch", 0); - AUDIO::SET_MOBILE_PHONE_RADIO_STATE(0); - AUDIO::SET_AUDIO_FLAG("MobileRadioInGame", 0); - } - sub_cf3f6(1); - } else { - if (GAMEPLAY::IS_BIT_SET((g_240005._f1), 3)) { - PLAYER::_2F7CEB6520288061(1); - AUDIO::SET_AUDIO_FLAG("AllowRadioDuringSwitch", 1); - AUDIO::SET_MOBILE_PHONE_RADIO_STATE(1); - AUDIO::SET_AUDIO_FLAG("MobileRadioInGame", 1); - } - sub_cf3f6(0); - } - } - SET_PLAYER_S* - - - - - NETWORK_IS_IN_??? - - - - - **This native does absolutely nothing, just a nullsub** - - - - - p8 seems to always be false. - - - - - From the decompiled scripts, called 61 times: - UI::_317EBA71D7543F52(&v_13, &v_13, &v_3, &v_3); - - - - - Stops loading screen tips shown by invoking either `_0x488043841BBE156F` or `_0x15CFA549788D35EF` - - - - - calculates two distances - - - - - 6,000+ calls from scripts, all with either 0 or 1 for p2, that's a boolean in my book - --- - ^ The last one is the componentId - iVar8 = dlc1::get_hash_name_for_component(iParam0, 8, ped::get_ped_drawable_variation(iParam0, 8), ped::get_ped_texture_variation(iParam0, 8)); - if (dlc1::_0x341DE7ED1D2A1BFD(iVar8, 240476421, 8)) - - - - - Returns a float value related to slipstream. - - - - - GET_TIME_SINCE_??? - - - - - when player character is used plays remove scuba gear animation - - - - - NETWORK_IS_TRANSITION_??? - - - - - I've had this return the player's ped handle sometimes, but also other random entities. - Whatever p0 is, it's at least not synced to other players. - At least not all the time, some p0 values actually output the same entity, (different handle of course, but same entity). - But another p0 value may return an entity for player x, but not for player y (it'll just return -1 even if the entity exists on both clients). - - unknown. - Returns an entity handle or -1, value changes based on p0's value. - - - - Sets profile setting 934 - - - - - Returns true if an unk value is greater than 0.0f - - - - - from extreme3.c4 - PED::_39D55A620FCB6A3A(PLAYER::PLAYER_PED_ID(), 8, PED::GET_PED_DRAWABLE_VARIATION(PLAYER::PLAYER_PED_ID(), 8), PED::GET_PED_TEXTURE_VARIATION(PLAYER::PLAYER_PED_ID(), 8)); - p1 is probably componentId - - - - - Used in carsteal3 script with p0 = "Carsteal4_spycar". - - - - - 1 match in 1 script. cellphone_controller. - p0 is -1 in scripts. - Dr. Underscore (1/6/18): - I have two uses in two scripts; and it's called with -1 in maintransition, not cellphone_controller. Are you using x360 scripts, or an older version of PC scripts? - Also returns bool. - - - - - p0 was always 2 in R* scripts. - Called before calling DISPLAY_ONSCREEN_KEYBOARD if the input needs to be saved. - - - - - Usage: INTERIOR::_0x405DC2AEF6AF95B9(INTERIOR::GET_KEY_FOR_ENTITY_IN_ROOM(PLAYER::PLAYER_PED_ID())); - - - - - Console Hash: 0x9F82917F - - - - - if (!ENTITY::DOES_ENTITY_BELONG_TO_THIS_SCRIPT(g_10A5A._f8B[a_0 -- [[1]] ], 1)) { - sub_20af7("No longer needed: Vehicle owned by other script"); - if ((((a_0 == 24) && (!sub_3a04(g_10A5A._f8B[a_0 -- [[1]] ]))) && (!sub_39c9(g_10A5A._f8B[a_0 -- [[1]] ]))) && (ENTITY::GET_ENTITY_MODEL(g_10A5A._f8B[a_0 -- [[1]] ]) != ${monster})) { - VEHICLE::_428BACCDF5E26EAD(g_10A5A._f8B[a_0 -- [[1]] ], 1); - } - g_10A5A._f8B[a_0 -- [[1]] ] = 0; - g_10A5A[a_0 -- [[1]] ] = 1; - sub_20ada(a_0); - return ; - } - - - - - LOD related - - - - - sfink: related to: NETWORK_BAIL - NETWORK_BAIL_TRANSITION - NETWORK_JOIN_GROUP_ACTIVITY - NETWORK_JOIN_TRANSITION - NETWORK_LAUNCH_TRANSITION - NETWORK_SESSION_HOST - NETWORK_SESSION_HOST_CLOSED - NETWORK_SESSION_HOST_FRIENDS_ONLY - NETWORK_SESSION_HOST_SINGLE_PLAYER - NETWORK_SESSION_VOICE_LEAVE - - - - - yoga.ysc - if (PED::IS_PED_WEARING_HELMET(iParam0) && PED::_0x451294E859ECC018(iParam0) != -1) - { - *uParam2 = PED::_0x451294E859ECC018(iParam0); - *uParam3 = PED::_0x9D728C1E12BF5518(iParam0); - } - - - - - NOTE: 'p2' might be some kind of array. - - - - - This has been found in use in the decompiled files. - - - - - Checks if the specified unknown flag is set in the ped's model. - The engine itself seems to exclusively check for flags 1 and 4 (Might be inlined code of the check that checks for other flags). - Game scripts exclusively check for flags 1 and 4. - - - - - Dr. Underscore (1/6/18): - Possibly some unknown structures. - - - - - Displays loading screen tips, requires `_0x56C8B608CFD49854` to be called beforehand. - - - - - Only found 3 times in decompiled scripts. Not a whole lot to go off of. - GAMEPLAY::_48F069265A0E4BEC(a_0, "Movie_Name_For_This_Player"); - GAMEPLAY::_48F069265A0E4BEC(&a_0._fB, "Ringtone_For_This_Player"); - GAMEPLAY::_48F069265A0E4BEC(&a_0._f1EC4._f12[v_A -- [[6]] ], &v_13); // where v_13 is "MPATMLOGSCRS0" thru "MPATMLOGSCRS15" - - - - - example: - if (!((v_7)==UI::_4A9923385BDB9DAD())) { - UI::SET_BLIP_SPRITE((v_6), (v_7)); - } - This function is hard-coded to always return 1. - - - - - Seems to call GET_PAUSED_MAP_STREAMING_REQUEST lol wtf - seg001:000000000158C324 sub_158C324: # DATA XREF: OPD:stru_1C29978o - seg001:000000000158C324 - seg001:000000000158C324 .set arg_10, 0x10 - seg001:000000000158C324 - seg001:000000000158C324 mflr r0 - seg001:000000000158C328 bl sub_1803774 - seg001:000000000158C32C stdu r1, -0x80(r1) - seg001:000000000158C330 std r0, 0x80+arg_10(r1) - seg001:000000000158C334 mr r31, r3 - seg001:000000000158C338 lwz r3, 8(r31) - seg001:000000000158C33C addic r4, r3, 4 - seg001:000000000158C340 addic r5, r3, 0x10 - seg001:000000000158C344 addic r7, r3, 0x20 - seg001:000000000158C348 lwz r6, 0(r3) - seg001:000000000158C34C lfs f1, 0x1C(r3) - seg001:000000000158C350 lwz r8, 0x2C(r3) - seg001:000000000158C354 extsw r3, r6 - seg001:000000000158C358 extsw r8, r8 - seg001:000000000158C35C bl GET_PAUSED_MAP_STREAMING_REQUEST - seg001:000000000158C360 lwz r4, 0(r31) - seg001:000000000158C364 stw r3, 0(r4) - seg001:000000000158C368 addi r1, r1, 0x80 - seg001:000000000158C36C b loc_18037D8 - sorta makes sense though since the one above this native and GET_PAUSED_MAP_STREAMING_REQUEST are used together often in scripts - - - - - Only used once in the entire game scripts, probably useless. Always returns 0. - - - - - This function is hard-coded to always return 1. - - - - - Something like flush_all_scripts - Most of time comes after NETWORK_END_TUTORIAL_SESSION() or before TERMINATE_THIS_THREAD() - - - - - **This native does absolutely nothing, just a nullsub** - - - - - Examples: - AUDIO::_4E404A9361F75BB2("RADIO_01_CLASS_ROCK", "END_CREDITS_KILL_MICHAEL", 1); - AUDIO::_4E404A9361F75BB2("RADIO_01_CLASS_ROCK", "END_CREDITS_KILL_MICHAEL", 1); - AUDIO::_4E404A9361F75BB2("RADIO_01_CLASS_ROCK", "END_CREDITS_KILL_TREVOR", 1); - AUDIO::_4E404A9361F75BB2("RADIO_01_CLASS_ROCK", "END_CREDITS_SAVE_MICHAEL_TREVOR", 1); - AUDIO::_4E404A9361F75BB2("RADIO_01_CLASS_ROCK", "OFF_ROAD_RADIO_ROCK_LIST", 1); - AUDIO::_4E404A9361F75BB2("RADIO_06_COUNTRY", "MAGDEMO2_RADIO_DINGHY", 1); - AUDIO::_4E404A9361F75BB2("RADIO_16_SILVERLAKE", "SEA_RACE_RADIO_PLAYLIST", 1); - AUDIO::_4E404A9361F75BB2("RADIO_01_CLASS_ROCK", "OFF_ROAD_RADIO_ROCK_LIST", 1); - - - - - **This native does absolutely nothing, just a nullsub** - - - - - The "disabled" variant of _0x5B84D09CEC5209C5. - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - console hash: 0x004926A3 - - - - - From the scripts: - GAMEPLAY::_54F157E0336A3822(sub_aa49(a_0), "ForcedStopDirection", v_E); - - - - - DISABLE_* - p0 seems to be Player or int - Dr. Underscore (1/6/18): - p0 is Player. - Called after/near _DISABLE_FIRST_PERSON_CAMERA_THIS_FRAME quite often, but not always. - Also called near DISABLE_CONTROL_ACTION. - - - - - Sets profile setting 935 - - - - - Order of player1 and player2 are not interchangable, it was called for both orders. - - - - - GET_PLAYER_* - Seems to do something with network (?) - PLAYER::_56105E599CAB0EFA(NETWORK::NETWORK_GET_PLAYER_INDEX_FROM_PED(ped)) - - - - - Enables loading screen tips to be be shown (`_0x15CFA549788D35EF` and `_0x488043841BBE156F`), blocks other kinds of notifications from being displayed (at least from current script). Call `0xADED7F5748ACAFE6` to display those again. - - - - - console hash = 0x30F43FE3 - - - - - Jenkins hash: 0x772DA539 - p0 looks like Player or int (found in "am_pi_menu") - Dr. Underscore (1/6/18): - It isn't Player, it is an int. - Only two references anywhere, both in am_pi_menu. - One uses globals, the other one uses a helper function that is passing in the outValue of "STATS::STAT_GET_INT"; I have no clue what is being passed in for the stat hash. - - - - - consoel hash 0xAEB29F98 - - - - - LEADERBOARDS_GET_CACHE_??? - - - - - Has a 3rd param (int) since patch [???]. - - - - - MulleDK19: This function is hard-coded to always return 0. - - - - - Same behavior as GET_LOCAL_PLAYER_AIM_STATE but only used on the PC version. - - - - - may be 0x6CDAA7D2 - sfink: related to: NETWORK_BAIL - NETWORK_BAIL_TRANSITION - NETWORK_JOIN_GROUP_ACTIVITY - NETWORK_JOIN_TRANSITION - NETWORK_LAUNCH_TRANSITION - NETWORK_SESSION_HOST - NETWORK_SESSION_HOST_CLOSED - NETWORK_SESSION_HOST_FRIENDS_ONLY - NETWORK_SESSION_HOST_SINGLE_PLAYER - NETWORK_SESSION_VOICE_LEAVE - - - - - NETWORK_IS_TRANSITION_??? - - - - - One of the first things it does is get the players ped. - Then it calls a function that is used in some tasks and ped based functions. - - - - - Disables some other rendering (internal) - - - - - Dr. Underscore (1/6/18): - Seems to return a value 0-2. - - - - - Seems to return values between -1 and 1 for controls like gas and steering. - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - Only called once in the scripts. - Related to weapon objects. - - - - - **This native does absolutely nothing, just a nullsub** - - - - - This native is used along with these two natives: [`0xa356990e161c9e65`](https://runtime.fivem.net/doc/reference.html#_0xA356990E161C9E65) and [`0x1c4fc5752bcd8e48`](https://runtime.fivem.net/doc/reference.html#_0x1C4FC5752BCD8E48). - This native sets the colors for the golf putting grid. the 'min...' values are for the lower areas that the grid covers, the 'max...' values are for the higher areas that the grid covers, all remaining values are for the 'normal' ground height. - All those natives combined they will output something like this: <https://i.imgur.com/TC6cku6.png> - Old description: - Only called in golf and golf_mp - parameters used are - GRAPHICS::\_0x5CE62918F8D703C7(255, 0, 0, 64, 255, 255, 255, 5, 255, 255, 0, 64); - - red value for the lower level - green value for the lower level - blue value for the lower level - alpha value for the lower level - red value for the normal level - green value for the normal level - blue value for the normal level - alpha value for the normal level - red value for the upper level - green value for the upper level - blue value for the upper level - alpha value for the upper level - - - - longest time being ilde? - - - - - NETWORK_IS_TRANSITION_??? - - - - - example from completionpercentage_controller.ysc.c4 - if (STATS::_5EAD2BF6484852E4()) { - GAMEPLAY::SET_BIT(g_17b95._f20df._ff10, 15); - STATS::_11FF1C80276097ED(0xe9ec4dd1, 200, 0); - } - - - - - SET_PLAYERS_* - - - - - Appears once in "re_dealgonewrong" - - - - - Console Hash: 0x37C388DB - - - - - Something with Social Club or online. - - - - - Unknown. Called after creating a checkpoint (type: 51) in the creators. - - - - - From the scripts: - OBJECT::_616093EC6B139DD9(PLAYER::PLAYER_ID(), ${pickup_portable_package}, 0); - OBJECT::_616093EC6B139DD9(PLAYER::PLAYER_ID(), ${pickup_portable_package}, 0); - OBJECT::_616093EC6B139DD9(PLAYER::PLAYER_ID(), ${pickup_portable_package}, 1); - OBJECT::_616093EC6B139DD9(PLAYER::PLAYER_ID(), ${pickup_portable_package}, 0); - OBJECT::_616093EC6B139DD9(PLAYER::PLAYER_ID(), ${pickup_armour_standard}, 0); - OBJECT::_616093EC6B139DD9(PLAYER::PLAYER_ID(), ${pickup_armour_standard}, 1); - SET_PLAYER_P* - - - - - **This native does absolutely nothing, just a nullsub** - - - - - Used only once (am_mp_property_int) - ped was PLAYER_PED_ID() - - - - - this is lightly associated with the 2 above meaning it accesses a variable that them 2 access also - - - - - possibly called: - ADD_DOOR_EXPERIMENTAL_MATRIX - - - - - Something related to clearing the ped because always used with CLEAR_PED_WETNESS, CLEAR_PED_BLOOD_DAMAGE and RESET_PED_VISIBLE_DAMAGE. - - - - - IS_PLAYER_* - - - - - Something related to vehicle lean? (References CVehicleLeanHelper) - - - - - Normally returns true. Returns false briefly whilst getting into a plane. This is probably a check to see if the ped model and all its components/drawables are properly loaded yet. - - - - - **This native does absolutely nothing, just a nullsub** - - - - - MulleDK19: This function is hard-coded to always return 0. - - - - - example: - if (GAMEPLAY::_684A41975F077262()) { - (a_0) = GAMEPLAY::_ABB2FA71C83A1B72(); - } else { - (a_0) = -1; - } - - - - - p0 seems to be Ped - Dr. Underscore (1/6/18): - Has to do something with vehicles and teams. (same teams don't jack each other out of vehicles?) - - - - - what does it do? - - - - - Called in freemode related scripts but not freemode itself. - - - - - I put the argument as 'playerName' as when it's called in freemode.c TU27 X360 scripts. It's given a var that has GET_PLAYER_NAME stored in it via StringCopy. - - - - - **This native does absolutely nothing, just a nullsub** - - - - - Possible values: - act_cinema - am_mp_carwash_launch - am_mp_carwash_control - am_mp_property_ext - chop - fairgroundHub - launcher_BasejumpHeli - launcher_BasejumpPack - launcher_CarWash - launcher_golf - launcher_Hunting_Ambient - launcher_MrsPhilips - launcher_OffroadRacing - launcher_pilotschool - launcher_Racing - launcher_rampage - launcher_rampage - launcher_range - launcher_stunts - launcher_stunts - launcher_tennis - launcher_Tonya - launcher_Triathlon - launcher_Yoga - ob_mp_bed_low - ob_mp_bed_med - - - - - Console Hash: 0x60E29B78 - - - - - Looks like a cousin of above function _6D6840CEE8845831 as it was found among them. Must be similar - Here are possible values of argument - - "ob_tv" - "launcher_Darts" - - - - - sfink: sets bit in vehicle's structure, used by maintransition, fm_mission_controller, mission_race and a couple of other scripts. see dissassembly: - CVehicle *__fastcall sub_140CDAA10(signed int a1, char a2) - { - CVehicle *result; // rax@1 - result = EntityAsCVehicle(a1); - if ( result ) - { - result->field_886 &= 0xEFu; - result->field_886 |= 16 * (a2 & 1); - } - return result; - } - - - - - Seems to have the same functionality as REGISTER_TEXT_LABEL_TO_SAVE? - GAMEPLAY::_6F7794F28C6B2535(&a_0._f1, "tlPlateText"); - GAMEPLAY::_6F7794F28C6B2535(&a_0._f1C, "tlPlateText_pending"); - GAMEPLAY::_6F7794F28C6B2535(&a_0._f10B, "tlCarAppPlateText"); - "tl" prefix sounds like "Text Label" - - - - - MulleDK19: This function is hard-coded to always return 0. - - - - - This function is hard-coded to always return 1. Крч какая-то хуйня. - - - - - - if (GAMEPLAY::_6FDDF453C0C756EC() || GAMEPLAY::IS_PC_VERSION()) { - - - - - **This native does absolutely nothing, just a nullsub** - - - - - Used in am_mp_property_ext and am_mp_property_int - - - - - If the function fails, returns "Unknown". - Could be task (sequence) name. Needs more research. - - - - - It's 100% an IS_CUTSCENE_* native. - - - - - Probably a bool, returns true if the specified network id is controlled by someone else. - If you have control over the entity corresponding to the netId then this will return false (0); - - The network id for an object or entity. - Probably a bool, returns 1 if you don't have control over the netId entity. - - - - Last named native above this one is `TRACK_VEHICLE_VISIBILITY` and first named native below is `UNCUFF_PED`. - Unknown what it does, couldn't find good examples in the decompiled scripts. - - : - : - : - - - - Appears to be a HIDE_* native. - - - - - NETWORK_CAN_R??? or NETWORK_CAN_S??? - - - - - AUDIO::_733ADF241531E5C2("inTunnel", 1.0); - AUDIO::_733ADF241531E5C2("inTunnel", 0.0); - I do not know as of yet what this does, but this was found in the scripts. - - - - - NETWORK_IS_* - - - - - MulleDK19: This function is hard-coded to always return 0. - - - - - bufferSize is 35 in the scripts. - - - - - Enables drawing some hud components, such as help labels, this frame, when the player is dead. - - - - - 6 calls in the b617d scripts, removed identical lines: - AUDIO::_774BD811F656A122("RADIO_01_CLASS_ROCK", 1); - AUDIO::_774BD811F656A122(AUDIO::GET_RADIO_STATION_NAME(10), 0); - AUDIO::_774BD811F656A122(AUDIO::GET_RADIO_STATION_NAME(10), 1); - - - - - MulleDK19: This function is hard-coded to always return 1. - - - - - p1: "MP_FEMALE_ACTION" found multiple times in the b617d scripts. - Console Hash: 0x83BAE814 - - - - - Normally returns true. Returns false briefly whilst putting on a helmet after getting onto a motorbike. Not sure what that's about. - - - - - Related to cutscene entities. Unsure about the use. - - - - - Draws the sphere typically seen in the GTA:O freemode event, Penned In. Example: [Image](https://images.illusivetea.me/6654p9.png) - - X co-ordinate of the sphere - Y co-ordinate of the sphere - Z co-ordinate of the sphere - Size of the sphere - Color - Color - Color - Opacity from `0.0`-`1.0` - - - - Used for cash gifts - Console Hash - - - - - From the scripts: - AUDIO::_7CDC8C3B89F661B3(PLAYER::PLAYER_PED_ID(), GAMEPLAY::GET_HASH_KEY("PAIGE_PVG")); - AUDIO::_7CDC8C3B89F661B3(PLAYER::PLAYER_PED_ID(), GAMEPLAY::GET_HASH_KEY("TALINA_PVG")); - AUDIO::_7CDC8C3B89F661B3(PLAYER::PLAYER_PED_ID(), GAMEPLAY::GET_HASH_KEY("FEMALE_LOST_BLACK_PVG")); - AUDIO::_7CDC8C3B89F661B3(PLAYER::PLAYER_PED_ID(), GAMEPLAY::GET_HASH_KEY("FEMALE_LOST_WHITE_PVG")); - - - - - what does this native do? - Here's some pseudocode of the internal setter function: - __int64 __fastcall sub_140CD86B4(signed int vehicle, char a2, char a3) - { - char v3; // di@1 - char v4; // bl@1 - __int64 result; // rax@1 - __int16 v6; // cx@3 - v3 = a3; - v4 = a2; - result = GetVehicleAddress(vehicle); - if ( result ) - { - if ( v3 || (v6 = *(_WORD *)(result + 0xDA), (v6 & 0xFu) - 6 <= 1) ) - { - *(_BYTE *)(result + 0x89B) &= 0xDFu; - *(_BYTE *)(result + 0x89B) |= 32 * (v4 & 1); - } - } - return result; - } - Now it's time for you to find out :P - - - - - i found this function just like VEHICLE::TRACK_VEHICLE_VISIBILITY - example: - PED::_0x7D7A2E43E74E2EB8(ped);// TRACK_PED_VISIBILITY - if (PED::IS_TRACKED_PED_VISIBLE(ped)) - { - } - - - - - **This native does absolutely nothing, just a nullsub** - ``` - Something to do with phone cameras. - startup.c4: - void sub_2a3d() { - UNK2::_7E2BD3EF6C205F09("No_Filter", 1); - UNK2::_7E2BD3EF6C205F09("phone_cam1", 1); - UNK2::_7E2BD3EF6C205F09("phone_cam2", 1); - UNK2::_7E2BD3EF6C205F09("phone_cam3", 1); - UNK2::_7E2BD3EF6C205F09("phone_cam4", 1); - UNK2::_7E2BD3EF6C205F09("phone_cam5", 1); - UNK2::_7E2BD3EF6C205F09("phone_cam6", 1); - UNK2::_7E2BD3EF6C205F09("phone_cam7", 1); - UNK2::_7E2BD3EF6C205F09("phone_cam9", 1); - UNK2::_7E2BD3EF6C205F09("phone_cam12", 0); - } - ``` - - - - - _PLAYSTATS_ROB_ARMOURD_TRUCK - - - - - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - gets some camera fov - - - - - UI::_817B86108EB94E51(1, &g_189F36._f10CD1[0 -- [[16]] ], &g_189F36._f10CD1[1 -- [[16]] ], &g_189F36._f10CD1[2 -- [[16]] ], &g_189F36._f10CD1[3 -- [[16]] ], &g_189F36._f10CD1[4 -- [[16]] ], &g_189F36._f10CD1[5 -- [[16]] ], &g_189F36._f10CD1[6 -- [[16]] ], &g_189F36._f10CD1[7 -- [[16]] ]); - - - - - "GET_OBJ_ENTITY" seems highly unlikely. - - - - - Only found 2 times in decompiled scripts. Not a whole lot to go off of. - GAMEPLAY::_8269816F6CFD40F8(&a_0._f1F5A._f6[0 -- [[8]] ], "TEMPSTAT_LABEL"); // gets saved in a struct called "g_SaveData_STRING_ScriptSaves" - GAMEPLAY::_8269816F6CFD40F8(&a_0._f4B4[v_1A -- [[8]] ], &v_5); // where v_5 is "Name0" thru "Name9", gets saved in a struct called "OUTFIT_Name" - - - - - HUD_COLOUR_CONTROLLER_CHOP = 174; - UI::GET_HUD_COLOUR(174, &v_6, &v_7, &v_8, &v_9); - CONTROLS::_8290252FFF36ACB5(0, v_6, v_7, v_8); - - - - - Saves a JSON file? It might even be saving it to the Rockstar Cloud, but I have no way of verifying this - "shrinkletter.c4", line ~378: - DATAFILE::DATAFILE_CREATE(); - v_5 = DATAFILE::_GET_ROOT_OBJECT(); - DATAFILE::_OBJECT_VALUE_ADD_INTEGER(v_5, "in", a_2); - DATAFILE::_OBJECT_VALUE_ADD_STRING(v_5, "st", &a_2._f1); - DATAFILE::_OBJECT_VALUE_ADD_STRING(v_5, "mp", &a_2._f2); - DATAFILE::_OBJECT_VALUE_ADD_STRING(v_5, "ms", &a_2._f3); - DATAFILE::_OBJECT_VALUE_ADD_STRING(v_5, "sc", &a_2._f5); - DATAFILE::_OBJECT_VALUE_ADD_STRING(v_5, "pr", &a_2._f6); - DATAFILE::_OBJECT_VALUE_ADD_STRING(v_5, "fa", &a_2._f7); - DATAFILE::_OBJECT_VALUE_ADD_STRING(v_5, "sm", &a_2._f8); - DATAFILE::_OBJECT_VALUE_ADD_STRING(v_5, "kp", &a_2._f9); - DATAFILE::_OBJECT_VALUE_ADD_STRING(v_5, "sv", &a_2._fA); - DATAFILE::_OBJECT_VALUE_ADD_STRING(v_5, "yo", &a_2._fB); - DATAFILE::_OBJECT_VALUE_ADD_STRING(v_5, "fi", &a_2._fC); - DATAFILE::_OBJECT_VALUE_ADD_STRING(v_5, "rc", &a_2._fD); - DATAFILE::_OBJECT_VALUE_ADD_STRING(v_5, "co", &a_2._fE); - DATAFILE::_OBJECT_VALUE_ADD_INTEGER(v_5, "su", a_2._fF); - DATAFILE::_83BCCE3224735F05("gta5/psych/index.json"); // saves the file? - - - - - sfink: from scripts: - func_720(socialclub::_0x8416FE4E4629D7D7("bIgnoreCheaterOverride")); - func_719(socialclub::_0x8416FE4E4629D7D7("bIgnoreBadSportOverride")); - - - - - MulleDK19: This function is hard-coded to always return 0. - - - - - SET_PED_PATH_* - Could be the move speed on the path. Needs testing. - Default is 1.0 and maximum is 10.0 - - - - - SET_LOCAL_PLAYER_* - - - - - Something to do with time, used in context: - NETWORK::GET_TIME_DIFFERENCE(NETWORK::_89023FBBF9200E9F(), ... ) - sfink: returns the same value as NETWORK::GET_NETWORK_TIME in freemode. - - - - - **This native does absolutely nothing, just a nullsub** - - - - - One call found in the b617d scripts: - AUDIO::_8A694D7A68F8DC38(NETWORK::NET_TO_PED(l_3989._f26F[0 -- [[1]] ]), "CONV_INTERRUPT_QUIT_IT", "LESTER"); - - - - - MulleDK19: This function is hard-coded to always return 0. - - - - - console hash: 0x19EC0001 - - - - - GAMEPLAY::_8D74E26F54B4E5C3(""); - - - - - Example of usage: - v_2 = SCRIPT::_30B4FA1C82DD4B9F(); // int _GET_ID_OF_NEXT_SCRIPT_IN_ENUMERATION() - CUTSCENE::_8D9DF6ECA8768583(v_2); - - - - - Example, only occurrence in the scripts: - UI::_8EFCCF6EC66D85E4(&v_23, &v_13, &v_13, 1, v_34); - - - - - No observed effect. - - - - - Appears only in fm_mission_controller and used only 3 times. - ped was always PLAYER_PED_ID() - p1 was always true - p2 was always true - - - - - SET_GPS_??? - - - - - Dr. Underscore (1/6/18): - Seems to return a value 0-2. - - - - - return bool according to scripts - - - - - bool? - am_crate_drop.c - <...> - if (network::_network_are_ros_available()) - { - if (network::_0x91B87C55093DE351()) - <..> - - - - - Both coordinates are from objects in the decompiled scripts. - Native related to [\_0xECDC202B25E5CF48](#_0xECDC202B25E5CF48) p1 value. The only weapon hash used in the decompiled scripts is weapon_air_defence_gun. These two natives are used by the yacht script, decompiled scripts suggest it and the weapon hash used (valkyrie's rockets) are also used by yachts. - - X coordinate - Y coordinate - Z coordinate - Unknown float 150.0 is used in freemode script. - X coordinate - Y coordinate - Z coordinate - weapon_air_defence_gun and 0 are used in the decompiled scripts. - Seems to be some sort of handle, result is += 1 any time this native is called. - - - - I can 100% confirm this is some kind of START_* native. - Next character in the name is either C, D or E. - Used only once in the scripts (benchmark.ysc). - - - - - Unknown. - Seems to return either 0, 1, or -1. - - - - - MulleDK19: This function is hard-coded to always return 0. - - - - - NETWORK_IS_* - - - - - Needs more research. Possibly used to calculate the "mask" when calling "STAT_SET_MASKED_INT"? - - - - - in the decompiled scripts, seems to be always called on the vehicle right after being attached to a trailer. - - - - - **This native does absolutely nothing, just a nullsub** - - - - - SET_VEHICLE_DOORS_LOCKED_FOR_* - - - - - **This native does absolutely nothing, just a nullsub** - - - - - Example gotten from chinese2.c4 - VEHICLE::_9A75585FB2E54FAD(2004.4471435546875, 3076.806640625, 46.60689926147461, 10.0); - - - - - RELEASE_??? - I say RELEASE_???, as in IDA this native calls the same function as - -'RELEASE_MISSION_AUDIO_BANK()'. - -'RELEASE_AMBIENT_AUDIO_BANK()'. - -'RELEASE_SCRIPT_AUDIO_BANK()'. - However 'RELEASE_NAMED_SCRIPT_AUDIO_BANK' does not use the same function. So may be, 'RELEASE_???_AUDIO_BANK()'? Doubt it. - Console Hash: 0xE67446E9 - - - - - Console Hash: 0x50CDB295 - - - - - Gets some kind of data related to missions like the online player created races n stuff - - - - - Only appeared in Golf & Golf_mp. Parameters were all ptrs - - - - - Found in the b617d scripts: - PED::_9DBA107B4937F809(v_7, "trevor_heist_cover_2h"); - - - - - Only found 4 times in Rockstar scripts. - Clearly has something to do with Cutscenes. - - - - - UI::0x7AD67C95("Gallery"); - UI::0x7AD67C95("Missions"); - UI::0x7AD67C95("General"); - UI::0x7AD67C95("Playlists"); - - - - - Disconnects you from the session, and starts loading single player, however you still remain connected to the server (only if you're the host, if you're not then you also (most likely) get disconnected from the server) and other players will not be able to join until you exit the game. - If you're already in SP then it'll re-load singleplayer. - You might need to DoScreenFadeIn and ShutdownLoadingScreen otherwise you probably won't end up loading into SP at all. - Somewhat related note: opening the pause menu after loading into this 'singleplayer' mode crashes the game. - - always seems to be 1 - - - - MulleDK19: This function is hard-coded to always return 0. - - - - - MulleDK19: This function is hard-coded to always return 1. - - - - - Needs more research. If the "phone_cam12" filter is applied, this function is called with "TRUE"; otherwise, "FALSE". - Example (XBOX 360): - // check current filter selection - if (GAMEPLAY::ARE_STRINGS_EQUAL(getElem(g_2471024, &l_17, 4), "phone_cam12") != 0) - { - MOBILE::_0xC273BB4D(0); // FALSE - } - else - { - MOBILE::_0xC273BB4D(1); // TRUE - } - - - - - This native enables/disables the gold putting grid display (<https://i.imgur.com/TC6cku6.png>). - This requires these two natives to be called as well to configure the grid: [`0x1c4fc5752bcd8e48`](https://runtime.fivem.net/doc/reference.html#_0x1C4FC5752BCD8E48) and [`0x5ce62918f8d703c7`](https://runtime.fivem.net/doc/reference.html#_0x5CE62918F8D703C7). - - Enables or disables the golf putting grid display. - - - - Only called once in the scripts: - if (sub_1abd() && (!PED::_A3F3564A5B3646C0(l_8C))) { - if (sub_52e3("RESNA_CELLR", 0)) { - PED::SET_PED_CAN_PLAY_GESTURE_ANIMS(l_8C, 1); - PED::SET_PED_CAN_PLAY_AMBIENT_ANIMS(l_8C, 1); - PED::SET_PED_CAN_PLAY_VISEME_ANIMS(l_8C, 1, 0); - l_184 += 1; - } - } - - - - - NOTE: 'p1' might be some kind of array. - - - - - Dr. Underscore (1/6/18): - Only one instances in two scripts. (cellphone_controller, maintransition) - - - - - Called 4 times in the b617d scripts: - GAMEPLAY::_A74802FB8D0B7814("CONTRAILS", 0); - - - - - STATS::0xE3247582(0); - STATS::0xE3247582(1); - STATS::0xE3247582(2); - STATS::0xE3247582(3); - STATS::0xE3247582(4); - STATS::0xE3247582(5); - STATS::0xE3247582(6); - - - - - NETWORK_OVERRIDE_??? - - - - - Found in scripts: - if (AI::_A7FFBA498E4AAF67(l_9BC, "Run")) { - if (AI::_A7FFBA498E4AAF67(l_9BC, "Escape")) { - - - - - p1 always false. - - - - - console hash: 0xFD0F7EDD - - - - - This has been found in use in the decompiled files. - - - - - gets 2 floats from the CNetGamePlayer of p0 and stores them in p1 and p2. - Possibly waypoint? - - - - - Displays "normal" notifications again after calling `_0x56C8B608CFD49854` (those that were drawn before calling this native too), though those will have a weird offset and stay on screen forever (tested with notifications created from same script). - - - - - Possible p0 values: - "prologue" - "Prologue_Main" - - - - - Exemple of use(carmod_shop.c4) - INTERIOR::_AF348AFCB575A441("V_CarModRoom"); - - - - - Has something to do with player switch. - Only possible values: - - "CSM_ST_BOX3x3" - - - - - Called in decompiled scripts as alternative to _SET_PED_ENEMY_AI_BLIP in an else, when the additional parameter p3 is not -1 - - - - - 12 matches across 4 scripts. All 4 scripts were job creators. - type ranged from 0 - 2. - p4 was always 0.2f. Likely scale. - assuming p5 - p8 is RGBA, the graphic is always yellow (255, 255, 0, 255). - Tested but noticed nothing. - - - - - This native doesn't seem to do anything, might be a debug-only native. - Confirmed, it is a debug native. - - - - - **This native does absolutely nothing, just a nullsub** - - - - - No observed effect. - - - - - This line found 48 times in the scripts: - GAMEPLAY::_B335F761606DB47C(&v_4, &v_7, a_0, v_A); - - - - - This function is hard-coded to always return 1. - - - - - PLAYER::0xBF6993C7(rPtr((&l_122) + 71)); // Found in decompilation - *** - In "am_hold_up.ysc" used once: - l_8d._f47 = GAMEPLAY::GET_RANDOM_FLOAT_IN_RANGE(18.0, 28.0); - PLAYER::_B45EFF719D8427A6((l_8d._f47)); - - - - - This native is called 3 times in the decompiled scripts. Weapons hashes used are: weapon_railgun, weapon_proxmine and weapon_minigun. - - - - - Found in the b617d scripts, duplicates removed: - AUDIO::_B4BBFD9CD8B3922B("V_CARSHOWROOM_PS_WINDOW_UNBROKEN"); - AUDIO::_B4BBFD9CD8B3922B("V_CIA_PS_WINDOW_UNBROKEN"); - AUDIO::_B4BBFD9CD8B3922B("V_DLC_HEIST_APARTMENT_DOOR_CLOSED"); - AUDIO::_B4BBFD9CD8B3922B("V_FINALEBANK_PS_VAULT_INTACT"); - AUDIO::_B4BBFD9CD8B3922B("V_MICHAEL_PS_BATHROOM_WITH_WINDOW"); - - - - - Only used once in the scripts - weapon::_0xB4C8D77C80C0421E(Local_888[3 -- [[33]] ], -1082130432); - The code following this relates to manually triggering an RPG rocket (creating the object, the particle fx and sound) - - - - - "Can request assets for cutscene entity"? (found in decompiled scripts) - - - - - **This native does absolutely nothing, just a nullsub** - - - - - GRAPHICS::_0xB7ED70C49521A61D(9123); - GRAPHICS::SET_STREAMED_TEXTURE_DICT_AS_NO_LONGER_NEEDED("MPMissMarkers256"); - - - - - Old Gen: 0x47D6004E - Disables something. Used only once in R* scripts (freemode.ysc). - - - - - if (!$B8B52E498014F5B0(PLAYER::PLAYER_PED_ID())) { - - - - - Seem to return bool - Dr. Underscore (1/6/18): - It does return bool. - - - - - Every p2 - p5 occurrence was 0f. - - - - - **This native does absolutely nothing, just a nullsub** - - - - - var num3 = PLAYER::GET_PLAYER_PED(l_2171); // proof l_2171 is a player - var num17 = PLAYER::0x9DF75B2A(l_2171, 100, 0); // l_2171 - .ysc: - if (PLAYER::GET_PLAYER_WANTED_LEVEL(l_6EF) < v_4) { // l_6EF is a player - PLAYER::SET_PLAYER_WANTED_LEVEL(l_6EF, v_4, 0); // l_6EF - PLAYER::SET_PLAYER_WANTED_LEVEL_NOW(l_6EF, 0); // l_6EF - } else { - PLAYER::_4669B3ED80F24B4E(l_6EF); // l_6EF - UI::_BA8D65C1C65702E5(1); - a_0 = 1; - } - if (l_4B24[l_6F2 -- [[156]] ]._f8C != PLAYER::_BC0753C9CA14B506(l_6EF, 100, 0)) { // l_6EF - l_4B24[l_6F2 -- [[156]] ]._f8C = PLAYER::_BC0753C9CA14B506(l_6EF, 100, 0); // l_6EF - } - Both was taken from fm_mission_controller - GET_PLAYER_* - - - - - Most likely ROPE_ATTACH_* - - - - - Seems to only appear in scripts used in Singleplayer. - AI_PHONE_ARGS is a hash collision!!! - Always used like this in scripts - PLAYER::_BC9490CA15AEA8FB(PLAYER::PLAYER_ID()); - - - - - MulleDK19: This function is hard-coded to always return 1. - - - - - This function is hard-coded to always return 0. - - - - - respawn player - - - - - Something to do with timecycles. - - - - - Use _GET_VEHICLE_MOD_DATA for modData - Appears to be a GET_DLC_VEHICLE_MOD_* native. - - - - - same call as VEHICLE::_0x0F3B4D4E43177236 - - - - - Seems to return time in vector3 - - - - - CAM::_C2EAE3FB8CDBED31("SHAKE_CAM_medium", "medium", "", 0.5f); - - - - - - This is called after SET_ALL_RANDOM_PEDS_FLEE_THIS_FRAME - hash collision - 0xc3376f42b1faccc6, 0xd5d0d2853191399c, // set_areas_generator_orientation - - - - - - This is called after SET_ALL_RANDOM_PEDS_FLEE_THIS_FRAME - hash collision - 0xc3376f42b1faccc6, 0xd5d0d2853191399c, // set_areas_generator_orientation - - - - - This seems to edit the water wave, intensity around your current location. - 0.0f = Normal - 1.0f = So Calm and Smooth, a boat will stay still. - 3.0f = Really Intense. - - - - - NETWORK_IS_TRANSITION_??? - - - - - Interesting fact: A hash collision for this is RESET_JETPACK_MODEL_SETTINGS - - - - - Toggles a value (bool) for cutscenes. - - - - - Often called after _REMOVE_LOADING_PROMPT. Unsure what exactly it does, but It references busy_spinner, I can only guess its freeing the busy_spinner scaleform from memory - - - - - Found in "director_mode", "fm_bj_race_controler", "fm_deathmatch_controler", "fm_impromptu_dm_controler", "fm_race_controler", "gb_deathmatch". - - - - - rerere - - - - - Only call found in the b617d scripts: - AUDIO::_CADA5A0D0702381E("BACK", "HUD_FREEMODE_SOUNDSET"); - - - - - Allows opening the pause menu this frame, when the player is dead. - - - - - RESET_* - - - - - p4 seems to vary from 0 to 3. - - - - - **This native does absolutely nothing, just a nullsub** - - - - - Probably SET_VEHICLE_SOMETHING - - - - - what does this do? - - - - - Maybe gets gameplay cam near clip? - - - - - Similar to 0xDDC635D5B3262C56. Enable? - - - - - x360 Hash: 0xF637166E - - - - - SET_TV_??? - - - - - **This native does absolutely nothing, just a nullsub** - - - - - "SwitchHUDFranklinOut", - "SwitchHUDMichaelOut", - "SwitchHUDOut", - "SwitchHUDTrevorOut", - "SwitchOpenFranklinOut", - "SwitchOpenMichaelIn", - "SwitchOpenNeutral" - - - - - 1.0.335.2, 1.0.350.1/2, 1.0.372.2, 1.0.393.2, 1.0.393.4, 1.0.463.1; - - - - - Decompiled scripts have this listed as `FILES::_GET_NUM_DLC_PED_PROPS_UNK`, but that seems wrong. - Has something to do with ped (dlc) helmet props. - This native returns 1/true when the player helmet has a visor (there is another prop index for the same helmet with closed/opened visor variant) that can be toggled, 0/false if there's no alternative version with a visor for this helmet prop. - So something like `_DOES_HELMET_HASH_HAVE_A_VISOR`, anyone that knows the joaat hash? - Decompiled scripts handle this as an int. But the result is always 0 or 1 (after testing every prop hash on freemode peds). So might actually be a bool? - ``` - iVar16 = PED::GET_PED_PROP_INDEX(PLAYER::PLAYER_PED_ID(), 0); - iVar17 = PED::GET_PED_PROP_TEXTURE_INDEX(PLAYER::PLAYER_PED_ID(), 0); - iVar18 = FILES::GET_HASH_NAME_FOR_PROP(PLAYER::PLAYER_PED_ID(), 0, iVar16, iVar17); - if (FILES::_GET_NUM_DLC_PED_PROPS_UNK(iVar18) > 0) // _0xD40AAC51E8E4C663 - { - HUD::BEGIN_TEXT_COMMAND_DISPLAY_HELP("VISOR_TOGGLE"); - HUD::END_TEXT_COMMAND_DISPLAY_HELP(0, 0, true, 6000); - iVar15++; - func_12660(7668, iVar15, -1, 1); - MISC::SET_BIT(&(Global_2512581.f_1710), 24); - } - ``` - - Ped helmet prop hash - This native returns 1 when the player helmet has a visor (there is another prop index for the same helmet with closed/opened visor variant) that can be toggled. 0 if there's no alternative version with a visor for this helmet prop. - - - - Only used like this: - if (VEHICLE::_D4C4642CB7F50B5D(ENTITY::GET_VEHICLE_INDEX_FROM_ENTITY_INDEX(v_3))) { sub_157e9c(g_40001._f1868, 0); - } - - - - - Something related to the environmental effects natives. - In the "agency_heist3b" script, p1 - p3 are always under 100 - usually they are {87, 81, 68}. If SET_PED_ENVEFF_SCALE is set to 0.65 (instead of the usual 1.0), they use {74, 69, 60} - - - - - Only one match in the scripts: - GRAPHICS::_D7021272EB0A451E("int_carrier_hanger"); - - - - - Unloads GROUP_MAP (GTAO/MP) DLC data and loads GROUP_MAP_SP DLC. Neither are loaded by default, 0888C3502DBBEEF5 is a cognate to this function and loads MP DLC (and unloads SP DLC by extension). - The original (and wrong) definition is below: - This unload the GTA:O DLC map parts (like high end garages/apartments). - Works in singleplayer. - console hash: 0x8BF60FC3 - - - - - Unloads GROUP_MAP (GTAO/MP) DLC data and loads GROUP_MAP_SP DLC. Neither are loaded by default, 0888C3502DBBEEF5 is a cognate to this function and loads MP DLC (and unloads SP DLC by extension). - The original (and wrong) definition is below: - This unload the GTA:O DLC map parts (like high end garages/apartments). - Works in singleplayer. - console hash: 0x8BF60FC3 - - - - - 4 matches across 2 scripts. - appcamera: - called after UI::HIDE_HUD_AND_RADAR_THIS_FRAME() and before GRAPHICS::0x108F36CC(); - cellphone_controller: - called after GRAPHICS::0xE9F2B68F(0, 0) and before GRAPHICS::0x108F36CC(); - - - - - In scripts it's used with a var, that is used elsewhere in a check regarding if the given networkHandle is valid. - - - - - Set profile setting 866 - - - - - REQUEST_VEHICLE_* - - - - - Related to locking the vehicle or something similar. - In the decompiled scripts, its always called after - VEHICLE::_SET_EXCLUSIVE_DRIVER(a_0, 0, 0); - VEHICLE::SET_VEHICLE_DOORS_LOCKED_FOR_ALL_PLAYERS(a_0, 1); - VEHICLE::SET_VEHICLE_DOORS_LOCKED_FOR_PLAYER(a_0, PLAYER::PLAYER_ID(), 0); - - - - - probably 0x3461981 on console - - - - - Has something to do with police. - - - - - SET_ENTITY_* - x360 Hash: 0xA0466A69 - Only called within 1 script for x360. 'fm_mission_controller' and it used on an object. - Ran after these 2 natives, - set_object_targettable(uParam0, 0); - set_entity_invincible(uParam0, 1); - - - - - 2 occurrences in agency_heist3a. p1 was 0.7f then 0.4f. - - - - - Tune Backwards... ? - - - - - Similar to 0xD01005D2BA2EB778. Disable? - - - - - Dr. Underscore (1/6/18): - Most references of this native come from the creator scripts. (creator, fm_capture_creator, fm_deathmatch_creator, fm_lts_creator, fm_race_creator). - Seems to have something to do with initializing/destroying creator shit. - - - - - Scripts use 0.2, 0.5 and 1.0. - SET_DRIVER_* - - - - - Outputs 2 Vector3's. - Scripts check if out2.x - out1.x > someshit.x - Could be suspension related, as in max suspension height and min suspension height, considering the natives location. - - - - - p1 always false. - - - - - This function is hard-coded to always return 1. - - - - - Used with IS_LOOK_INVERTED() and negates its affect. - -- - Not sure how the person above got that description, but here's an actual example: - if (CONTROLS::_GET_LAST_INPUT_METHOD(2)) { - if (a_5) { - if (CONTROLS::IS_LOOK_INVERTED()) { - a_3 *= -1; - } - if (CONTROLS::_E1615EC03B3BB4FD()) { - a_3 *= -1; - } - } - } - - - - - REMOTE_VEHICLE_* - - - - - IS_* - - - - - UI::GET_CURRENT_WEBSITE_PAGE_ID(int websiteID) - returns the current website page sometimes returns false - - - - - sets something to 1 - - - - - Sets an unknown value related to timecycles. - - - - - No observed effect. - - - - - GET_VEHICLE_* - - - - - This function is hard-coded to always return 0. - - - - - Vehicle must be a boat. - - - - - **This native does absolutely nothing, just a nullsub** - - - - - MulleDK19: This function is hard-coded to always return 1. - - - - - **This native does absolutely nothing, just a nullsub** - - - - - example from scripts: - unk_0xE0C28DB5(0,Global_2398291.imm_726,1); - that global is for ps3/xbox not pc - no idea what this does does - - - - - SET_PED_* - Has most likely to do with some shooting attributes as it sets the float which is in the same range as shootRate. - - - - - _push_scaleform_movie_function(iLocal_117, "SET_TEXT"); - if (bParam0) - { - _0xEC52C631A1831C03(2); - } - else - { - _0xEC52C631A1831C03(1); - } - _pop_scaleform_movie_function_void(); - - - - - This function is hard-coded to always return 0. - - - - - Disables frontend (works in custom frontends, not sure about regular pause menu) navigation keys on keyboard. Not sure about controller. Does not disable mouse controls. No need to call this every tick. - To enable the keys again, use [`0x14621BB1DF14E2B2`](#_0x14621BB1DF14E2B2). - - - - - Hides the hud element displayed by _0x523A590C1A3CC0D3 - - - - - interprets the result of CAM::_0x19CAFA3C87F7C2FF() - example: // checks if you're currently in first person - if ((CAM::_EE778F8C7E1142E2(CAM::_19CAFA3C87F7C2FF()) == 4) && (!__463_$28ED382849B17AFC())) { - UI::_FDEC055AB549E328(); - UI::_SET_NOTIFICATION_TEXT_ENTRY("REC_FEED_WAR"); - l_CE[0 -- [[1]] ] = UI::_DRAW_NOTIFICATION(0, 1); - } - - - - - Some kind of flags. - - - - - dont know what this native does but im storing some documentation here - _NETWORK_VOICE_CONNECT_TO_PLAYER - _NETWORK_GET_GAMER_STATUS - _NETWORK_HAS_TRANSITION_INVITE_BEEN_ACKED - _NETWORK_SEND_PRESENCE_INVITE - _NETWORK_SEND_PRESENCE_TRANSITION_INVITE - _NETWORK_CHECK_DATA_MANAGER_SUCCEEDED_FOR_HANDLE - _NETWORK_CHECK_DATA_MANAGER_FOR_HANDLE - _NETWORK_CAN_COMMUNICATE_WITH_GAMER - _NETWORK_CRC_HASH_CHECK_EVENT - - - - - Adds some kind of shadow to the vehicle. - - - - - IS_OBJECT_??? - - - - - Only 1 occurrence. p1 was 2. - - - - - Sets profile setting 933 - - - - - LEADERBOARDS2_READ_BY_??? - - - - - 2 calls found in the b617d scripts: - AUDIO::_F1F8157B8C3F171C(l_A42, "Franklin_Bike_Rev", "BIG_SCORE_3A_SOUNDS"); - AUDIO::_F1F8157B8C3F171C(l_166, "Trevor_Revs_Off", "PALETO_SCORE_SETUP_SOUNDS"); - - - - - toggle was always 0 except in one instance (b678). - The one time this is set to true seems to do with when you fail the mission. - - - - - MulleDK19: This function is hard-coded to always return 0. - - - - - MulleDK19: This function is hard-coded to always return 0. - - - - - MulleDK19: This function is hard-coded to always return 1. - - - - - characters - 0: Michael - 1: Franklin - 2: Trevor - 3: MPMale - 4: MPFemale - - - - - Another function related to "HUD scaleforms" - - - - - bufferSize is 35 in the scripts. - - - - - Something to do with shake: - CAM::_F4C8CF9E353AFECA("HAND_SHAKE", 0.2); - - - - - Needs more research. Possibly used to calculate the "mask" when calling "STAT_SET_BOOL_MASKED"? - - - - - This does not move an existing checkpoint... so wtf. - - - - - 3 matches across 3 scripts. First 2 were 0, 3rd was 1. Possibly a bool. - appcamera, appmedia, and cellphone_controller. - - - - - Set profile setting 501 - - - - - Only did a quick disassembly, but this function seems to load all path nodes in the given area. Parameters appear to be start x, start y, end x, end y. - - - - - IS_S* - - - - - p1 was always 1 (true). - Kicks the ped from the current vehicle and keeps the rendering-focus on this ped (also disables its collision). If doing this for your player ped, you'll still be able to drive the vehicle. - Actual name begins with 'S' - - - - - Another unknown label type... - GAMEPLAY::_FAA457EF263E8763(a_0, "Thumb_label"); - GAMEPLAY::_FAA457EF263E8763(&a_0._f10, "Photo_label"); - GAMEPLAY::_FAA457EF263E8763(a_0, "GXTlabel"); - GAMEPLAY::_FAA457EF263E8763(&a_0._f21, "StringComp"); - GAMEPLAY::_FAA457EF263E8763(&a_0._f43, "SecondStringComp"); - GAMEPLAY::_FAA457EF263E8763(&a_0._f53, "ThirdStringComp"); - GAMEPLAY::_FAA457EF263E8763(&a_0._f32, "SenderStringComp"); - GAMEPLAY::_FAA457EF263E8763(&a_0._f726[v_1A -- [[16]] ], &v_20); // where v_20 is "LastJobTL_0_1" thru "LastJobTL_2_1", gets saved in a struct called "LAST_JobGamer_TL" - GAMEPLAY::_FAA457EF263E8763(&a_0._f4B, "PAID_PLAYER"); - GAMEPLAY::_FAA457EF263E8763(&a_0._f5B, "RADIO_STATION"); - - - - - p0 is always 0. p1 is pointing to a global. - - - - - NETWORK_IS_IN_??? - - - - - Tune Forward... ? - - - - - gets byte at offset 0x862 in the specified players data (ped data + 0xbd0) and stores the bool p1 in it. - lwz r3, 0xBD0(r3) ;r3 is player data - lbz r4, 0x862(r3) ;r4 is now the byte - insrwi r4, r31, 1,28 ;stores p1 as a bit in place 28 idk - stb r4, 0x862(r3) ; puts the newly modified one back in - SET_PLAYER_* - - - - - may be 0xBF21818E - related to: NETWORK_BAIL - NETWORK_BAIL_TRANSITION - NETWORK_JOIN_GROUP_ACTIVITY - NETWORK_JOIN_TRANSITION - NETWORK_LAUNCH_TRANSITION - NETWORK_SESSION_HOST - NETWORK_SESSION_HOST_CLOSED - NETWORK_SESSION_HOST_FRIENDS_ONLY - NETWORK_SESSION_HOST_SINGLE_PLAYER - NETWORK_SESSION_VOICE_LEAVE - - - - - gets the entity id of a network id - - - - - gets the object id of a network id - - - - - gets the ped id of a network id - - - - - Some of the tunable contexts used in the PC scripts: - - "BASE_GLOBALS" - - "MP_GLOBAL" - and some of the tunable names used in the PC scripts: - - "XP_MULTIPLIER" - - "CASH_MULTIPLIER" - - "ARMOUR_REWARD_GIFT" - - "TOGGLE_CREATORS_OFF" - - "MULTIPLAYER_DISABLED" - - - - - Some of the tunable contexts used in the PC scripts: - - "BASE_GLOBALS" - - "MP_GLOBAL" - and some of the tunable names used in the PC scripts: - - "XP_MULTIPLIER" - - "CASH_MULTIPLIER" - - "ARMOUR_REWARD_GIFT" - - "TOGGLE_CREATORS_OFF" - - "MULTIPLAYER_DISABLED" - - - - - Console Hash - 0x18867C61 = NETWORK_ACCESS_TUNABLE_BOOL_HASH - - - - - Console Hash - 0x18867C61 = NETWORK_ACCESS_TUNABLE_BOOL_HASH - - - - - Returns a default value if the tunable don't exist. - Console Hash - - - - - Returns a default value if the tunable don't exist. - Console Hash - - - - - Some of the tunable contexts used in the PC scripts: - - "BASE_GLOBALS" - - "MP_GLOBAL" - - "MP_FM_RACES" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_SEA" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_AIR" - - "MP_FM_BASEJUMP" - - "MP_FM_RACES_CYCLE" - - "MP_FM_RACES_BIKE" - - "MP_FM_MISSIONS" - - "MP_FM_CONTACT" - - "MP_FM_RANDOM" - - "MP_FM_VERSUS" - - "MP_FM_LTS" - - "MP_FM_CAPTURE" - - "MP_FM_DM" - - "MP_FM_SURVIVAL" - - "MP_FM_GANG_ATTACK" - - "MP_FM_BASEJUMP" - - "MP_CNC_TEAM_COP" - - "MP_CNC_TEAM_VAGOS" - - "MP_CNC_TEAM_LOST" - and some of the tunable names used in the PC scripts: - - "XP_MULTIPLIER" - - "CASH_MULTIPLIER" - - "ARMOUR_REWARD_GIFT" - - "TOGGLE_CREATORS_OFF" - - - - - Some of the tunable contexts used in the PC scripts: - - "BASE_GLOBALS" - - "MP_GLOBAL" - - "MP_FM_RACES" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_SEA" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_AIR" - - "MP_FM_BASEJUMP" - - "MP_FM_RACES_CYCLE" - - "MP_FM_RACES_BIKE" - - "MP_FM_MISSIONS" - - "MP_FM_CONTACT" - - "MP_FM_RANDOM" - - "MP_FM_VERSUS" - - "MP_FM_LTS" - - "MP_FM_CAPTURE" - - "MP_FM_DM" - - "MP_FM_SURVIVAL" - - "MP_FM_GANG_ATTACK" - - "MP_FM_BASEJUMP" - - "MP_CNC_TEAM_COP" - - "MP_CNC_TEAM_VAGOS" - - "MP_CNC_TEAM_LOST" - and some of the tunable names used in the PC scripts: - - "XP_MULTIPLIER" - - "CASH_MULTIPLIER" - - "ARMOUR_REWARD_GIFT" - - "TOGGLE_CREATORS_OFF" - - - - - Console Hash - 0x3972551F = NETWORK_ACCESS_TUNABLE_FLOAT_HASH - - - - - Console Hash - 0x3972551F = NETWORK_ACCESS_TUNABLE_FLOAT_HASH - - - - - Some of the tunable contexts used in the PC scripts: - - "MP_FM_RACES" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_SEA" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_AIR" - - "MP_FM_BASEJUMP" - - "MP_FM_RACES_CYCLE" - - "MP_FM_RACES_BIKE" - - "MP_FM_MISSIONS" - - "MP_FM_CONTACT" - - "MP_FM_RANDOM" - - "MP_FM_VERSUS" - - "MP_FM_LTS" - - "MP_FM_CAPTURE" - - "MP_FM_DM" - - "MP_FM_SURVIVAL" - - "MP_FM_GANG_ATTACK" - - "MP_FM_BASEJUMP" - - "BASE_GLOBALS" - - "MP_GLOBAL" - and some of the tunable names used in the PC scripts: - - "XP_MULTIPLIER" - - "CASH_MULTIPLIER" - - "ARMOUR_REWARD_GIFT" - - "TOGGLE_CREATORS_OFF" - - - - - Some of the tunable contexts used in the PC scripts: - - "MP_FM_RACES" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_SEA" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_AIR" - - "MP_FM_BASEJUMP" - - "MP_FM_RACES_CYCLE" - - "MP_FM_RACES_BIKE" - - "MP_FM_MISSIONS" - - "MP_FM_CONTACT" - - "MP_FM_RANDOM" - - "MP_FM_VERSUS" - - "MP_FM_LTS" - - "MP_FM_CAPTURE" - - "MP_FM_DM" - - "MP_FM_SURVIVAL" - - "MP_FM_GANG_ATTACK" - - "MP_FM_BASEJUMP" - - "BASE_GLOBALS" - - "MP_GLOBAL" - and some of the tunable names used in the PC scripts: - - "XP_MULTIPLIER" - - "CASH_MULTIPLIER" - - "ARMOUR_REWARD_GIFT" - - "TOGGLE_CREATORS_OFF" - - - - - Console Hash - 0xB2E83B75 = NETWORK_ACCESS_TUNABLE_INT_HASH - - - - - Console Hash - 0xB2E83B75 = NETWORK_ACCESS_TUNABLE_INT_HASH - - - - - Console hash: 0xCD69BEA1 - - - - - Console hash: 0xCD69BEA1 - - - - - .. - - - - - .. - - - - - Returns whether the Rockstar game services are available or not: - SCLB_NO_ROS = The Rockstar game services are unavailable right now. Please try again later. - ros.rockstargames.com - - - - - Returns whether the Rockstar game services are available or not: - SCLB_NO_ROS = The Rockstar game services are unavailable right now. Please try again later. - ros.rockstargames.com - - - - - This has arguments.. in PC scripts. - - - - - **This native does absolutely nothing, just a nullsub** - - - - - **This native does absolutely nothing, just a nullsub** - - - - - p1 = 0 (always) - p2 = 1 (always) - - - - - p1 is just an assumption. p2 was false and p3 was true. - - - - - The first parameter is the amount spent which is store in a global when this native is called. The global returns 10. Which is the price for both rides. - The last 3 parameters are, - 2,0,1 in the am_ferriswheel.c - 1,0,1 in the am_rollercoaster.c - - - - - The first parameter is the amount spent which is store in a global when this native is called. The global returns 10. Which is the price for both rides. - The last 3 parameters are, - 2,0,1 in the am_ferriswheel.c - 1,0,1 in the am_rollercoaster.c - - - - - p1 = 0 (always) - p2 = 1 (always) - - - - - 11 - Need to download tunables. - 12 - Need to download background script. - Returns 1 if the multiplayer is loaded, otherwhise 0. - - - - - 11 - Need to download tunables. - 12 - Need to download background script. - Returns 1 if the multiplayer is loaded, otherwhise 0. - - - - - this function is toggle when people report you and you get the auto mute message - - - - - this function is toggle when people report you and you get the auto mute message - - - - - console hash: 0x3624F054 - - - - - console hash: 0x3624F054 - - - - - Only documented... - - - - - Only documented... - - - - - BOOL DEBUG_MEMBRESHIP(int Param) - { - int membership; - networkHandleMgr handle; - NETWORK_HANDLE_FROM_PLAYER(iSelectedPlayer, &handle.netHandle, 13); - if (!_NETWORK_IS_CLAN_MEMBERSHIP_FINISHED_DOWNLOADING()) - { - if (NETWORK_CLAN_REMOTE_MEMBERSHIPS_ARE_IN_CACHE(&Param)) - { - if (NETWORK_CLAN_GET_MEMBERSHIP_COUNT(&Param) > 0) - { - if (NETWORK_CLAN_GET_MEMBERSHIP_VALID(&Param, 0)) - { - if (NETWORK_CLAN_GET_MEMBERSHIP(&Param, &membership, -1)) - { - _0xF633805A(&membership, 35, &handle.netHandle); - } - } - } - } - } - else - { - NETWORK_CLAN_DOWNLOAD_MEMBERSHIP(&handle.netHandle); - } - } - - - - - networkMembershipMgr memShip; - int maxMemship = _GET_NUM_MEMBERSHIP_DESC(); - for (int i = 0; i < maxMemship; i++) - { - NETWORK_CLAN_GET_MEMBERSHIP_DESC(&memShip.memHandle, i); - } - - - - - bufferSize is 35 in the scripts. - bufferSize is the elementCount of p0(desc), sizeof(p0) == 280 == p1*8 == 35 * 8, p2(netHandle) is obtained from NETWORK::NETWORK_HANDLE_FROM_PLAYER. And no, I can't explain why 35 * sizeof(int) == 280 and not 140, but I'll get back to you on that. - the answer is: because p0 an int64_t* / int64_t[35]. and FYI p2 is an int64_t[13] - pastebin.com/cSZniHak - - - - - netScene to scene - - - - - netScene to scene - - - - - netScene to scene - - - - - console hash: 0x99F58A07 - Sadly I thought this copied their tattoos, but it just seems to copy their 'blend data'. E.G. skin tone/color, fat/skinny face, etc. - - - - - console hash: 0x99F58A07 - Sadly I thought this copied their tattoos, but it just seems to copy their 'blend data'. E.G. skin tone/color, fat/skinny face, etc. - - - - - returns netScene - this native is missing 2 params - float p10, float p11 - - - - - Note the 2nd parameters are always 1, 0. I have a feeling it deals with your money, wallet, bank. So when you delete the character it of course wipes the wallet cash at that time. So if that was the case, it would be eg, NETWORK_DELETE_CHARACTER(characterIndex, deleteWalletCash, deleteBankCash); - - - - - hash collision??? - I did this and I didn't see anything happening - int pindex; - for (int i = 0; i < 32; i++) - { - if (NETWORK_IS_PARTICIPANT_ACTIVE(INT_TO_PARTICIPANTINDEX(i))) - { - pindex = NETWORK_GET_PLAYER_INDEX(INT_TO_PARTICIPANTINDEX(i)); - NETWORK_DISABLE_INVINCIBLE_FLASHING(pindex, 1); - } - } - - - - - hash collision??? - I did this and I didn't see anything happening - int pindex; - for (int i = 0; i < 32; i++) - { - if (NETWORK_IS_PARTICIPANT_ACTIVE(INT_TO_PARTICIPANTINDEX(i))) - { - pindex = NETWORK_GET_PLAYER_INDEX(INT_TO_PARTICIPANTINDEX(i)); - NETWORK_DISABLE_INVINCIBLE_FLASHING(pindex, 1); - } - } - - - - - p2 is true 3/4 of the occurrences I found. - 'players' is the number of players for a session. On PS3/360 it's always 18. On PC it's 32. - - - - - Some of the tunable contexts used in the PC scripts: - - "MP_FM_RACES" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_SEA" - - "MP_FM_RACES_CAR" - - "MP_FM_RACES_AIR" - - "MP_FM_BASEJUMP" - - "MP_FM_RACES_CYCLE" - - "MP_FM_RACES_BIKE" - - "MP_FM_MISSIONS" - - "MP_FM_CONTACT" - - "MP_FM_RANDOM" - - "MP_FM_VERSUS" - - "MP_FM_LTS" - - "MP_FM_CAPTURE" - - "MP_FM_DM" - - "MP_FM_SURVIVAL" - - "MP_FM_GANG_ATTACK" - - "MP_FM_BASEJUMP" - - "BASE_GLOBALS" - - "MP_GLOBAL" - and some of the tunable names used in the PC scripts: - - "XP_MULTIPLIER" - - "CASH_MULTIPLIER" - - "ARMOUR_REWARD_GIFT" - - "TOGGLE_CREATORS_OFF" - - - - - Console Hash - 0x25915CB9 = NETWORK_DOES_TUNABLE_EXIST_HASH - - - - - Console Hash - 0x25915CB9 = NETWORK_DOES_TUNABLE_EXIST_HASH - - - - - DSPORT - - - - - DSPORT - - - - - Console Hash - 0xA14CC95D = NETWORK_EARN_FROM_AMBIENT_JOB - Example for p1: "AM_DISTRACT_COPS" - - - - - Console Hash - 0xA14CC95D = NETWORK_EARN_FROM_AMBIENT_JOB - Example for p1: "AM_DISTRACT_COPS" - - - - - For the money bags that drop a max of $40,000. Often called 40k bags. - Most likely NETWORK_EARN_FROM_ROB*** - MONEY_EARN_JOBS - - - - - For the money bags that drop a max of $40,000. Often called 40k bags. - Most likely NETWORK_EARN_FROM_ROB*** - MONEY_EARN_JOBS - - - - - Console Hash - 0xAB6BD72F = NETWORK_EARN_FROM_DAILY_OBJECTIVE - - - - - Console Hash - 0xAB6BD72F = NETWORK_EARN_FROM_DAILY_OBJECTIVE - - - - - MONEY_EARN_PICKED_UP - - - - - MONEY_EARN_PICKED_UP - - - - - Console Hash - 0xBEE23713 = NETWORK_EARN_FROM_JOB_BONUS - - - - - Console Hash - 0xBEE23713 = NETWORK_EARN_FROM_JOB_BONUS - - - - - Pretty sure this is actually a hash collision. - It should be NETWORK_EARN_FROM_A*** or NETWORK_EARN_FROM_B*** - ============================================================= - Not a hash collision, test it for yourself when finishing heist. - lackos; 2017.03.12 - - - - - Pretty sure this is actually a hash collision. - It should be NETWORK_EARN_FROM_A*** or NETWORK_EARN_FROM_B*** - ============================================================= - Not a hash collision, test it for yourself when finishing heist. - lackos; 2017.03.12 - - - - - Enough007: Adds an entry in the Network Transaction Log. - Max value for amount 2000 - - - - - Enough007: Adds an entry in the Network Transaction Log. - Max value for amount 2000 - - - - - Now has 9 parameters. - - - - - Now has 9 parameters. - - - - - This merely adds an entry in the Network Transaction Log; - it does not grant cash to the player (on PC). - Max value for amount is 9999999. - - - - - Now has 8 params. - - - - - Pretty sure this is a hash collision - - - - - Pretty sure this is a hash collision - - - - - In the console script dumps, this is only referenced once. - NETWORK::NETWORK_EXPLODE_VEHICLE(vehicle, 1, 0, 0); - ^^^^^ That must be PC script dumps? In X360 Script Dumps it is reference a few times with 2 differences in the parameters. - Which as you see below is 1, 0, 0 + 1, 1, 0 + 1, 0, and a *param? - am_plane_takedown.c - network_explode_vehicle(net_to_veh(Local_40.imm_2), 1, 1, 0); - armenian2.c - network_explode_vehicle(Local_80[6 <2>], 1, 0, 0); - fm_horde_controler.c - network_explode_vehicle(net_to_veh(*uParam0), 1, 0, *uParam0); - fm_mission_controller.c, has 6 hits so not going to list them. - Side note, setting the first parameter to 0 seems to mute sound or so? - Seems it's like ADD_EXPLOSION, etc. the first 2 params. The 3rd atm no need to worry since it always seems to be 0. - - - - - state - 0 does 5 fades - state - 1 does 6 fades - native is missing third argument, also boolean, setting to 1 made vehicle fade in slower, probably "slow" as per NETWORK_FADE_OUT_ENTITY - - - - - normal - transition like when your coming out of LSC - slow - transition like when you walk into a mission - - - - - Console Hash: Probably 0xAA7EA3BD - - - - - Console Hash: Probably 0xAA7EA3BD - - - - - Returns the owner ID of the specified entity. - - The entity to get the owner for. - On the server, the server ID of the entity owner. On the client, returns the player/slot ID of the entity owner. - - - - scriptName examples: - "freemode", "AM_CR_SecurityVan", ... - Most of the time, these values are used: - p1 = -1 - p2 = 0 - - - - - Retrieves the local player's NetworkHandle* and stores it in the given buffer. - * Currently unknown struct - - - - - On PC this is hardcoded to 250. - - - - - Returns the amount of players connected in the current session. Only works when connected to a session/server. - - - - - Seems to always return 0, but it's used in quite a few loops. - for (num3 = 0; num3 < NETWORK::0xCCD8C02D(); num3++) - { - if (NETWORK::NETWORK_IS_PARTICIPANT_ACTIVE(PLAYER::0x98F3B274(num3)) != 0) - { - var num5 = NETWORK::NETWORK_GET_PLAYER_INDEX(PLAYER::0x98F3B274(num3)); - - - - - Returns the coordinates of another player. - Does not work if you enter your own player id as p0 (will return `(0.0, 0.0, 0.0)` in that case). - - The player id, MUST be another player. - A Vector3 containing the coordinates of another player. - - - - Returns the coordinates of another player. - Does not work if you enter your own player id as p0 (will return `(0.0, 0.0, 0.0)` in that case). - - The player id, MUST be another player. - A Vector3 containing the coordinates of another player. - - - - Returns the Player associated to a given Ped when in an online session. - - - - - Returns the Player associated to a given Ped when in an online session. - - - - - Same as GAMEPLAY::GET_RANDOM_INT_IN_RANGE - - - - - Same as GAMEPLAY::GET_RANDOM_INT_IN_RANGE - - - - - Based on scripts such as in freemode.c how they call their vars vVar and fVar the 2nd and 3rd param it a Vector3 and Float, but the first is based on get_random_int_in_range.. - - - - - Returns the value of the tunable 0x9A82F2B. Usually 8000 iirc. - - - - - Returns the value of the tunable 0x9A82F2B. Usually 8000 iirc. - - - - - From what I can see in ida, I believe it retrieves the players online bank balance. - - - - - From what I can see in ida, I believe it retrieves the players online bank balance. - - - - - From what I understand, it retrieves STAT_WALLET_BALANCE for the specified character (-1 means use MPPLY_LAST_MP_CHAR) - - - - - From what I understand, it retrieves STAT_WALLET_BALANCE for the specified character (-1 means use MPPLY_LAST_MP_CHAR) - - - - - Returns a NetworkHandle* from the specified member ID and stores it in a given buffer. - * Currently unknown struct - - - - - Returns a handle to networkHandle* from the specified player handle and stores it in a given buffer. - * Currently unknown struct - Example: - std::vector<UINT64> GetPlayerNetworkHandle(Player player) { - const int size = 13; - uint64_t *buffer = std::make_unique<uint64_t[]>(size).get(); - NETWORK::NETWORK_HANDLE_FROM_PLAYER(player, reinterpret_cast<int *>(buffer), 13); - for (int i = 0; i < size; i++) { - Log::Msg("networkhandle[%i]: %llx", i, buffer[i]); - } - std::vector<UINT64> result(buffer, buffer + sizeof(buffer)); - return result; - } - - - - - Returns a NetworkHandle* from the specified user ID and stores it in a given buffer. - * Currently unknown struct - - - - - console hash: 0xD14D9C07 - - - - - console hash: 0xD14D9C07 - - - - - console hash: 0x5AC9F04D = network_hash_from_gamer_handle - - - - - console hash: 0x5AC9F04D = network_hash_from_gamer_handle - - - - - console hash: 0xF8D7AF3B = NETWORK_HASH_FROM_PLAYER_HANDLE - - - - - console hash: 0xF8D7AF3B = NETWORK_HASH_FROM_PLAYER_HANDLE - - - - - From what I can tell it looks like it does the following: - Creates/hosts a new transition to another online session, using this in FiveM will result in other players being disconencted from the server/preventing them from joining. This is most likely because I entered the wrong session parameters since they're pretty much all unknown right now. - You also need to use `NetworkJoinTransition(Player player)` and `NetworkLaunchTransition()`. - - Unknown int - Unknown int - Unknown int - Unknown int - Unknown always 0 in decompiled scripts - BOOL purpose unknown, both 0 and 1 are used in decompiled scripts. - BOOL purpose unknown, both 0 and 1 are used in decompiled scripts. - Unknown int, it's an int according to decompiled scripts, however the value is always 0 or 1. - Unknown int, it's an int according to decompiled scripts, however the value is always 0 or 1. - Unknown int, sometimes 0, but also 32768 or 16384 appear in decompiled scripst, maybe a flag of some sort? - Probably a bool indicating if the transition was created. - - - - //nothing doin - int Global_1837683 = GlobalVariable::Get(1837683); - int Global_1837683_f_404 = GlobalVariable::Get(1837683 + 404); - NETWORK_INVITE_GAMERS(&Global_1837683, Global_1837683_f_404, 0, 0); - - - - - This would be nice to see if someone is in party chat, but 2 sad notes. - 1) It only becomes true if said person is speaking in that party at the time. - 2) It will never, become true unless you are in that party with said person. - - - - - In scripts R* calls 'NETWORK_GET_FRIEND_NAME' in this param. - - - - - If you are host, returns true else returns false. - anyone know how to use this to find correct host? is possible? - go to a mission and it will set a host then search the host name using a program then find the pointer to the host name - - - - - Note according to IDA TU27 X360(Console), - This native & 'NETWORK_IS_PARTY_MEMBER' both jump to the same location. - Side note: This location just stops where it's at once jumped to. - Screenshot for side note, - h t t p ://i.imgur.com/m2ci1mF.png - h t t p://i.imgur.com/Z0Wx2B6.png - - - - - Note according to IDA TU27 X360(Console), - This native & 'NETWORK_IS_PARTY_MEMBER' both jump to the same location. - Side note: This location just stops where it's at once jumped to. - Screenshot for side note, - h t t p ://i.imgur.com/m2ci1mF.png - h t t p://i.imgur.com/Z0Wx2B6.png - - - - - This function is hard-coded to always return 0. - - - - - hash collision - - - - - NETWORK_ARE_* - - - - - NETWORK_ARE_* - - - - - p1 = 6 - NETWORK_CRC_HASH_CHECK? - - - - - p1 = 6 - NETWORK_CRC_HASH_CHECK? - - - - - returns true if someone is screaming or talking in a microphone - - - - - This checks if player is playing on gta online or not. - Please add an if and block your mod if this is "true". - - - - - Returns whether the player is signed into Social Club. - - - - - Returns whether the game is not in offline mode. - seemed not to work for some ppl - - - - - Same as _IS_TEXT_CHAT_ACTIVE, except it does not check if the text chat HUD component is initialized, and therefore may crash. - - - - - int handle[76]; - NETWORK_HANDLE_FROM_FRIEND(iSelectedPlayer, &handle[0], 13); - Player uVar2 = NETWORK_GET_PLAYER_FROM_GAMER_HANDLE(&handle[0]); - NETWORK_JOIN_TRANSITION(uVar2); - nothing doin. - - - - - Could possibly bypass being muted or automatically muted - - - - - Could possibly bypass being muted or automatically muted - - - - - Works in Singleplayer too. - Actually has a 4th param (BOOL) that sets byte_14273C46C (in b944) to whatever was passed to p3. - - - - - R* uses this to hear all player when spectating. - It allows you to hear other online players when their chat is on none, crew and or friends - - - - - R* uses this to hear all player when spectating. - It allows you to hear other online players when their chat is on none, crew and or friends - - - - - Console Hash: 0x6C344AE3 - "NETWORK_OVERRIDE_SEND_RESTRICTIONS" is right, but dev-c put a _ by default. - This is used alongside the native, - 'NETWORK_OVERRIDE_RECEIVE_RESTRICTIONS'. Read it's description for more info. - - - - - Console Hash: 0x6C344AE3 - "NETWORK_OVERRIDE_SEND_RESTRICTIONS" is right, but dev-c put a _ by default. - This is used alongside the native, - 'NETWORK_OVERRIDE_RECEIVE_RESTRICTIONS'. Read it's description for more info. - - - - - Returns the name of a given player. Returns "**Invalid**" if CPlayerInfo of the given player cannot be retrieved or the player doesn't exist. - Does exactly the same as GET_PLAYER_NAME. - - - - - Sets [userID] to the user id of the given player. Returns "**Invalid**" if CPlayerInfo of the given player cannot be retrieved or the player doesn't exist. - - - - - Sets [userID] to the user id of the given player. Returns "**Invalid**" if CPlayerInfo of the given player cannot be retrieved or the player doesn't exist. - - - - - Does exactly the same thing as PLAYER_ID() - - - - - Returns whether the player has been reported too often or not. - Example : griefing. - - - - - Checks if a specific value (BYTE) in CPlayerInfo is nonzero. - Returns always false in Singleplayer. - No longer used for dev checks since first mods were released on PS3 & 360. - R* now checks with the is_dlc_present native for the dlc hash 2532323046, - if that is present it will unlock dev stuff. - - - - - fuck this function in particular. - It's similar to unk_0x9A176B6E but this ones got a different stat hash: - 0xBC707798 - - - - - fuck this function in particular. - It's similar to unk_0x9A176B6E but this ones got a different stat hash: - 0xBC707798 - - - - - NETWORK_PLAYER_??? - - - - - NETWORK_PLAYER_??? - - - - - index - ------- - See function sub_1005 in am_boat_taxi.ysc - context - ---------- - "BACKUP_VAGOS" - "BACKUP_LOST" - "BACKUP_FAMILIES" - "HIRE_MUGGER" - "HIRE_MERCENARY" - "BUY_CARDROPOFF" - "HELI_PICKUP" - "BOAT_PICKUP" - "CLEAR_WANTED" - "HEAD_2_HEAD" - "CHALLENGE" - "SHARE_LAST_JOB" - "DEFAULT" - reason - --------- - "NOTREACHTARGET" - "TARGET_ESCAPE" - "DELIVERY_FAIL" - "NOT_USED" - "TEAM_QUIT" - "SERVER_ERROR" - "RECEIVE_LJ_L" - "CHALLENGE_PLAYER_LEFT" - "DEFAULT" - unk - ----- - Unknown bool value - - - - - index - ------- - See function sub_1005 in am_boat_taxi.ysc - context - ---------- - "BACKUP_VAGOS" - "BACKUP_LOST" - "BACKUP_FAMILIES" - "HIRE_MUGGER" - "HIRE_MERCENARY" - "BUY_CARDROPOFF" - "HELI_PICKUP" - "BOAT_PICKUP" - "CLEAR_WANTED" - "HEAD_2_HEAD" - "CHALLENGE" - "SHARE_LAST_JOB" - "DEFAULT" - reason - --------- - "NOTREACHTARGET" - "TARGET_ESCAPE" - "DELIVERY_FAIL" - "NOT_USED" - "TEAM_QUIT" - "SERVER_ERROR" - "RECEIVE_LJ_L" - "CHALLENGE_PLAYER_LEFT" - "DEFAULT" - unk - ----- - Unknown bool value - - - - - sizeofVars is in bytes - - - - - NETWORK_REQUEST_CLOUD_BACKGROUND_SCRIPTS - Correct console hash is 0x98EFB921 - Start the downloading of BG_NG.RPF from R* Cloud which contains hotfix. - The console hash given is incorrect for Xbox360 that is. I searched in IDA and found 0x98EFB921 which came right after 0x155465EE. Then I searched it in TU27 X360 scripts and found it was the same results same scripts as the PC Hash for this which is obviously correct. I found the correct one as I noticed TU27 X360 script search pulled no results for 0x29532731 when it should have. - As you can see here you will see the 155465EE first then the correct hash for this native. Then the current 29532731 one which could be the native below or the native below's hash could be the has below the 29532731 - puu.sh/nhdQI/e0ca5567b4.png - 0x98EFB921 is the correct console hash for "_DOWNLOAD_BG_SCRIPT_RPF". 0x29532731 is "_HAS_BG_SCRIPT_BEEN_DOWNLOADED" - The code: - seg001:00000000003EFF4C uunk_0x29532731: # CODE XREF: sub_158C8AC+14p - seg001:00000000003EFF4C lis r3, dword_1CFB100@ha - seg001:00000000003EFF50 lwz r3, dword_1CFB100@l(r3) - seg001:00000000003EFF54 ld r3, 0x1020(r3) - seg001:00000000003EFF58 extsw r3, r3 - seg001:00000000003EFF5C blr - seg001:00000000003EFF5C # End of function uunk_0x29532731 - - - - - NETWORK_REQUEST_CLOUD_BACKGROUND_SCRIPTS - Correct console hash is 0x98EFB921 - Start the downloading of BG_NG.RPF from R* Cloud which contains hotfix. - The console hash given is incorrect for Xbox360 that is. I searched in IDA and found 0x98EFB921 which came right after 0x155465EE. Then I searched it in TU27 X360 scripts and found it was the same results same scripts as the PC Hash for this which is obviously correct. I found the correct one as I noticed TU27 X360 script search pulled no results for 0x29532731 when it should have. - As you can see here you will see the 155465EE first then the correct hash for this native. Then the current 29532731 one which could be the native below or the native below's hash could be the has below the 29532731 - puu.sh/nhdQI/e0ca5567b4.png - 0x98EFB921 is the correct console hash for "_DOWNLOAD_BG_SCRIPT_RPF". 0x29532731 is "_HAS_BG_SCRIPT_BEEN_DOWNLOADED" - The code: - seg001:00000000003EFF4C uunk_0x29532731: # CODE XREF: sub_158C8AC+14p - seg001:00000000003EFF4C lis r3, dword_1CFB100@ha - seg001:00000000003EFF50 lwz r3, dword_1CFB100@l(r3) - seg001:00000000003EFF54 ld r3, 0x1020(r3) - seg001:00000000003EFF58 extsw r3, r3 - seg001:00000000003EFF5C blr - seg001:00000000003EFF5C # End of function uunk_0x29532731 - - - - - This native start the download of tunables from R* cloud - - - - - This native start the download of tunables from R* cloud - - - - - hash collision?? - Not sure, but fits alphabetically - - - - - p4 and p5 are always 0 in scripts - - - - - p4 and p5 are always 0 in scripts - - - - - p0 = 0 or 4 - - - - - p0 = 0 or 4 - - - - - String "NETWORK_SEND_PRESENCE_TRANSITION_INVITE" is contained in the function in ida so this one is correct. - - - - - String "NETWORK_SEND_PRESENCE_TRANSITION_INVITE" is contained in the function in ida so this one is correct. - - - - - how can I increase the character limit on this native? - -------------------------------- - return - it's possible for it to have an error and return a value. One error is if it cannot find space to create the event it doesn't send the text and returns zero. It also returns 0 is the strlen is 0 or the strlen > 0x100 (I thought it was 64 so idk why it's checking 265. I may just be dumb :P ) There are other ways it could return 0 also but who the hell cares cuz it's very unlikely, but it returns a bool. - to the top guy, idk if it is possible. It is probably read a max of 64 characters on the recieving end so even if we did modify it to send more it probably wouldn't work. One of the other problems is that in part of the function it copies the string to the local stack which means we would have to change that to make it work. - - - - - the first arg seems to be the network player handle (&handle) and the second var is pretty much always "" and the third seems to be a number between 0 and ~10 and the 4th is is something like 0 to 5 and I guess the 5th is a bool cuz it is always 0 or 1 - does this send an invite to a player? - - - - - p0 is always false and p1 varies. - NETWORK_SESSION_END(0, 1) - NETWORK_SESSION_END(0, 0) - Results in: "Connection to session lost due to an unknown network error. Please return to Grand Theft Auto V and try again later." - - - - - unknown params - p0 = 0, 2, or 999 (The global is 999 by default.) - p1 = 0 (Always in every script it's found in atleast.) - p2 = 0, 3, or 4 (Based on a var that is determined by a function.) - p3 = maxPlayers (It's obvious in x360 scripts it's always 18) - p4 = 0 (Always in every script it's found in atleast.) - p5 = 0 or 1. (1 if network_can_enter_multiplayer, but set to 0 if other checks after that are passed.) - p5 is reset to 0 if, - Global_1315318 = 0 or Global_1315323 = 9 or 12 or (Global_1312629 = 0 && Global_1312631 = true/1) those are passed. - - - - - Does nothing in online but in offline it will cause the screen to fade to black. Nothing happens past then, the screen will sit at black until you restart GTA. Other stuff must be needed to actually host a session. - - - - - Does nothing in online but in offline it will cause the screen to fade to black. Nothing happens past then, the screen will sit at black until you restart GTA. Other stuff must be needed to actually host a session. - - - - - Loads up the map that is loaded when beeing in mission creator - Player gets placed in a mix between online/offline mode - p0 is always 2 in R* scripts. - Appears to be patched in gtav b757 (game gets terminated) alonside with most other network natives to prevent online modding ~ghost30812 - - - - - Only works when you are host. - - - - - BLR the shit. - - - - - BLR the shit. - - - - - if set to true other network players can't see it - if set to false other network player can see it - ========================================= - ^^ I attempted this by grabbing an object with GET_ENTITY_PLAYER_IS_FREE_AIMING_AT and setting this naive no matter the toggle he could still see it. - pc or last gen? - ^^ last-gen - - - - - if set to true other network players can't see it - if set to false other network player can see it - ========================================= - ^^ I attempted this by grabbing an object with GET_ENTITY_PLAYER_IS_FREE_AIMING_AT and setting this naive no matter the toggle he could still see it. - pc or last gen? - ^^ last-gen - - - - - if set to true other network players can't see it - if set to false other network player can see it - ========================================= - ^^ I attempted this by grabbing an object with GET_ENTITY_PLAYER_IS_FREE_AIMING_AT and setting this naive no matter the toggle he could still see it. - pc or last gen? - ^^ last-gen - - - - - //friendly fire toggle - - - - - hash collision??? - - - - - This is called shortly after setting Network ID Migration off it seems. Does anyone know the point of this? - Example scenario, - If I were to request and gain control of an online players vehicle then their vehicle's Network ID and turn migration off. I wouldn't need to ever request control again as they wouldn't gain control back. - - scenario over - - So what would be the point hereafter of setting it 'dynamic'? - - - - - This is called shortly after setting Network ID Migration off it seems. Does anyone know the point of this? - Example scenario, - If I were to request and gain control of an online players vehicle then their vehicle's Network ID and turn migration off. I wouldn't need to ever request control again as they wouldn't gain control back. - - scenario over - - So what would be the point hereafter of setting it 'dynamic'? - - - - - On PC it's a nullsub which means it does absolutely nothing. - Now that Discord supports Rich Presence, R* might finally implement this for PC. Or maybe in future games like RDR2, GTA VI... - - - - - **This native does absolutely nothing, just a nullsub** - ``` - NETWORK_SET_RICH_PRESENCE but for PlayStation? (On PC it's a nullsub) - ``` - - - - - **This native does absolutely nothing, just a nullsub** - ``` - NETWORK_SET_RICH_PRESENCE but for PlayStation? (On PC it's a nullsub) - ``` - - - - - p1 is always 0 - - - - - p0 is pointer to a script array - - - - - p0 is pointer to a script array - - - - - p0 => unk3::_network_shop_basket_apply_server_data(Global_2590199[iParam0 -- [[76]] ], &uVar6); => script array - - - - - p0 => unk3::_network_shop_basket_apply_server_data(Global_2590199[iParam0 -- [[76]] ], &uVar6); => script array - - - - - No longer works if you hook it as a stealth money method - Modes------------------ - 1: Wallet - 2: Bank - 4: Bank - 8: Wallet - Only difference I noticed. - - - - - No longer works if you hook it as a stealth money method - Modes------------------ - 1: Wallet - 2: Bank - 4: Bank - 8: Wallet - Only difference I noticed. - - - - - Belongs in UNK3, non-hashed version of 0x247F0F73A182EA0B - - - - - Belongs in UNK3, non-hashed version of 0x247F0F73A182EA0B - - - - - Belongs in UNK3, non-hashed version of 0x247F0F73A182EA0B - - - - - ex.: - v_15 = sub_10cc8(VEHICLE::GET_VEHICLE_WHEEL_TYPE(a_2)); - if (!MOBILE::_247F0F73A182EA0B(v_15)) { - return 1; - } - Belongs in UNK3, hashed version of 0xBD4D7EAF8A30F637 - - - - - ex.: - v_15 = sub_10cc8(VEHICLE::GET_VEHICLE_WHEEL_TYPE(a_2)); - if (!MOBILE::_247F0F73A182EA0B(v_15)) { - return 1; - } - Belongs in UNK3, hashed version of 0xBD4D7EAF8A30F637 - - - - - ex.: - v_15 = sub_10cc8(VEHICLE::GET_VEHICLE_WHEEL_TYPE(a_2)); - if (!MOBILE::_247F0F73A182EA0B(v_15)) { - return 1; - } - Belongs in UNK3, hashed version of 0xBD4D7EAF8A30F637 - - - - - bool is always true in game scripts - - - - - Will cancel the transaction - - - - - Will cancel the transaction - - - - - Will cancel the transaction - - - - - Example: - int playerHandle; - NETWORK_HANDLE_FROM_PLAYER(selectedPlayer, &playerHandle, 13); - NETWORK_SHOW_PROFILE_UI(&playerHandle); - - - - - Only used once in a script (am_contact_requests) - p1 = 0 - p2 = 1 - - - - - According to how I understood this in the freemode script alone, - The first parameter is determined by a function named, func_5749 within the freemode script which has a list of all the vehicles and a set price to return which some vehicles deals with globals as well. So the first parameter is basically the set in stone insurance cost it's gonna charge you for that specific vehicle model. - The second parameter whoever put it was right, they call GET_ENTITY_MODEL with the vehicle as the paremeter. - The third parameter is the network handle as they call their little struct<13> func or atleast how the script decompiled it to look which in lamens terms just returns the network handle of the previous owner based on DECOR_GET_INT(vehicle, "Previous_Owner"). - The fourth parameter is a bool that returns true/false depending on if your bank balance is greater then 0. - The fifth and last parameter is a bool that returns true/false depending on if you have the money for the car based on the cost returned by func_5749. In the freemode script eg, - bool hasTheMoney = NETWORKCASH::_GET_BANK_BALANCE() < carCost. - - - - - Console Hash 0xF4287778 = NETWORK_SPENT_REQUEST_HEIST - - - - - Console Hash 0xF4287778 = NETWORK_SPENT_REQUEST_HEIST - - - - - used in atm_trigger script. - usage: - int iVar0;STATS::STAT_GET_INT(GAMEPLAY::GET_HASH_KEY("mpply_last_mp_char"), &iVar0, -1); - UNK3::_NETWORK_TRANSFER_WALLET_TO_BANK(iVar0, amount); - used to deposit money into bank from wallet, shows up in transaction log. - - - - - used in atm_trigger script. - usage: - int iVar0;STATS::STAT_GET_INT(GAMEPLAY::GET_HASH_KEY("mpply_last_mp_char"), &iVar0, -1); - UNK3::_NETWORK_TRANSFER_WALLET_TO_BANK(iVar0, amount); - used to deposit money into bank from wallet, shows up in transaction log. - - - - - used in atm_trigger script. - usage: - int iVar0; STATS::STAT_GET_INT(GAMEPLAY::GET_HASH_KEY("mpply_last_mp_char"), &iVar0, -1); - UNK3::_NETWORK_TRANSFER_BANK_TO_WALLET(iVar0, amount); - used to withdraw money from bank into wallet, shows up in transaction log. - - - - - used in atm_trigger script. - usage: - int iVar0; STATS::STAT_GET_INT(GAMEPLAY::GET_HASH_KEY("mpply_last_mp_char"), &iVar0, -1); - UNK3::_NETWORK_TRANSFER_BANK_TO_WALLET(iVar0, amount); - used to withdraw money from bank into wallet, shows up in transaction log. - - - - - Only one occurence in the scripts: - auto sub_cb43(auto a_0, auto a_1) { - if (g_2594CB._f1) { - if (NETWORK::_855BC38818F6F684()) { - NETWORK::_ABD5E88B8A2D3DB2(&a_0._fB93); - g_2594CB._f14 -- [[{13}]] = a_0._fB93; - g_2594CB._f4 -- [["64"]] = a_1; - return 1; - } - } - return 0; - } - other: - looks like it passes a player in the paramater - Contains string "NETWORK_VOICE_CONNECT_TO_PLAYER" in ida - - - - - Only one occurence in the scripts: - auto sub_cb43(auto a_0, auto a_1) { - if (g_2594CB._f1) { - if (NETWORK::_855BC38818F6F684()) { - NETWORK::_ABD5E88B8A2D3DB2(&a_0._fB93); - g_2594CB._f14 -- [[{13}]] = a_0._fB93; - g_2594CB._f4 -- [["64"]] = a_1; - return 1; - } - } - return 0; - } - other: - looks like it passes a player in the paramater - Contains string "NETWORK_VOICE_CONNECT_TO_PLAYER" in ida - - - - - if (!sub_8f12("START LOAD SCENE SAFE")) { - if (CUTSCENE::GET_CUTSCENE_TIME() > 4178) { - STREAMING::_ACCFB4ACF53551B0(1973.845458984375, 3818.447265625, 32.43629837036133, 15.0, 2); - sub_8e9e("START LOAD SCENE SAFE", 1); - } - } - (Previously known as STREAMING::_NEW_LOAD_SCENE_START_SAFE) - - - - - if (!sub_8f12("START LOAD SCENE SAFE")) { - if (CUTSCENE::GET_CUTSCENE_TIME() > 4178) { - STREAMING::_ACCFB4ACF53551B0(1973.845458984375, 3818.447265625, 32.43629837036133, 15.0, 2); - sub_8e9e("START LOAD SCENE SAFE", 1); - } - } - (Previously known as STREAMING::_NEW_LOAD_SCENE_START_SAFE) - - - - - Sets the value of the specified variable to 0. - Always returns true. - bool _NULLIFY(void* variable, int unused) - { - *variable = NULL; - return true; - } - - - - - Lets objects spawn online simply do it like this: - int createdObject = OBJ_TO_NET(CREATE_OBJECT_NO_OFFSET(oball, pCoords.x, pCoords.y, pCoords.z, 1, 0, 0)); - - - - - Please change back to _0x444D8CF241EC25C5 (hash collision) - - - - - Types: - 1 = Boolean - 2 = Integer - 3 = Float - 4 = String - 5 = Vector3 - 6 = Object - 7 = Array - - - - - patrolRoutes found in the b617d scripts: - "miss_Ass0", - "miss_Ass1", - "miss_Ass2", - "miss_Ass3", - "miss_Ass4", - "miss_Ass5", - "miss_Ass6", - "MISS_PATROL_6", - "MISS_PATROL_7", - "MISS_PATROL_8", - "MISS_PATROL_9", - "miss_Tower_01", - "miss_Tower_02", - "miss_Tower_03", - "miss_Tower_04", - "miss_Tower_05", - "miss_Tower_06", - "miss_Tower_07", - "miss_Tower_08", - "miss_Tower_10" - - - - - Max value for p1 is 15. - - - - - Only used once in the decompiled scripts. Seems to be related to scripted vehicle generators. - Modified example from "am_imp_exp.c4", line 6406: - -- [[ popSchedules[0] = ZONE::GET_ZONE_POPSCHEDULE(ZONE::GET_ZONE_AT_COORDS(891.3, 807.9, 188.1)); - etc. - ]] - ZONE::OVERRIDE_POPSCHEDULE_VEHICLE_MODEL(popSchedules[index], vehicleHash); - STREAMING::REQUEST_MODEL(vehicleHash); - - - - - Overrides the vehicle's horn hash. - When changing this hash on a vehicle, [`_GET_VEHICLE_HORN_HASH`](#_0xACB5DCCA1EC76840) will **not** return the 'overwritten' hash. It will still always return the default horn hash (same as [`GET_VEHICLE_DEFAULT_HORN`](#_0x02165D55000219AC)). - List of possible hashes (found in decompiled scripts): - | signed | unsigned | hex | - | ------------: | -----------: | :----------: | - | `1604822495` | `1604822495` | `0x5FA7A5DF` | - | `-1262465009` | `3032502287` | `0xB4C0500F` | - | `-889553789` | `3405413507` | `0xCAFA7C83` | - | `-1557943086` | `2737024210` | `0xA323ACD2` | - | `-1318696617` | `2976270679` | `0xB1664957` | - | `-7740003` | `4287227293` | `0xFF89E59D` | - | `-1815146967` | `2479820329` | `0x93CF0E29` | - | `-339919356` | `3955047940` | `0xEBBD3E04` | - Old description: - ``` - vehicle - the vehicle whose horn should be overwritten - mute - p1 seems to be an option for muting the horn - p2 - maybe a horn id, since the function AUDIO::GET_VEHICLE_DEFAULT_HORN(veh) exists? - ``` - - The vehicle you want to change the horn on. - Must be set to true. If set to false, the default horn hash will be restored. - A horn hash. - - - - Return the local Participant ID - - - - - Return the local Participant ID. - This native is exactly the same as 'PARTICIPANT_ID' native. - - - - - Activates the specified frontend menu context. - pausemenu.xml defines some specific menu options using 'context'. Context is basically a 'condition'. - The `*ALL*` part of the context means that whatever is being defined, will be active when any or all of those conditions after `*ALL*` are met. - The `*NONE*` part of the context section means that whatever is being defined, will NOT be active if any or all of the conditions after `*NONE*` are met. - This basically allows you to hide certain menu sections, or things like instructional buttons. - See the old description below for more info. - * * * - > Seems to add/set the current menu context (to show/hide buttons?) - > Pausemenu.xml: - > `<Contexts>*ALL*, DISPLAY_CORONA_BUTTONS, *NONE*, BET_LOCKED, BET_AVAILABLE, SCROLL_OPTION</Contexts>` - > Code: - > - > ``` - > if (...) { - > sub_bbd34(a_0, 0, "FM_BET_HELP"); - > UI::PAUSE_MENU_ACTIVATE_CONTEXT(${bet_available}); // This native - > UI::OBJECT_DECAL_TOGGLE(${bet_locked}); - > } else { - > sub_bbd34(a_0, 0, ""); - > UI::OBJECT_DECAL_TOGGLE(${bet_available}); - > UI::PAUSE_MENU_ACTIVATE_CONTEXT(${bet_locked}); // This native - > } - > ``` - > - > OBJECT_DECAL_TOGGLE seems to remove a context, It also has a hash collision - > // Old - > Scripts do not make this native's purpose clear. However, this native most likely has something to do with decals since in nearly every instance, "OBJECT_DECAL_TOGGLE" is called prior. - - Context name hash. - - - - Activates the specified frontend menu context. - pausemenu.xml defines some specific menu options using 'context'. Context is basically a 'condition'. - The `*ALL*` part of the context means that whatever is being defined, will be active when any or all of those conditions after `*ALL*` are met. - The `*NONE*` part of the context section means that whatever is being defined, will NOT be active if any or all of the conditions after `*NONE*` are met. - This basically allows you to hide certain menu sections, or things like instructional buttons. - See the old description below for more info. - * * * - > Seems to add/set the current menu context (to show/hide buttons?) - > Pausemenu.xml: - > `<Contexts>*ALL*, DISPLAY_CORONA_BUTTONS, *NONE*, BET_LOCKED, BET_AVAILABLE, SCROLL_OPTION</Contexts>` - > Code: - > - > ``` - > if (...) { - > sub_bbd34(a_0, 0, "FM_BET_HELP"); - > UI::PAUSE_MENU_ACTIVATE_CONTEXT(${bet_available}); // This native - > UI::OBJECT_DECAL_TOGGLE(${bet_locked}); - > } else { - > sub_bbd34(a_0, 0, ""); - > UI::OBJECT_DECAL_TOGGLE(${bet_available}); - > UI::PAUSE_MENU_ACTIVATE_CONTEXT(${bet_locked}); // This native - > } - > ``` - > - > OBJECT_DECAL_TOGGLE seems to remove a context, It also has a hash collision - > // Old - > Scripts do not make this native's purpose clear. However, this native most likely has something to do with decals since in nearly every instance, "OBJECT_DECAL_TOGGLE" is called prior. - - Context name hash. - - - - Activates the specified frontend menu context. - pausemenu.xml defines some specific menu options using 'context'. Context is basically a 'condition'. - The `*ALL*` part of the context means that whatever is being defined, will be active when any or all of those conditions after `*ALL*` are met. - The `*NONE*` part of the context section means that whatever is being defined, will NOT be active if any or all of the conditions after `*NONE*` are met. - This basically allows you to hide certain menu sections, or things like instructional buttons. - See the old description below for more info. - * * * - > Seems to add/set the current menu context (to show/hide buttons?) - > Pausemenu.xml: - > `<Contexts>*ALL*, DISPLAY_CORONA_BUTTONS, *NONE*, BET_LOCKED, BET_AVAILABLE, SCROLL_OPTION</Contexts>` - > Code: - > - > ``` - > if (...) { - > sub_bbd34(a_0, 0, "FM_BET_HELP"); - > UI::PAUSE_MENU_ACTIVATE_CONTEXT(${bet_available}); // This native - > UI::OBJECT_DECAL_TOGGLE(${bet_locked}); - > } else { - > sub_bbd34(a_0, 0, ""); - > UI::OBJECT_DECAL_TOGGLE(${bet_available}); - > UI::PAUSE_MENU_ACTIVATE_CONTEXT(${bet_locked}); // This native - > } - > ``` - > - > OBJECT_DECAL_TOGGLE seems to remove a context, It also has a hash collision - > // Old - > Scripts do not make this native's purpose clear. However, this native most likely has something to do with decals since in nearly every instance, "OBJECT_DECAL_TOGGLE" is called prior. - - Context name hash. - - - - [23.03.2017 19:08] by ins1de : - "_IS_PED_RELOADING" is totally a wrong name... - This native actually disables the reloading animation and script for the specified ped. Native renamed. - - - - - [23.03.2017 19:08] by ins1de : - "_IS_PED_RELOADING" is totally a wrong name... - This native actually disables the reloading animation and script for the specified ped. Native renamed. - - - - - gets the network id of a ped - - - - - Plays ambient speech. See also _0x444180DB. - ped: The ped to play the ambient speech. - speechName: Name of the speech to play, eg. "GENERIC_HI". - speechParam: Can be one of the following: - SPEECH_PARAMS_STANDARD - SPEECH_PARAMS_ALLOW_REPEAT - SPEECH_PARAMS_BEAT - SPEECH_PARAMS_FORCE - SPEECH_PARAMS_FORCE_FRONTEND - SPEECH_PARAMS_FORCE_NO_REPEAT_FRONTEND - SPEECH_PARAMS_FORCE_NORMAL - SPEECH_PARAMS_FORCE_NORMAL_CLEAR - SPEECH_PARAMS_FORCE_NORMAL_CRITICAL - SPEECH_PARAMS_FORCE_SHOUTED - SPEECH_PARAMS_FORCE_SHOUTED_CLEAR - SPEECH_PARAMS_FORCE_SHOUTED_CRITICAL - SPEECH_PARAMS_FORCE_PRELOAD_ONLY - SPEECH_PARAMS_MEGAPHONE - SPEECH_PARAMS_HELI - SPEECH_PARAMS_FORCE_MEGAPHONE - SPEECH_PARAMS_FORCE_HELI - SPEECH_PARAMS_INTERRUPT - SPEECH_PARAMS_INTERRUPT_SHOUTED - SPEECH_PARAMS_INTERRUPT_SHOUTED_CLEAR - SPEECH_PARAMS_INTERRUPT_SHOUTED_CRITICAL - SPEECH_PARAMS_INTERRUPT_NO_FORCE - SPEECH_PARAMS_INTERRUPT_FRONTEND - SPEECH_PARAMS_INTERRUPT_NO_FORCE_FRONTEND - SPEECH_PARAMS_ADD_BLIP - SPEECH_PARAMS_ADD_BLIP_ALLOW_REPEAT - SPEECH_PARAMS_ADD_BLIP_FORCE - SPEECH_PARAMS_ADD_BLIP_SHOUTED - SPEECH_PARAMS_ADD_BLIP_SHOUTED_FORCE - SPEECH_PARAMS_ADD_BLIP_INTERRUPT - SPEECH_PARAMS_ADD_BLIP_INTERRUPT_FORCE - SPEECH_PARAMS_FORCE_PRELOAD_ONLY_SHOUTED - SPEECH_PARAMS_FORCE_PRELOAD_ONLY_SHOUTED_CLEAR - SPEECH_PARAMS_FORCE_PRELOAD_ONLY_SHOUTED_CRITICAL - SPEECH_PARAMS_SHOUTED - SPEECH_PARAMS_SHOUTED_CLEAR - SPEECH_PARAMS_SHOUTED_CRITICAL - Note: A list of Name and Parameters can be found here pastebin.com/1GZS5dCL - Full list of speeches and voices names by some spanish shitbag: gist.github.com/alexguirre/0af600eb3d4c91ad4f900120a63b8992 - - - - - Plays ambient speech. See also _0x5C57B85D. - See _PLAY_AMBIENT_SPEECH1 for parameter specifications. - Full list of speeches and voices names: gist.github.com/alexguirre/0af600eb3d4c91ad4f900120a63b8992 - - - - - This is the same as _PLAY_AMBIENT_SPEECH1 and _PLAY_AMBIENT_SPEECH2 but it will allow you to play a speech file from a specific voice file. It works on players and all peds, even animals. - EX (C#): - GTA.Native.Function.Call(Hash._0x3523634255FC3318, Game.Player.Character, "GENERIC_INSULT_HIGH", "s_m_y_sheriff_01_white_full_01", "SPEECH_PARAMS_FORCE_SHOUTED", 0); - The first param is the ped you want to play it on, the second is the speech name, the third is the voice name, the fourth is the speech param, and the last param is usually always 0. - Full list of speeches and voices names: gist.github.com/alexguirre/0af600eb3d4c91ad4f900120a63b8992 - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Atleast one time in a script for the zRot Rockstar uses GET_ENTITY_HEADING to help fill the parameter. - p9 is unknown at this time. - p10 throughout all the X360 Scripts is always 2. - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - delta and bitset are guessed fields. They are based on the fact that most of the calls have 0 or nil field types passed in. - The only time bitset has a value is 0x4000 and the only time delta has a value is during stealth with usually <1.0f values. - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Look at facials@gen_male@base and facials@gen_female@base for some common facial animations. - !!!NOTE!!! - Unlike most animation natives, the animation comes BEFORE the animation dictionary here. So you could call e.g. - PLAY_FACIAL_ANIM(ped, "dead_1", "facials@gen_male@base") - - - - - Called 38 times in the scripts. There are 5 different audioNames used. - One unknown removed below. - AUDIO::PLAY_MISSION_COMPLETE_AUDIO("DEAD"); - AUDIO::PLAY_MISSION_COMPLETE_AUDIO("FRANKLIN_BIG_01"); - AUDIO::PLAY_MISSION_COMPLETE_AUDIO("GENERIC_FAILED"); - AUDIO::PLAY_MISSION_COMPLETE_AUDIO("TREVOR_SMALL_01"); - - - - - Needs another parameter [int p2]. The signature is PED::PLAY_PAIN(Ped ped, int painID, int p1, int p2); - Last 2 parameters always seem to be 0. - EX: Function.Call(Hash.PLAY_PAIN, TestPed, 6, 0, 0); - Known Pain IDs - ________________________ - 1 - Doesn't seem to do anything. Does NOT crash the game like previously said. (Latest patch) - 6 - Scream (Short) - 7 - Scared Scream (Kinda Long) - 8 - On Fire - - - - - All found occurrences in b617d, sorted alphabetically and identical lines removed: pastebin.com/RFb4GTny - AUDIO::PLAY_PED_RINGTONE("Remote_Ring", PLAYER::PLAYER_PED_ID(), 1); - AUDIO::PLAY_PED_RINGTONE("Dial_and_Remote_Ring", PLAYER::PLAYER_PED_ID(), 1); - - - - - Please change to void. (Does not return anything!) - Plays the given police radio message. - All found occurrences in b617d, sorted alphabetically and identical lines removed: pastebin.com/GBnsQ5hr - - - - - All found occurrences in b617d, sorted alphabetically and identical lines removed: pastebin.com/A8Ny8AHZ - - - - - All found occurrences in b617d, sorted alphabetically and identical lines removed: pastebin.com/eeFc5DiW - gtaforums.com/topic/795622-audio-for-mods - - - - - All found occurrences in b617d, sorted alphabetically and identical lines removed: pastebin.com/f2A7vTj0 - No changes made in b678d. - gtaforums.com/topic/795622-audio-for-mods - - - - - list: pastebin.com/DCeRiaLJ - All found occurrences in b617d, sorted alphabetically and identical lines removed: pastebin.com/0neZdsZ5 - - - - - Used with AUDIO::LOAD_STREAM - Example from finale_heist2b.c4: - AI::TASK_SYNCHRONIZED_SCENE(l_4C8[2 -- [[14]] ], l_4C8[2 -- [[14]] ]._f7, l_30A, "push_out_vault_l", 4.0, -1.5, 5, 713, 4.0, 0); - PED::SET_SYNCHRONIZED_SCENE_PHASE(l_4C8[2 -- [[14]] ]._f7, 0.0); - PED::_2208438012482A1A(l_4C8[2 -- [[14]] ], 0, 0); - PED::SET_PED_COMBAT_ATTRIBUTES(l_4C8[2 -- [[14]] ], 38, 1); - PED::SET_BLOCKING_OF_NON_TEMPORARY_EVENTS(l_4C8[2 -- [[14]] ], 1); - if (AUDIO::LOAD_STREAM("Gold_Cart_Push_Anim_01", "BIG_SCORE_3B_SOUNDS")) { - AUDIO::PLAY_STREAM_FROM_OBJECT(l_36F[0 -- [[1]] ]); - } - - - - - Examples: - CAM::PLAY_SYNCHRONIZED_CAM_ANIM(l_2734, NETWORK::_02C40BF885C567B6(l_2739), "PLAYER_EXIT_L_CAM", "mp_doorbell"); - CAM::PLAY_SYNCHRONIZED_CAM_ANIM(l_F0D[7 -- [[1]] ], l_F4D[15 -- [[1]] ], "ah3b_attackheli_cam2", "missheistfbi3b_helicrash"); - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - p4 and p7 are usually 1000.0f. - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - This native only comes up once. And in that one instance, p1 is "1". - - - - - p1 appears to only be "0" or "3". I personally use "0" as p1. - - - - - Only 1 match. ob_sofa_michael. - PLAYER::PLAYER_ATTACH_VIRTUAL_BOUND(-804.5928f, 173.1801f, 71.68436f, 0f, 0f, 0.590625f, 1f, 0.7f);1.0.335.2, 1.0.350.1/2, 1.0.372.2, 1.0.393.2, 1.0.393.4, 1.0.463.1; - - - - - 1.0.335.2, 1.0.350.1/2, 1.0.372.2, 1.0.393.2, 1.0.393.4, 1.0.463.1; - - - - - This returns YOUR 'identity' as a Player type. - Always returns 0 in story mode. - - - - - Returns current player ped - - - - - **This native does absolutely nothing, just a nullsub** - - - - - p5 always seems to be 1 i.e TRUE - - - - - Parameters p0-p5 seems correct. The bool p6 is unknown, but through every X360 script it's always 1. Please correct p0-p5 if any prove to be wrong. - - - - - spawns a few distant/out-of-sight peds, vehicles, animals etc each time it is called - - - - - This native is used to attribute the SRL that BeginSrl is going to load. This is usually used for 'in-game' cinematics (not cutscenes but camera stuff) instead of SetFocusArea because it loads a specific area of the map which is pretty useful when the camera moves from distant areas. - For instance, GTA:O opening cutscene. - <https://pastebin.com/2EeKVeLA> : a list of SRL found in srllist.meta - <https://pastebin.com/zd9XYUWY> : here is the content of a SRL file opened with codewalker. - - A SRL name. - - - - Example: - bool prepareAlarm = AUDIO::PREPARE_ALARM("PORT_OF_LS_HEIST_FORT_ZANCUDO_ALARMS"); - - - - - All music event names found in the b617d scripts: pastebin.com/GnYt0R3P - - - - - This isn't a hash collision. It is used to give the player cash via the CASH_GIFT stats. - - - - - This isn't a hash collision. It is used to give the player cash via the CASH_GIFT stats. - - - - - Called to update entity attachments. - When using ATTACH_ENTITY_TO_ENTITY and using bone '0' then you set the first entity invisible. The attachments will mess up, use bone '-1' to fix that issue - - - - - This method is the equivalent to PUSH_SCALEFORM_MOVIE_FUNCTION_PARAMETER_STRING when using it to add a new button (like "INSTRUCTIONAL_BUTTONS"). - When switching with a controller, the icons update and become the controller's icons. - - - - - This method is the equivalent to PUSH_SCALEFORM_MOVIE_FUNCTION_PARAMETER_STRING when using it to add a new button (like "INSTRUCTIONAL_BUTTONS"). - When switching with a controller, the icons update and become the controller's icons. - - - - - GRAPHICS::\_0x77FE3402004CD1B0(HUD::\_GET_LABEL_TEXT("YACHT_GSY")); - GRAPHICS::\_0x77FE3402004CD1B0(PLAYER::GET_PLAYER_NAME(PLAYER::PLAYER_ID())); - Both \_0xBA7148484BD90365 / \_0x77FE3402004CD1B0 works, but \_0x77FE3402004CD1B0 is usually used for "name" (organisation, players..). - - - - - GRAPHICS::\_0x77FE3402004CD1B0(HUD::\_GET_LABEL_TEXT("YACHT_GSY")); - GRAPHICS::\_0x77FE3402004CD1B0(PLAYER::GET_PLAYER_NAME(PLAYER::PLAYER_ID())); - Both \_0xBA7148484BD90365 / \_0x77FE3402004CD1B0 works, but \_0x77FE3402004CD1B0 is usually used for "name" (organisation, players..). - - - - - **Experimental**: This native may be altered or removed in future versions of CitizenFX without warning. - Registers a set of archetypes with the game engine. These should match `CBaseArchetypeDef` class information from the game. - - A function returning a list of archetypes. - - - - Registered commands can be executed by entering them in the client console (this works for client side and server side registered commands). Or by entering them in the server console/through an RCON client (only works for server side registered commands). Or if you use a supported chat resource, like the default one provided in the cfx-server-data repository, then you can enter the command in chat by prefixing it with a `/`. - Commands registered using this function can also be executed by resources, using the [`ExecuteCommand` native](#_0x561C060B). - The restricted bool is not used on the client side. Permissions can only be checked on the server side, so if you want to limit your command with an ace permission automatically, make it a server command (by registering it in a server script). - **Example result**: - ![](https://i.imgur.com/TaCnG09.png) - - The command you want to register. - A handler function that gets called whenever the command is executed. - If this is a server command and you set this to true, then players will need the command.yourCommandName ace permission to execute this command. - - - - **Experimental**: This native may be altered or removed in future versions of CitizenFX without warning. - Registers a set of entities with the game engine. These should match `CEntityDef` class information from the game. - At this time, this function **should not be used in a live environment**. - - A function returning a list of entities. - - - - Registers a specified .gfx file as GFx font library. - The .gfx file has to be registered with the streamer already. - - The name of the .gfx file, without extension. - - - - Registers a specified font name for use with text draw commands. - - The name of the font in the GFx font library. - An index to use with [SET_TEXT_FONT](#_0x66E0276CC5F6B9DA) and similar natives. - - - - Based on TASK_COMBAT_HATED_TARGETS_AROUND_PED, the parameters are likely similar (PedHandle, and area to attack in). - - - - - Registers a script for any object with a specific model hash. - BRAIN::REGISTER_OBJECT_SCRIPT_BRAIN("ob_telescope", ${prop_telescope_01}, 100, 4.0, -1, 9); - - - - - gtaforums.com/topic/885580-ped-headshotmugshot-txd/ - - - - - Similar to REGISTER_PEDHEADSHOT but creates a transparent background instead of black. - **Result of the example code:** - <https://i.imgur.com/iHz8ztn.png> - - A ped handle. - The Pedheadshot handle. - - - - Similar to REGISTER_PEDHEADSHOT but creates a transparent background instead of black. - **Result of the example code:** - <https://i.imgur.com/iHz8ztn.png> - - A ped handle. - The Pedheadshot handle. - - - - An internal function which allows the current resource's HLL script runtimes to receive state for the specified event. - - An event name, or "\*" to disable HLL event filtering for this resource. - - - - **This native does absolutely nothing, just a nullsub** - - - - - **Experimental**: This native may be altered or removed in future versions of CitizenFX without warning. - Registers a dynamic streaming asset from the server with the GTA streaming module system. - - The resource to add the asset to. - A file name in the resource. - The string returned from `REGISTER_RESOURCE_ASSET` on the server. - - - - **Experimental**: This native may be altered or removed in future versions of CitizenFX without warning. - Registers a KVP value as an asset with the GTA streaming module system. This function currently won't work. - - The KVP key in the current resource to register as an asset. - - - - **Experimental**: This native may be altered or removed in future versions of CitizenFX without warning. - Registers a file from an URL as a streaming asset in the GTA streaming subsystem. This will asynchronously register the asset, and caching is done based on the URL itself - cache headers are ignored. - Use `IS_STREAMING_FILE_READY` to check if the asset has been registered successfully. - - The file name to register as, for example `asset.ydr`. - The URL to fetch the asset from. - - - - PED::REGISTER_TARGET(l_216, PLAYER::PLAYER_PED_ID()); from re_prisonbreak.txt. - l_216 = RECSBRobber1 - - - - - setting the last params to false it does that same so I would suggest its not a toggle - - - - - Pickup hashes: pastebin.com/8EuSv2r1 - - - - - p1 seems always to be 0 - - - - - Unloads the specified animation set. An animation set provides movement animations for a ped. See SET_PED_MOVEMENT_CLIPSET. - Animation set and clip set are synonymous. - - - - - In the C++ SDK, this seems not to work-- the blip isn't removed immediately. I use it for saving cars. - E.g.: - Ped pped = PLAYER::PLAYER_PED_ID(); - Vehicle v = PED::GET_VEHICLE_PED_IS_USING(pped); - Blip b = UI::ADD_BLIP_FOR_ENTITY(v); - works fine. - But later attempting to delete it with: - Blip b = UI::GET_BLIP_FROM_ENTITY(v); - if (UI::DOES_BLIP_EXIST(b)) UI::REMOVE_BLIP(&b); - doesn't work. And yes, doesn't work without the DOES_BLIP_EXIST check either. Also, if you attach multiple blips to the same thing (say, a vehicle), and that thing disappears, the blips randomly attach to other things (in my case, a vehicle). - Thus for me, UI::REMOVE_BLIP(&b) only works if there's one blip, (in my case) the vehicle is marked as no longer needed, you drive away from it and it eventually despawns, AND there is only one blip attached to it. I never intentionally attach multiple blips but if the user saves the car, this adds a blip. Then if they delete it, it is supposed to remove the blip, but it doesn't. Then they can immediately save it again, causing another blip to re-appear. - ------------- - Passing the address of the variable instead of the value works for me. - e.g. - int blip = UI::ADD_BLIP_FOR_ENTITY(ped); - UI::REMOVE_BLIP(&blip); - Remove blip will currently crash your game, just artificially remove the blip by setting the sprite to a id that is 'invisible'. - -- - It crashes my game. - - - - - Alias for REMOVE_ANIM_SET. - - - - - p0 is the handle returned from _0xFDBF4CDBC07E1706 - - - - - p0 is the handle returned from _0xFDBF4CDBC07E1706 - - - - - Removes all decals in range from a position, it includes the bullet holes, blood pools, petrol... - - - - - IPL list: pastebin.com/iNGLY32D - - - - - Removes the loading prompt at the bottom right of the screen, created by the UI::_SHOW_LOADING_PROMPT native. - - - - - Removes the loading prompt at the bottom right of the screen, created by the UI::_SHOW_LOADING_PROMPT native. - - - - - Removes multiplayer cash hud each frame - - - - - assetName = For example "core" - console hash: 0xC44762A1 - - - - - Removes a notification instantly instead of waiting for it to disappear - - - - - Ped will no longer get angry when you stay near him. - - - - - Judging purely from a quick disassembly, if the ped is in a vehicle, the ped will be deleted immediately. If not, it'll be marked as no longer needed. - very elegant.. - - - - - Retracts the hook on the cargobob. - Note: after you retract it the natives for dropping the hook no longer work - - - - - Retracts the hook on the cargobob. - Note: after you retract it the natives for dropping the hook no longer work - - - - - Experimental natives, please do not use in a live environment. - - - - - Used to remove a speedzone. - This is the speed zone native. - Example usage C#: - uint speedZone = Function.Call<uint>((Hash) 0x2CE544C68FB812A0, Game.PlayerPed.Position.X, Game.PlayerPed.Position.Y, Game.PlayerPed.Position.Z, 100.0f, 0.0f, false); - bool speedZoneClosed = Function.Call<bool>((Hash) 0x1033371FC8E842A7, speedZone); - (Thanks to alexguirre for his help!) - - - - - Used to remove a speedzone. - This is the speed zone native. - Example usage C#: - uint speedZone = Function.Call<uint>((Hash) 0x2CE544C68FB812A0, Game.PlayerPed.Position.X, Game.PlayerPed.Position.Y, Game.PlayerPed.Position.Z, 100.0f, 0.0f, false); - bool speedZoneClosed = Function.Call<bool>((Hash) 0x1033371FC8E842A7, speedZone); - (Thanks to alexguirre for his help!) - - - - - Appears to remove stealth kill action from memory. - ------------------------------------ - I agree with the above statement. - p1 is unknown, my best guess would be if false it marks the stealth kill for immediate deletion, or if true marks it for deletion later. - - - - - Appears to remove stealth kill action from memory. - ------------------------------------ - I agree with the above statement. - p1 is unknown, my best guess would be if false it marks the stealth kill for immediate deletion, or if true marks it for deletion later. - - - - - windowIndex: - 0 = Front Right Window - 1 = Front Left Window - 2 = Back Right Window - 3 = Back Left Window - - - - - For a full list, see here: pastebin.com/Tp0XpBMN - - - - - This native removes a specified weapon from your selected ped. - Weapon Hashes: pastebin.com/0wwDZgkF - Example: - C#: - Function.Call(Hash.REMOVE_WEAPON_FROM_PED, Game.Player.Character, 0x99B507EA); - C++: - WEAPON::REMOVE_WEAPON_FROM_PED(PLAYER::PLAYER_PED_ID(), 0x99B507EA); - The code above removes the knife from the player. - - - - - This native makes the gameplay camera zoom into first person/third person with a special effect. - For example, if you were first person in a mission and after the cutscene ends, the camera would then zoom into the first person camera view. - if (CAM::GET_FOLLOW_PED_CAM_VIEW_MODE() != 4) - CAM::_C819F3CBB62BF692(1, 0, 3, 0) - This makes the camera zoom in to first person. - -------------------------------------------- - 1st Param Options: 0 or 1 (Changes quit often, toggle?) - 2nd Param Options: 0, 0f, 1f, 3.8f, 10f, 20f (Mostly 0) - 3rd Param Options: 3, 2, 1 (Mostly 3); - Note for the 2nd param 10f (offroad_race.c) and 3rd param 20f (range_modern.c) are the only times those 2 high floats are called. - Note for the 3rd param 2 is only ever set in (franklin0.c), but it also sets it as 3. (0, 0, 3) ||(0, 0f, 2) || (0, 0, 3) - - - - - This native makes the gameplay camera zoom into first person/third person with a special effect. - For example, if you were first person in a mission and after the cutscene ends, the camera would then zoom into the first person camera view. - if (CAM::GET_FOLLOW_PED_CAM_VIEW_MODE() != 4) - CAM::_C819F3CBB62BF692(1, 0, 3, 0) - This makes the camera zoom in to first person. - -------------------------------------------- - 1st Param Options: 0 or 1 (Changes quit often, toggle?) - 2nd Param Options: 0, 0f, 1f, 3.8f, 10f, 20f (Mostly 0) - 3rd Param Options: 3, 2, 1 (Mostly 3); - Note for the 2nd param 10f (offroad_race.c) and 3rd param 20f (range_modern.c) are the only times those 2 high floats are called. - Note for the 3rd param 2 is only ever set in (franklin0.c), but it also sets it as 3. (0, 0, 3) ||(0, 0f, 2) || (0, 0, 3) - - - - - ease - smooth transition between the camera's positions - easeTime - Time in milliseconds for the transition to happen - If you have created a script (rendering) camera, and want to go back to the - character (gameplay) camera, call this native with render set to 0. - Setting ease to 1 will smooth the transition. - - - - - PLAYER::REPORT_CRIME(PLAYER::PLAYER_ID(), 37, PLAYER::GET_WANTED_LEVEL_THRESHOLD(1)); - From am_armybase.ysc.c4: - PLAYER::REPORT_CRIME(PLAYER::PLAYER_ID(4), 36, PLAYER::GET_WANTED_LEVEL_THRESHOLD(4)); - ----- - This was taken from the GTAV.exe v1.334. The function is called sub_140592CE8. For a full decompilation of the function, see here: pastebin.com/09qSMsN7 - ----- - crimeType: - 1: Firearms possession - 2: Person running a red light ("5-0-5") - 3: Reckless driver - 4: Speeding vehicle (a "5-10") - 5: Traffic violation (a "5-0-5") - 6: Motorcycle rider without a helmet - 7: Vehicle theft (a "5-0-3") - 8: Grand Theft Auto - 9: ??? - 10: ??? - 11: Assault on a civilian (a "2-40") - 12: Assault on an officer - 13: Assault with a deadly weapon (a "2-45") - 14: Officer shot (a "2-45") - 15: Pedestrian struck by a vehicle - 16: Officer struck by a vehicle - 17: Helicopter down (an "AC"?) - 18: Civilian on fire (a "2-40") - 19: Officer set on fire (a "10-99") - 20: Car on fire - 21: Air unit down (an "AC"?) - 22: An explosion (a "9-96") - 23: A stabbing (a "2-45") (also something else I couldn't understand) - 24: Officer stabbed (also something else I couldn't understand) - 25: Attack on a vehicle ("MDV"?) - 26: Damage to property - 27: Suspect threatening officer with a firearm - 28: Shots fired - 29: ??? - 30: ??? - 31: ??? - 32: ??? - 33: ??? - 34: A "2-45" - 35: ??? - 36: A "9-25" - 37: ??? - 38: ??? - 39: ??? - 40: ??? - 41: ??? - 42: ??? - 43: Possible disturbance - 44: Civilian in need of assistance - 45: ??? - 46: ??? - - - - - MulleDK19: Alias of REQUEST_COLLISION_AT_COORD. - - - - - Request a gxt into the passed slot. - - - - - All occurrences and usages found in b617d, sorted alphabetically and identical lines removed: pastebin.com/XZ1tmGEz - - - - - Starts loading the specified animation set. An animation set provides movement animations for a ped. See SET_PED_MOVEMENT_CLIPSET. - - - - - p1: usually 8 - Cutscene list: pastebin.com/Bbj7ANpQ - - - - - Example: - CUTSCENE::_0xC23DE0E91C30B58C("JOSH_1_INT_CONCAT", 13, 8); - Cutscene list: pastebin.com/Bbj7ANpQ - - - - - Example: - CUTSCENE::_0xC23DE0E91C30B58C("JOSH_1_INT_CONCAT", 13, 8); - Cutscene list: pastebin.com/Bbj7ANpQ - - - - - http://gtaforums.com/topic/717612-v-scriptnative-documentation-and-research/?p=1068285912 - - - - - http://gtaforums.com/topic/717612-v-scriptnative-documentation-and-research/?p=1068285912 - - - - - REQUEST_* - Something to do with interiors that have been loaded. - STREAMING::_8A7A40100EDFEC58(l_13BC, "V_FIB01_cur_elev"); - STREAMING::_8A7A40100EDFEC58(l_13BC, "limbo"); - STREAMING::_8A7A40100EDFEC58(l_13BB, "V_Office_gnd_lifts"); - STREAMING::_8A7A40100EDFEC58(l_13BB, "limbo"); - STREAMING::_8A7A40100EDFEC58(l_13BC, "v_fib01_jan_elev"); - STREAMING::_8A7A40100EDFEC58(l_13BC, "limbo"); - - - - - REQUEST_* - Something to do with interiors that have been loaded. - STREAMING::_8A7A40100EDFEC58(l_13BC, "V_FIB01_cur_elev"); - STREAMING::_8A7A40100EDFEC58(l_13BC, "limbo"); - STREAMING::_8A7A40100EDFEC58(l_13BB, "V_Office_gnd_lifts"); - STREAMING::_8A7A40100EDFEC58(l_13BB, "limbo"); - STREAMING::_8A7A40100EDFEC58(l_13BC, "v_fib01_jan_elev"); - STREAMING::_8A7A40100EDFEC58(l_13BC, "limbo"); - - - - - IPL list: pastebin.com/iNGLY32D - - - - - streaming::request_menu_ped_model(joaat("player_zero")); - iVar0 = ped::create_ped(25, joaat("player_zero"), cam::_get_gameplay_cam_coords(), 0f, 0, false); - entity::freeze_entity_position(iVar0, true); - ped::_0x4668d80430d6c299(iVar0); - ui::give_ped_to_pause_menu(iVar0, 1); - - - - - streaming::request_menu_ped_model(joaat("player_zero")); - iVar0 = ped::create_ped(25, joaat("player_zero"), cam::_get_gameplay_cam_coords(), 0f, 0, false); - entity::freeze_entity_position(iVar0, true); - ped::_0x4668d80430d6c299(iVar0); - ui::give_ped_to_pause_menu(iVar0, 1); - - - - - All occurrences and usages found in b617d: pastebin.com/NzZZ2Tmm - - - - - Request a model to be loaded into memory - Looking it the disassembly, it seems like it actually returns the model if it's already loaded. - - - - - assetName = For example "core" - From the b678d decompiled scripts: - STREAMING::REQUEST_NAMED_PTFX_ASSET("core_snow"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("fm_mission_controler"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("proj_xmas_firework"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_apartment_mp"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_biolab_heist"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_indep_fireworks"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_indep_parachute"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_indep_wheelsmoke"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_mp_cig_plane"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_mp_creator"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_mp_tankbattle"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_ornate_heist"); - STREAMING::REQUEST_NAMED_PTFX_ASSET("scr_prison_break_heist_station"); - - - - - maps script name (thread + 0xD0) by lookup via scriptfx.dat - does nothing when script name is empty - - - - - GTA V Scaleforms Decompiled - pastebin.com/mmNdjX2k - Gets a new native after almost every update. - Update 1.0.393.2 - 0x67D02A194A2FC2BD - Update 1.0.463.1 - 0xC97D787CE7726A2F - Update 1.0.505.2 - 0x36ECDA4DD9A3F08D - Update 1.0.573.1 - 0xE3C796DC28BC3254 - Update 1.0.678.1 - 0x2F14983962462691 - - - - - Also used by 0x67D02A194A2FC2BD - - - - - Similar to REQUEST_SCALEFORM_MOVIE, but seems to be some kind of "interactive" scaleform movie? - These seem to be the only scaleforms ever requested by this native: - "breaking_news" - "desktop_pc" - "ECG_MONITOR" - "Hacking_PC" - "TEETH_PULLING" - Note: Unless this hash is out-of-order, this native is next-gen only. - - - - - Similar to REQUEST_SCALEFORM_MOVIE, but seems to be some kind of "interactive" scaleform movie? - These seem to be the only scaleforms ever requested by this native: - "breaking_news" - "desktop_pc" - "ECG_MONITOR" - "Hacking_PC" - "TEETH_PULLING" - Note: Unless this hash is out-of-order, this native is next-gen only. - - - - - For a full list, see here: pastebin.com/yLNWicUi - - - - - All occurrences and usages found in b617d, sorted alphabetically and identical lines removed: pastebin.com/AkmDAVn6 - - - - - formerly _REQUEST_STREAMED_SCRIPT - - - - - formerly _REQUEST_STREAMED_SCRIPT - - - - - last param seems to be unused in disassembly - - - - - REQUEST_VEHICLE_ASSET(GET_HASH_KEY(cargobob3), 3); - vehicle found that have asset's: - cargobob3 - submersible - blazer - - - - - used for the remote vehicle explode thing with phones - - - - - used for the remote vehicle explode thing with phones - - - - - In script files, seen as REQUEST_VEHICLE_RECORDING(1, "FBIs1UBER"); - - - - - For a full list, see here: pastebin.com/Tp0XpBMN - For a full list of the points, see here: goo.gl/wIH0vn - Max number of loaded recordings is 32. - - - - - Nearly every instance of p1 I found was 31. Nearly every instance of p2 I found was 0. - REQUEST_WEAPON_ASSET(iLocal_1888, 31, 26); - - - - - Sets the waves intensity back to original (1.0 in most cases). - - - - - Sets the waves intensity back to original (1.0 in most cases). - - - - - Sets the waves intensity back to original (1.0 in most cases). - - - - - Sets (almost, not sure) all Rockstar Editor values (bIsRecording etc) to 0. - - - - - Sets (almost, not sure) all Rockstar Editor values (bIsRecording etc) to 0. - - - - - Resets the extra timecycle modifier strength normally set with [`SetExtraTimecycleModifierStrength`](#_0x2C328AF17210F009) - - - - - Resets the extra timecycle modifier strength normally set with [`SetExtraTimecycleModifierStrength`](#_0x2C328AF17210F009) - - - - - Sets the localplayer playerinfo state back to playing (State 0) - States are: - -1: "Invalid" - 0: "Playing" - 1: "Died" - 2: "Arrested" - 3: "Failed Mission" - 4: "Left Game" - 5: "Respawn" - 6: "In MP Cutscene" - - - - - console hash: 0x9E8D8B72 - Resets the effect of _SET_PARTICLE_FX_ASSET_OLD_TO_NEW - - - - - console hash: 0x9E8D8B72 - Resets the effect of _SET_PARTICLE_FX_ASSET_OLD_TO_NEW - - - - - Resets the value for the last vehicle driven by the Ped. - - - - - If p1 is 0.0, I believe you are back to normal. - If p1 is 1.0, it looks like you can only rotate the ped, not walk. - Using the following code to reset back to normal - PED::RESET_PED_MOVEMENT_CLIPSET(PLAYER::PLAYER_PED_ID(), 0.0); - - - - - There seem to be 26 flags - - - - - There seem to be 26 flags - - - - - This function resets the alignment set using `SET_SCRIPT_GFX_ALIGN` and `SET_SCRIPT_GFX_ALIGN_PARAMS` to the default - values ('I', 'I'; 0, 0, 0, 0). This should be used after having used the aforementioned functions in order to not affect - any other scripts attempting to draw. - - - - - This function resets the alignment set using `SET_SCRIPT_GFX_ALIGN` and `SET_SCRIPT_GFX_ALIGN_PARAMS` to the default - values ('I', 'I'; 0, 0, 0, 0). This should be used after having used the aforementioned functions in order to not affect - any other scripts attempting to draw. - - - - - This function resets the alignment set using `SET_SCRIPT_GFX_ALIGN` and `SET_SCRIPT_GFX_ALIGN_PARAMS` to the default - values ('I', 'I'; 0, 0, 0, 0). This should be used after having used the aforementioned functions in order to not affect - any other scripts attempting to draw. - - - - - The inner function has a switch on the second parameter. It's the stuck timer index. - Here's some pseudo code I wrote for the inner function: - void __fastcall NATIVE_RESET_VEHICLE_STUCK_TIMER_INNER(CUnknown* unknownClassInVehicle, int timerIndex) - { - switch (timerIndex) - { - case 0: - unknownClassInVehicle->FirstStuckTimer = (WORD)0u; - case 1: - unknownClassInVehicle->SecondStuckTimer = (WORD)0u; - case 2: - unknownClassInVehicle->ThirdStuckTimer = (WORD)0u; - case 3: - unknownClassInVehicle->FourthStuckTimer = (WORD)0u; - case 4: - unknownClassInVehicle->FirstStuckTimer = (WORD)0u; - unknownClassInVehicle->SecondStuckTimer = (WORD)0u; - unknownClassInVehicle->ThirdStuckTimer = (WORD)0u; - unknownClassInVehicle->FourthStuckTimer = (WORD)0u; - break; - }; - } - - - - - Please change back to _0xBD12C5EEE184C33 (hash collision) - actual native starts with SET_RADAR_ZOOM_... - - - - - Before using this native click the native above and look at the decription. - Example: - int GetHash = Function.Call<int>(Hash.GET_HASH_KEY, "fe_menu_version_corona_lobby"); - Function.Call(Hash.ACTIVATE_FRONTEND_MENU, GetHash, 0, -1); - Function.Call(Hash.RESTART_FRONTEND_MENU(GetHash, -1); - This native refreshes the frontend menu. - p1 = Hash of Menu - p2 = Unknown but always works with -1. - - - - - This function will simply bring the dead person back to life. - Try not to use it alone, since using this function alone, will make peds fall through ground in hell(well for the most of the times). - Instead, before calling this function, you may want to declare the position, where your Resurrected ped to be spawn at.(For instance, Around 2 floats of Player's current position.) - Also, disabling any assigned task immediately helped in the number of scenarios, where If you want peds to perform certain decided tasks. - - - - - It returns two lol - li r3, 2 - blr - thats all it does. - mov dword ptr [rax], 2 - Заебись функционал - - - - - It returns two lol - li r3, 2 - blr - thats all it does. - mov dword ptr [rax], 2 - Заебись функционал - - - - - It will revive/cure the injured ped. The condition is ped must not be dead. - Upon setting and converting the health int, found, if health falls below 5, the ped will lay on the ground in pain(Maximum default health is 100). - This function is well suited there. - - - - - windowIndex: - 0 = Front Right Window - 1 = Front Left Window - 2 = Back Right Window - 3 = Back Left Window - - - - - Roll down all the windows of the vehicle passed through the first parameter. - - - - - 0 = Front Right Window - 1 = Front Left Window - 2 = Back Right Window - 3 = Back Left Window - - - - - Forces a rope to a certain length. - - - - - Loads rope textures for all ropes in the current scene. - - - - - Reset a rope to a certain length. - - - - - Unloads rope textures for all ropes in the current scene. - - - - - Returns the status of a _SC_START_CHECK_STRING_TASK task. - Possible return values: - 0: not a profane string - 1: a profane string - 3: server error occurred - - - - - Returns the status of a _SC_START_CHECK_STRING_TASK task. - Possible return values: - 0: not a profane string - 1: a profane string - 3: server error occurred - - - - - Returns the nickname of the logged-in Rockstar Social Club account. - - - - - Returns whether or not a task started with _SC_START_CHECK_STRING_TASK has completed. - - - - - Returns whether or not a task started with _SC_START_CHECK_STRING_TASK has completed. - - - - - Starts a task to check an entered string for profanity on the ROS/Social Club services. - See also: 1753344C770358AE, 82E4A58BABC15AE7. - - - - - Starts a task to check an entered string for profanity on the ROS/Social Club services. - See also: 1753344C770358AE, 82E4A58BABC15AE7. - - - - - Pushes a boolean for the Scaleform function onto the stack. - - - - - Pushes a boolean for the Scaleform function onto the stack. - - - - - Pushes a boolean for the Scaleform function onto the stack. - - - - - Pushes a float for the Scaleform function onto the stack. - - - - - Pushes a float for the Scaleform function onto the stack. - - - - - Pushes a float for the Scaleform function onto the stack. - - - - - Pushes an integer for the Scaleform function onto the stack. - - - - - Pushes an integer for the Scaleform function onto the stack. - - - - - Pushes an integer for the Scaleform function onto the stack. - - - - - If bool Toggle = true so the mobile is hide to screen. - If bool Toggle = false so the mobile is show to screen. - - - - - Sends a message to the specific DUI root page. This is similar to SEND_NUI_MESSAGE. - - The DUI browser handle. - The message, encoded as JSON. - - - - Injects a 'mouse down' event for a DUI object. Coordinates are expected to be set using SEND_DUI_MOUSE_MOVE. - - The DUI browser handle. - Either `'left'`, `'middle'` or `'right'`. - - - - Injects a 'mouse move' event for a DUI object. Coordinates are in browser space. - - The DUI browser handle. - The mouse X position. - The mouse Y position. - - - - Injects a 'mouse up' event for a DUI object. Coordinates are expected to be set using SEND_DUI_MOUSE_MOVE. - - The DUI browser handle. - Either `'left'`, `'middle'` or `'right'`. - - - - Injects a 'mouse wheel' event for a DUI object. - - The DUI browser handle. - The wheel Y delta. - The wheel X delta. - - - - Sends a message to the `loadingScreen` NUI frame, which contains the HTML page referenced in `loadscreen` resources. - - The JSON-encoded message. - A success value. - - - - If 'value' is 50 and 'maxValue' is 100, the bar is halfway filled. - Same with 5/10, 2/4, etc. - - - - - This seems to be related to Steam achievements. - p0 and p1 are int (?) - ------ - Can't say anything about the Steam version but it is hardcoded to always return false in the retail version. - Dr. Underscore (1/6/18): - This has to do with achievement progression. If this achievement has progression, it will set the progression of it to this value. - Only tested on un-achieved achievements, Steamworks probably just rejects it if it has already been achieved. - Steamworks also seems to not like reversing achievement progression. - - - - - This seems to be related to Steam achievements. - p0 and p1 are int (?) - ------ - Can't say anything about the Steam version but it is hardcoded to always return false in the retail version. - Dr. Underscore (1/6/18): - This has to do with achievement progression. If this achievement has progression, it will set the progression of it to this value. - Only tested on un-achieved achievements, Steamworks probably just rejects it if it has already been achieved. - Steamworks also seems to not like reversing achievement progression. - - - - - Makes pedestrians sound their horn longer, faster and more agressive when they use their horn. - - - - - Previously named _0x97C65887D4B37FA9. - Sets the maximum view distance for the AI BIP - - - - - Previously named _0x97C65887D4B37FA9. - Sets the maximum view distance for the AI BIP - - - - - Set a ped's AI blip type: - 1 - Yellow blip with no name - 2 - - - - - Set a ped's AI blip type: - 1 - Yellow blip with no name - 2 - - - - - This can be between 1.0f - 14.9f - You can change the max in IDA from 15.0. I say 15.0 as the function blrs if what you input is greater than or equal to 15.0 hence why it's 14.9 max default. - On PC the multiplier can be between 0.0f and 50.0f (inclusive). - - - - - Sets the amount of bombs that this vehicle has. As far as I know, this does _not_ impact vehicle weapons or the ammo of those weapons in any way, it is just a way to keep track of the amount of bombs in a specific plane. - In decompiled scripts this is used to deduct from or add to the count whenever bombs are dropped or purchased/restocked. - Use [`_GET_AIRCRAFT_BOMB_COUNT`](#_0xEA12BD130D7569A1) to get the amount of bombs on that vehicle. - - The vehicle to set the bombCount on. - The amount of bombs to set for this vehicle. - - - - Sets the amount of bombs that this vehicle has. As far as I know, this does _not_ impact vehicle weapons or the ammo of those weapons in any way, it is just a way to keep track of the amount of bombs in a specific plane. - In decompiled scripts this is used to deduct from or add to the count whenever bombs are dropped or purchased/restocked. - Use [`_GET_AIRCRAFT_BOMB_COUNT`](#_0xEA12BD130D7569A1) to get the amount of bombs on that vehicle. - - The vehicle to set the bombCount on. - The amount of bombs to set for this vehicle. - - - - Sets the amount of bombs that this vehicle has. As far as I know, this does _not_ impact vehicle weapons or the ammo of those weapons in any way, it is just a way to keep track of the amount of bombs in a specific plane. - In decompiled scripts this is used to deduct from or add to the count whenever bombs are dropped or purchased/restocked. - Use [`_GET_AIRCRAFT_BOMB_COUNT`](#_0xEA12BD130D7569A1) to get the amount of bombs on that vehicle. - - The vehicle to set the bombCount on. - The amount of bombs to set for this vehicle. - - - - Similar to [`_SET_AIRCRAFT_BOMB_COUNT`](#_0xF4B2ED59DEB5D774), this sets the amount of countermeasures that are present on this vehicle. - Use [`_GET_AIRCRAFT_COUNTERMEASURE_COUNT`](#_0xF846AA63DF56B804) to get the current amount. - - The vehicle to set the amount of countermeasures on. - The amount of countermeasures to set on this vehicle. - - - - Similar to [`_SET_AIRCRAFT_BOMB_COUNT`](#_0xF4B2ED59DEB5D774), this sets the amount of countermeasures that are present on this vehicle. - Use [`_GET_AIRCRAFT_COUNTERMEASURE_COUNT`](#_0xF846AA63DF56B804) to get the current amount. - - The vehicle to set the amount of countermeasures on. - The amount of countermeasures to set on this vehicle. - - - - Most likely a hash collision - - - - - Audio List - gtaforums.com/topic/795622-audio-for-mods/ - All found occurrences in b617d, sorted alphabetically and identical lines removed: pastebin.com/FTeAj4yZ - Yes - - - - - All occurrences found in b617d, sorted alphabetically and identical lines removed: pastebin.com/WkXDGgQL - New Ambient Zone List (Combind with old): pastebin.com/h8BsKgUD -DasChaos - - - - - All occurrences found in b617d, sorted alphabetically and identical lines removed: pastebin.com/jYvw7N1S - New Ambient Zone List (Combind with old): pastebin.com/h8BsKgUD -DasChaos - - - - - mood can be 0 or 1 (it's not a boolean value!). Effects audio of the animal. - - - - - Does not affect weapons, particles, fire/explosions, flashlights or the sun. - When set to true, all emissive textures (including ped components that have light effects), street lights, building lights, vehicle lights, etc will all be turned off. - Used in Humane Labs Heist for EMP. - - True turns off all artificial light sources in the map: buildings, street lights, car lights, etc. False turns them back on. - - - - Does not affect weapons, particles, fire/explosions, flashlights or the sun. - When set to true, all emissive textures (including ped components that have light effects), street lights, building lights, vehicle lights, etc will all be turned off. - Used in Humane Labs Heist for EMP. - - True turns off all artificial light sources in the map: buildings, street lights, car lights, etc. False turns them back on. - - - - Possible flag names: - "ActivateSwitchWheelAudio" - "AllowAmbientSpeechInSlowMo" - "AllowCutsceneOverScreenFade" - "AllowForceRadioAfterRetune" - "AllowPainAndAmbientSpeechToPlayDuringCutscene" - "AllowPlayerAIOnMission" - "AllowPoliceScannerWhenPlayerHasNoControl" - "AllowRadioDuringSwitch" - "AllowRadioOverScreenFade" - "AllowScoreAndRadio" - "AllowScriptedSpeechInSlowMo" - "AvoidMissionCompleteDelay" - "DisableAbortConversationForDeathAndInjury" - "DisableAbortConversationForRagdoll" - "DisableBarks" - "DisableFlightMusic" - "DisableReplayScriptStreamRecording" - "EnableHeadsetBeep" - "ForceConversationInterrupt" - "ForceSeamlessRadioSwitch" - "ForceSniperAudio" - "FrontendRadioDisabled" - "HoldMissionCompleteWhenPrepared" - "IsDirectorModeActive" - "IsPlayerOnMissionForSpeech" - "ListenerReverbDisabled" - "LoadMPData" - "MobileRadioInGame" - "OnlyAllowScriptTriggerPoliceScanner" - "PlayMenuMusic" - "PoliceScannerDisabled" - "ScriptedConvListenerMaySpeak" - "SpeechDucksScore" - "SuppressPlayerScubaBreathing" - "WantedMusicDisabled" - "WantedMusicOnMission" - ------------------------------- - No added flag names between b393d and b573d, including b573d. - ####################################################################### - "IsDirectorModeActive" is an audio flag which will allow you to play speech infinitely without any pauses like in Director Mode. - ----------------------------------------------------------------------- - All flag IDs and hashes: - ID: 01 | Hash: 0x20A7858F - ID: 02 | Hash: 0xA11C2259 - ID: 03 | Hash: 0x08DE4700 - ID: 04 | Hash: 0x989F652F - ID: 05 | Hash: 0x3C9E76BA - ID: 06 | Hash: 0xA805FEB0 - ID: 07 | Hash: 0x4B94EA26 - ID: 08 | Hash: 0x803ACD34 - ID: 09 | Hash: 0x7C741226 - ID: 10 | Hash: 0x31DB9EBD - ID: 11 | Hash: 0xDF386F18 - ID: 12 | Hash: 0x669CED42 - ID: 13 | Hash: 0x51F22743 - ID: 14 | Hash: 0x2052B35C - ID: 15 | Hash: 0x071472DC - ID: 16 | Hash: 0xF9928BCC - ID: 17 | Hash: 0x7ADBDD48 - ID: 18 | Hash: 0xA959BA1A - ID: 19 | Hash: 0xBBE89B60 - ID: 20 | Hash: 0x87A08871 - ID: 21 | Hash: 0xED1057CE - ID: 22 | Hash: 0x1584AD7A - ID: 23 | Hash: 0x8582CFCB - ID: 24 | Hash: 0x7E5E2FB0 - ID: 25 | Hash: 0xAE4F72DB - ID: 26 | Hash: 0x5D16D1FA - ID: 27 | Hash: 0x06B2F4B8 - ID: 28 | Hash: 0x5D4CDC96 - ID: 29 | Hash: 0x8B5A48BA - ID: 30 | Hash: 0x98FBD539 - ID: 31 | Hash: 0xD8CB0473 - ID: 32 | Hash: 0x5CBB4874 - ID: 33 | Hash: 0x2E9F93A9 - ID: 34 | Hash: 0xD93BEA86 - ID: 35 | Hash: 0x92109B7D - ID: 36 | Hash: 0xB7EC9E4D - ID: 37 | Hash: 0xCABDBB1D - ID: 38 | Hash: 0xB3FD4A52 - ID: 39 | Hash: 0x370D94E5 - ID: 40 | Hash: 0xA0F7938F - ID: 41 | Hash: 0xCBE1CE81 - ID: 42 | Hash: 0xC27F1271 - ID: 43 | Hash: 0x9E3258EB - ID: 44 | Hash: 0x551CDA5B - ID: 45 | Hash: 0xCB6D663C - ID: 46 | Hash: 0x7DACE87F - ID: 47 | Hash: 0xF9DE416F - ID: 48 | Hash: 0x882E6E9E - ID: 49 | Hash: 0x16B447E7 - ID: 50 | Hash: 0xBD867739 - ID: 51 | Hash: 0xA3A58604 - ID: 52 | Hash: 0x7E046BBC - ID: 53 | Hash: 0xD95FDB98 - ID: 54 | Hash: 0x5842C0ED - ID: 55 | Hash: 0x285FECC6 - ID: 56 | Hash: 0x9351AC43 - ID: 57 | Hash: 0x50032E75 - ID: 58 | Hash: 0xAE6D0D59 - ID: 59 | Hash: 0xD6351785 - ID: 60 | Hash: 0xD25D71BC - ID: 61 | Hash: 0x1F7F6423 - ID: 62 | Hash: 0xE24C3AA6 - ID: 63 | Hash: 0xBFFDD2B7 - - - - - Toggles the big minimap state like in GTA:Online. - To get the current state of the minimap, use [`GetBigmapActive`](#_0xF6AE18A7). - - Enable or disable the expanded minimap. - Enable or disable the full map from being shown on the minimap, requires p0 to be true. - - - - Toggles the big minimap state like in GTA:Online. - To get the current state of the minimap, use [`GetBigmapActive`](#_0xF6AE18A7). - - Enable or disable the expanded minimap. - Enable or disable the full map from being shown on the minimap, requires p0 to be true. - - - - Only works on bikes, both X and Y work in the -1 - 1 range. - X forces the bike to turn left or right (-1, 1) - Y forces the bike to lean to the left or to the right (-1, 1) - Example with X -1/Y 1 - http://i.imgur.com/TgIuAPJ.jpg - - - - - This sets bit [offset] of [address] to on. - The offsets used are different bits to be toggled on and off, typically there is only one address used in a script. - Example: - GAMEPLAY::SET_BIT(&bitAddress, 1); - To check if this bit has been enabled: - GAMEPLAY::IS_BIT_SET(bitAddress, 1); // will return 1 afterwards - Please note, this method may assign a value to [address] when used. - - - - - Sets alpha-channel for blip color. - Example: - Blip blip = UI::ADD_BLIP_FOR_ENTITY(entity); - UI::SET_BLIP_COLOUR(blip , 3); - UI::SET_BLIP_ALPHA(blip , 64); - - - - - false for enemy - true for friendly - - - - - Sets whether or not the specified blip should only be displayed when nearby, or on the minimap. - - The blip handle. - True to only display the blip as 'short range', false to display the blip from a longer distance. - - - - Examples result: - ![](https://i.imgur.com/skY6vAJ.png) - **index:** - ``` - 1 = No distance shown in legend - 2 = Distance shown in legend - 7 = "Other Players" category, also shows distance in legend - 10 = "Property" category - 11 = "Owned Property" category - ``` - Any other value behaves like `index = 1`, `index` wraps around after 255 - Blips with categories `7`, `10` or `11` will all show under the specific categories listing in the map legend, regardless of sprite or name. - **Legend entries** - | index | Legend entry | Label | - | ----- | -------------- | --------------- | - | 7 | Other Players | `BLIP_OTHPLYR` | - | 10 | Property | `BLIP_PROPCAT` | - | 11 | Owned Property | `BLIP_APARTCAT` | - - The blip to change the category index of - The category index to change to - - - - (Hex code are approximate) - 0: White (#fefefe) - 1: Red (#e03232) - 2: Green (#71cb71) - 3: Blue (#5db6e5) - 4: White (#fefefe) - 5: Taxi Yellow (#eec64e) - 6: Light Red (#c25050) - 7: Violet (#9c6eaf) - 8: Pink (#fe7ac3) - 9: Light Orange (#f59d79) - 10: Light Brown (#b18f83) - 11: Light Green (#8dcea7) - 12: Light Blue (Teal) (#70a8ae) - 13: Very Light Purple (#d3d1e7) - 14: Dark Purple (#8f7e98) - 15: Cyan (#6ac4bf) - 16: Light Yellow (#d5c398) - 17: Orange (#ea8e50) - 18: Light Blue (#97cae9) - 19: Dark Pink (#b26287) - 20: Dark Yellow (#8f8d79) - 21: Dark Orange (#a6755e) - 22: Light Gray (#afa8a8) - 23: Light Pink (#e78d9a) - 24: Lemon Green (#bbd65b) - 25: Forest Green (#0c7b56) - 26: Electric Blue (#7ac3fe) - 27: Bright Purple (#ab3ce6) - 28: Dark Taxi Yellow (#cda80c) - 29: Dark Blue (#4561ab) - 30: Dark Cyan (#29a5b8) - 31: Light Brown (#b89b7b) - 32: Very Light Blue (#c8e0fe) - 33: Light Yellow (#f0f096) - 34: Light Pink (#ed8ca1) - 35: Light Red (#f98a8a) - 36: Light Yellow (#fbeea5) - 37: White (#fefefe) - 38: Blue (#2c6db8) - 39: Light Gray (#9a9a9a) - 40: Dark Gray (#4c4c4c) - Certainly a lot more remaining. - - - - - **displayId Behaviour** <br> - 0 = Doesn't show up, ever, anywhere. <br> - 1 = Doesn't show up, ever, anywhere. <br> - 2 = Shows on both main map and minimap. (Selectable on map) <br> - 3 = Shows on main map only. (Selectable on map) <br> - 4 = Shows on main map only. (Selectable on map) <br> - 5 = Shows on minimap only. <br> - 6 = Shows on both main map and minimap. (Selectable on map) <br> - 7 = Doesn't show up, ever, anywhere. <br> - 8 = Shows on both main map and minimap. (Not selectable on map) <br> - 9 = Shows on minimap only. <br> - 10 = Shows on both main map and minimap. (Not selectable on map) <br> - Anything higher than 10 seems to be exactly the same as 10. <br> - <br> - Rockstar seem to only use 0, 2, 3, 4, 5 and 8 in the decompiled scripts. - - - - - Adds up after viewing multiple R* scripts. I believe that the duration is in miliseconds. - - - - - Doesn't work if the label text of gxtEntry is >= 80. - - - - - See this topic for more details : gtaforums.com/topic/717612-v-scriptnative-documentation-and-research/page-35?p=1069477935 - - - - - After some testing, looks like you need to use UI:CEIL() on the rotation (vehicle/ped heading) before using it there. - - - - - Enable / disable showing route for the Blip-object. - - - - - Makes a blip go small when off the minimap. - - - - - Makes a blip go small when off the minimap. - - - - - <!-- - _loc1_.map((name, idx) => `| ${idx} | ${name} | ![${name}](https://runtime.fivem.net/blips/${name}.svg) |`).join('\n') - --> - Sets the displayed sprite for a specific blip. - There's a [list of sprites](https://docs.fivem.net/game-references/blips/) on the FiveM documentation site. - - The blip to change. - The sprite ID to set. - - - - works with AI::TASK_SET_BLOCKING_OF_NON_TEMPORARY_EVENTS to make a ped completely oblivious to all events going on around him - - - - - Set camera as active/inactive. - - - - - Previous declaration void SET_CAM_ACTIVE_WITH_INTERP(Cam camTo, Cam camFrom, int duration, BOOL easeLocation, BOOL easeRotation) is completely wrong. The last two params are integers not BOOLs... - - - - - Allows you to aim and shoot at the direction the camera is facing. - - - - - Sets the position of the cam. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - This native has its name defined inside its codE - - - - - This native has its name defined inside its codE - - - - - This native has a name defined inside its code - - - - - This native has a name defined inside its code - - - - - This native has a name defined inside its code - - - - - This native has a name defined inside its code - - - - - This native has a name defined inside its code - - - - - This native has a name defined inside its code - - - - - if p0 is 0, effect is cancelled - if p0 is 1, effect zooms in, gradually tilts cam clockwise apx 30 degrees, wobbles slowly. Motion blur is active until cancelled. - if p0 is 2, effect immediately tilts cam clockwise apx 30 degrees, begins to wobble slowly, then gradually tilts cam back to normal. The wobbling will continue until the effect is cancelled. - - - - - Sets the field of view of the cam. - --------------------------------------------- - Min: 1.0f - Max: 130.0f - - - - - The native seems to only be called once. - The native is used as so, - CAM::SET_CAM_INHERIT_ROLL_VEHICLE(l_544, getElem(2, &l_525, 4)); - In the exile1 script. - - - - - Sets the rotation of the cam. - Last parameter unknown. - Last parameter seems to always be set to 2. - - - - - I named p1 as timeDuration as it is obvious. I'm assuming tho it is ran in ms(Milliseconds) as usual. - - - - - Setting ped to true allows the ped to shoot "friendlies". - p2 set to true when toggle is also true seams to make peds permanently unable to aim at, even if you set p2 back to false. - p1 = false & p2 = false for unable to aim at. - p1 = true & p2 = false for able to aim at. - - - - - Hardcoded to not work in multiplayer. - - - - - Something to do with "high speed bump severity"? - if (!sub_87a46("SET_CAR_HIGH_SPEED_BUMP_SEVERITY_MULTIPLIER")) { - VEHICLE::_84FD40F56075E816(0.0); - sub_8795b("SET_CAR_HIGH_SPEED_BUMP_SEVERITY_MULTIPLIER", 1); - } - - - - - Something to do with "high speed bump severity"? - if (!sub_87a46("SET_CAR_HIGH_SPEED_BUMP_SEVERITY_MULTIPLIER")) { - VEHICLE::_84FD40F56075E816(0.0); - sub_8795b("SET_CAR_HIGH_SPEED_BUMP_SEVERITY_MULTIPLIER", 1); - } - - - - - For now, I changed the last one from bool to int. - According to scripts specifically 'fm_mission_controller' this last parameter is 'false/0' when its called after the create rope native above is called for the magnet and 'true/1' after the create rope native above is called for the hook. - - - - - For now, I changed the last one from bool to int. - According to scripts specifically 'fm_mission_controller' this last parameter is 'false/0' when its called after the create rope native above is called for the magnet and 'true/1' after the create rope native above is called for the hook. - - - - - Console Hash: 0xF57066DA - Won't attract or magnetize to any helicopters or planes of course, but that's common sense. - - - - - Console Hash: 0xF57066DA - Won't attract or magnetize to any helicopters or planes of course, but that's common sense. - - - - - console hash 0xCC3CF97D - - - - - console hash 0xCC3CF97D - - - - - Sets the cylinder height of the checkpoint. - Parameters: - * nearHeight - The height of the checkpoint when inside of the radius. - * farHeight - The height of the checkpoint when outside of the radius. - * radius - The radius of the checkpoint. - - - - - Sets the checkpoint icon color. - - - - - Sets the checkpoint color. - - - - - p0 - Scale? Looks to be a normalized value (0.0 - 1.0) - offroad_races.c4, line ~67407: - a_3._f7 = GRAPHICS::CREATE_CHECKPOINT(v_D, v_A, a_4, a_7, v_E, v_F, v_10, sub_62b2(v_A, 220, 255), 0); - UI::GET_HUD_COLOUR(134, &v_E, &v_F, &v_10, &v_11); - GRAPHICS::_SET_CHECKPOINT_ICON_RGBA(a_3._f7, v_E, v_F, v_10, sub_62b2(v_A, 70, 210)); - GRAPHICS::_4B5B4DA5D79F1943(a_3._f7, 0.95); - GRAPHICS::SET_CHECKPOINT_CYLINDER_HEIGHT(a_3._f7, 4.0, 4.0, 100.0); - - - - - p0 - Scale? Looks to be a normalized value (0.0 - 1.0) - offroad_races.c4, line ~67407: - a_3._f7 = GRAPHICS::CREATE_CHECKPOINT(v_D, v_A, a_4, a_7, v_E, v_F, v_10, sub_62b2(v_A, 220, 255), 0); - UI::GET_HUD_COLOUR(134, &v_E, &v_F, &v_10, &v_11); - GRAPHICS::_SET_CHECKPOINT_ICON_RGBA(a_3._f7, v_E, v_F, v_10, sub_62b2(v_A, 70, 210)); - GRAPHICS::_4B5B4DA5D79F1943(a_3._f7, 0.95); - GRAPHICS::SET_CHECKPOINT_CYLINDER_HEIGHT(a_3._f7, 4.0, 4.0, 100.0); - - - - - p0 = 0/1 or true/false - It doesn't seems to work - - - - - SET_CLOCK_TIME(12, 34, 56); - - - - - combatType can be between 0-14. See GET_COMBAT_FLOAT below for a list of possible parameters. - - - - - This is for simulating player input. - amount is a float value from 0 - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - This is for simulating player input. - amount is a float value from 0 - 0, 1 and 2 used in the scripts. 0 is by far the most common of them. - - - - - Sets a value that determines how aggressive the ocean waves will be. Values of 2.0 or more make for very aggressive waves like you see during a thunderstorm. - Works only ~200 meters around the player. - - - - - Sets a value that determines how aggressive the ocean waves will be. Values of 2.0 or more make for very aggressive waves like you see during a thunderstorm. - Works only ~200 meters around the player. - - - - - Sets a value that determines how aggressive the ocean waves will be. Values of 2.0 or more make for very aggressive waves like you see during a thunderstorm. - Works only ~200 meters around the player. - - - - - Renamed to SET_CURSOR_LOCATION (I previously named it _SET_CURSOR_POSTION) which is the correct name as far as I can tell. - - - - - Renamed to SET_CURSOR_LOCATION (I previously named it _SET_CURSOR_POSTION) which is the correct name as far as I can tell. - - - - - Changes the mouse cursor's sprite. - public enum CursorType - { - None = 0, - Normal = 1, - TransparentNormal = 2, - PreGrab = 3, - Grab = 4, - MiddleFinger = 5, - LeftArrow = 6, - RightArrow = 7, - UpArrow = 8, - DownArrow = 9, - HorizontalExpand = 10, - Add = 11, - Remove = 12, - } - - - - - Changes the mouse cursor's sprite. - public enum CursorType - { - None = 0, - Normal = 1, - TransparentNormal = 2, - PreGrab = 3, - Grab = 4, - MiddleFinger = 5, - LeftArrow = 6, - RightArrow = 7, - UpArrow = 8, - DownArrow = 9, - HorizontalExpand = 10, - Add = 11, - Remove = 12, - } - - - - - Specifies a custom respawn position to be used in conjunction with _SET_NEXT_RESPAWN_TO_CUSTOM - - - - - Specifies a custom respawn position to be used in conjunction with _SET_NEXT_RESPAWN_TO_CUSTOM - - - - - All occurrences found in b617d, sorted alphabetically and identical lines removed: - AUDIO::SET_CUTSCENE_AUDIO_OVERRIDE("_AK"); - AUDIO::SET_CUTSCENE_AUDIO_OVERRIDE("_CUSTOM"); - AUDIO::SET_CUTSCENE_AUDIO_OVERRIDE("_TOOTHLESS"); - - - - - p3 could be heading. Needs more research. - - - - - Thanks R*! ;) - if ((l_161 == 0) || (l_161 == 2)) { - sub_2ea27("Trying to set Jimmy prop variation"); - CUTSCENE::_0546524ADE2E9723("Jimmy_Boston", 1, 0, 0, 0); - } - - - - - Thanks R*! ;) - if ((l_161 == 0) || (l_161 == 2)) { - sub_2ea27("Trying to set Jimmy prop variation"); - CUTSCENE::_0546524ADE2E9723("Jimmy_Boston", 1, 0, 0, 0); - } - - - - - Only used twice in R* scripts - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - Defines the state of a destructible object. - Use the "0xB48FCED898292E52" native to find an object's handle with its name / coords - State 2 == object just spawned - State 4 == Beginning of the animation - State 6 == Start animation - State 9 == End of the animation - - - - - Defines the state of a destructible object. - Use the "0xB48FCED898292E52" native to find an object's handle with its name / coords - State 2 == object just spawned - State 4 == Beginning of the animation - State 6 == Start animation - State 9 == End of the animation - - - - - MulleDK19: This starts moving the VTOL engines towards the specified angle ratio (0f-1f). - - - - - MulleDK19: This starts moving the VTOL engines towards the specified angle ratio (0f-1f). - - - - - If toggle is true, hides special ability bar / character name in the pause menu - If toggle is false, shows special ability bar / character name in the pause menu - - - - - If toggle is true, hides special ability bar / character name in the pause menu - If toggle is false, shows special ability bar / character name in the pause menu - - - - - sometimes used used with NET_TO_OBJ - hash collision last 2 words - - - - - This native sets the app id for the discord rich presence implementation. - - - - - This native sets the image asset for the discord rich presence implementation. - - The name of a valid asset registered on Discordapp's developer dashboard. note that the asset has to be registered under the same discord API application set using the SET_DISCORD_APP_ID native. - - - - This native sets the small image asset for the discord rich presence implementation. - - The name of a valid asset registered on Discordapp's developer dashboard. Note that the asset has to be registered under the same discord API application set using the SET_DISCORD_APP_ID native. - - - - This native sets the hover text of the small image asset for the discord rich presence implementation. - - Text to be displayed when hovering over small image asset. Note that you must also set a valid small image asset using the SET_DISCORD_RICH_PRESENCE_ASSET_SMALL native. - - - - This native sets the hover text of the image asset for the discord rich presence implementation. - - Text to be displayed when hovering over image asset. Note that you must also set a valid image asset using the SET_DISCORD_RICH_PRESENCE_ASSET native. - - - - This is a NOP function. It does nothing at all. - - - - - Sets the acceleration limit of a door. - How fast it can open, or the inverse hinge resistance. - A limit of 0 seems to lock doors. - p2 is always 0, p3 is always 1. - - - - - Sets the acceleration limit of a door. - How fast it can open, or the inverse hinge resistance. - A limit of 0 seems to lock doors. - p2 is always 0, p3 is always 1. - - - - - Sets the ajar angle of a door. - Ranges from -1.0 to 1.0, and 0.0 is closed / default. - p2 is always 0, p3 is always 1. - - - - - Sets the ajar angle of a door. - Ranges from -1.0 to 1.0, and 0.0 is closed / default. - p2 is always 0, p3 is always 1. - - - - - Sets the on-screen drawing origin for draw-functions (which is normally x=0,y=0 in the upper left corner of the screen) to a world coordinate. - From now on, the screen coordinate which displays the given world coordinate on the screen is seen as x=0,y=0. - Example in C#: - Vector3 boneCoord = somePed.GetBoneCoord(Bone.SKEL_Head); - Function.Call(Hash.SET_DRAW_ORIGIN, boneCoord.X, boneCoord.Y, boneCoord.Z, 0); - Function.Call(Hash.DRAW_SPRITE, "helicopterhud", "hud_corner", -0.01, -0.015, 0.013, 0.013, 0.0, 255, 0, 0, 200); - Function.Call(Hash.DRAW_SPRITE, "helicopterhud", "hud_corner", 0.01, -0.015, 0.013, 0.013, 90.0, 255, 0, 0, 200); - Function.Call(Hash.DRAW_SPRITE, "helicopterhud", "hud_corner", -0.01, 0.015, 0.013, 0.013, 270.0, 255, 0, 0, 200); - Function.Call(Hash.DRAW_SPRITE, "helicopterhud", "hud_corner", 0.01, 0.015, 0.013, 0.013, 180.0, 255, 0, 0, 200); - Function.Call(Hash.CLEAR_DRAW_ORIGIN); - Result: www11.pic-upload.de/19.06.15/bkqohvil2uao.jpg - If the pedestrian starts walking around now, the sprites are always around her head, no matter where the head is displayed on the screen. - This function also effects the drawing of texts and other UI-elements. - The effect can be reset by calling GRAPHICS::CLEAR_DRAW_ORIGIN(). - - - - - This native is used to set the driving style for specific ped. - Driving styles id seems to be: - 786468 - 262144 - 786469 - http://gtaforums.com/topic/822314-guide-driving-styles/ - - - - - For p1 & p2 (Ped, Vehicle). I could be wrong, as the only time this native is called in scripts is once and both are 0, but I assume this native will work like SET_MOUNTED_WEAPON_TARGET in which has the same exact amount of parameters and the 1st and last 3 parameters are right and the same for both natives. - - - - - The function specifically verifies the value is equal to, or less than 1.0f. If it is greater than 1.0f, the function does nothing at all. - - - - - range 0.0f - 1.0f - - - - - Navigates the specified DUI browser to a different URL. - - The DUI browser handle. - The new URL. - - - - Used with [SET_ENABLE_HANDCUFFS](#_0xDF1AF8B5D56542FA) in decompiled scripts. From my observations, I have noticed that while being ragdolled you are not able to get up but you can still run. Your legs can also bend. - - - - - ped can not pull out a weapon when true - - - - - Enables diving motion when underwater. - - - - - skin - everything alpha except skin - Set entity alpha level. Ranging from 0 to 255 but chnages occur after every 20 percent (after every 51). - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Makes the specified entity (ped, vehicle or object) persistent. Persistent entities will not automatically be removed by the engine. - p1 has no effect when either its on or off - maybe a quick disassembly will tell us what it does - p2 has no effect when either its on or off - maybe a quick disassembly will tell us what it does - - - - - Marks the specified entity (ped, vehicle or object) as no longer needed. - Entities marked as no longer needed, will be deleted as the engine sees fit. - - - - - Sets whether the entity can be targeted without being in line-of-sight. - - - - - console hash: 0xBD0D4831 - internally it calls the same function as 'SET_ENTITY_COLLISION'. but uses a hard coded parameter that only activates when p1 is set to true - ============================= - Weirdly enough in the 3 scripts it's used in on PC, - - director_mode (2 hits) - - re_duel (2 hits) - - re_seaplane (1 hit) - Most of the time in the hits its actually used after the normal SET_ENTITY_COLLISION. Example from re_seaplane, - Local_49[iParam0 -- [[6]] ] = create_ped(26, iVar4, vVar0, fVar3, 1, true); - set_entity_collision(Local_49[iParam0 -- [[6]] ], iVar42, 0); - _0x9EBC85ED0FFFE51C(Local_49[iParam0 -- [[6]] ], !iVar66, 0); (_SET_ENTITY_COLLISION_2) - iVar42 being true so the normal collision native is true, 0 - iVar66 being false so !false so it's true, 0 - Gonna ignore the 'vars' for the create_ped no point in defining them. - - - - - console hash: 0xBD0D4831 - internally it calls the same function as 'SET_ENTITY_COLLISION'. but uses a hard coded parameter that only activates when p1 is set to true - ============================= - Weirdly enough in the 3 scripts it's used in on PC, - - director_mode (2 hits) - - re_duel (2 hits) - - re_seaplane (1 hit) - Most of the time in the hits its actually used after the normal SET_ENTITY_COLLISION. Example from re_seaplane, - Local_49[iParam0 -- [[6]] ] = create_ped(26, iVar4, vVar0, fVar3, 1, true); - set_entity_collision(Local_49[iParam0 -- [[6]] ], iVar42, 0); - _0x9EBC85ED0FFFE51C(Local_49[iParam0 -- [[6]] ], !iVar66, 0); (_SET_ENTITY_COLLISION_2) - iVar42 being true so the normal collision native is true, 0 - iVar66 being false so !false so it's true, 0 - Gonna ignore the 'vars' for the create_ped no point in defining them. - - - - - p7 is always 1 in the scripts. Set to 1, an area around the destination coords for the moved entity is cleared from other entities. - Often ends with 1, 0, 0, 1); in the scripts. It works. - Axis - Invert Axis Flags - - - - - Axis - Invert Axis Flags - - - - - does the same as SET_ENTITY_COORDS. - Console Hash: 0x749B282E - - - - - health >= 0 - - - - - Sets a ped or an object totally invincible. It doesn't take any kind of damage. Peds will not ragdoll on explosions and the tazer animation won't apply either. - If you use this for a ped and you want Ragdoll to stay enabled, then do: - *(DWORD *)(pedAddress + 0x188) |= (1 << 9); - Use this if you want to get the invincibility status: - bool IsPedInvincible(Ped ped) - { - auto addr = getScriptHandleBaseAddress(ped); - if (addr) - { - DWORD flag = *(DWORD *)(addr + 0x188); - return ((flag & (1 << 8)) != 0) || ((flag & (1 << 9)) != 0); - } - return false; - } - - - - - Certainly not the main usage of this native but when set to true for a Vehicle, it will prevent the vehicle to explode if it is spawned far away from the player. - - - - - I tried using this and I see nothing happening, what is this suppose to do? - - - - - I tried using this and I see nothing happening, what is this suppose to do? - - - - - LOD distance can be 0 to 0xFFFF (higher values will result in 0xFFFF) as it is actually stored as a 16-bit value (aka uint16_t). - - - - - For instance: ENTITY::SET_ENTITY_MAX_HEALTH(PLAYER::PLAYER_PED_ID(), 200); // director_mode.c4: 67849 - - - - - Calling this function, regardless of the "unknown" value, disabled collision between two entities. - Importance of entity1 and 2 order is unclear. - - - - - Enable / disable each type of damage. - -------------- - p7 is to to '1' in am_mp_property_ext/int: entity::set_entity_proofs(uParam0->f_19, true, true, true, true, true, true, 1, true); - - - - - w is the correct parameter name! - - - - - rotationOrder refers to the order yaw pitch roll is applied - value ranges from 0 to 5. What you use for rotationOrder when setting must be the same as rotationOrder when getting the rotation. - Unsure what value corresponds to what rotation order, more testing will be needed for that. - For the most part R* uses 1 or 2 as the order. - p5 is usually set as true - - - - - what does this native do? - bool IsEntitySomething(Entity entity) - { - auto addr = getScriptHandleBaseAddress(entity); - printf("addr: 0x%X \n", addr); - if (addr) - { - DWORD flag = *(DWORD *)(addr + 0x48D); - printf("flag: 0x%X \n", flag); - return ((flag & (1 << 3)) != 0) || ((flag & (1 << 30)) != 0); - } - return false; - } - wot ? - - - - - what does this native do? - bool IsEntitySomething(Entity entity) - { - auto addr = getScriptHandleBaseAddress(entity); - printf("addr: 0x%X \n", addr); - if (addr) - { - DWORD flag = *(DWORD *)(addr + 0x48D); - printf("flag: 0x%X \n", flag); - return ((flag & (1 << 3)) != 0) || ((flag & (1 << 30)) != 0); - } - return false; - } - wot ? - - - - - what does this native do? - bool IsEntitySomething(Entity entity) - { - auto addr = getScriptHandleBaseAddress(entity); - printf("addr: 0x%X \n", addr); - if (addr) - { - DWORD flag = *(DWORD *)(addr + 0x48D); - printf("flag: 0x%X \n", flag); - return ((flag & (1 << 3)) != 0) || ((flag & (1 << 30)) != 0); - } - return false; - } - wot ? - - - - - Example here: www.gtaforums.com/topic/830463-help-with-turning-lights-green-and-causing-peds-to-crash-into-each-other/#entry1068211340 - 0 = green - 1 = red - 2 = yellow - changing lights may not change the behavior of vehicles - - - - - Note that the third parameter(denoted as z) is "up and down" with positive ment. - - - - - unk was always 0. - - - - - In appcamera.c4, Line 106: - if (VEHICLE::IS_VEHICLE_DRIVEABLE(PED::SET_EXCLUSIVE_PHONE_RELATIONSHIPS(PLAYER::PLAYER_PED_ID()), 0)) - So return type could be a vehicle? - !Hash collision - gets the vehicle handle from ped which is about entering the vehicle! - sfink: agreed, 100% - Proper name is GET_VEHICLE_PED_IS_ENTERING - - - - - Groups found in the scripts used with this native: - "AMMUNATION", - "QUARRY", - "Triathlon_1", - "Triathlon_2", - "Triathlon_3" - - - - - Sets a secondary timecycle modifier. - - - - - Sets a secondary timecycle modifier. - - - - - The same as [`SetTimecycleModifierStrength`](#_0x82E7FFCD5B2326B3) but for the secondary tiemcycle modifier. - - : - - - - The same as [`SetTimecycleModifierStrength`](#_0x82E7FFCD5B2326B3) but for the secondary tiemcycle modifier. - - : - - - - Sets whether the game should fade in after the player dies or is arrested. - - - - - Sets whether the game should fade out after the player is arrested. - - - - - Sets whether the game should fade out after the player dies. - - - - - Sets a visually fake wanted level on the user interface. Used by Rockstar's scripts to "override" regular wanted levels and make custom ones while the real wanted level and multipliers are ignored. - Max is 6. Also the mini-map gets the red & blue flashing effect. - - - - - When this is set to ON, shadows only draw as you get nearer. - When OFF, they draw from a further distance. (((BUT))) f*ck up nearer shadows quality. - - - - - Sets the near clipping plane of the first person camera. - - - - - Sets the near clipping plane of the first person camera. - - - - - Similar to _CLAMP_GAMEPLAY_CAM_PITCH except this is specifically for the FP camera, and it only lets you clamp the pitch within the normal range. - - - - - Similar to _CLAMP_GAMEPLAY_CAM_PITCH except this is specifically for the FP camera, and it only lets you clamp the pitch within the normal range. - - - - - Purpose of p0 and p1 unknown. - - - - - Override the area where the camera will render the terrain. - p3, p4 and p5 are usually set to 0.0 - - - - - It seems to make the entity's coords mark the point from which LOD-distances are measured. In my testing, setting a vehicle as the focus entity and moving that vehicle more than 300 distance units away from the player will make the level of detail around the player go down drastically (shadows disappear, textures go extremely low res, etc). The player seems to be the default focus entity. - - - - - From the b617d scripts: - CAM::SET_FOLLOW_PED_CAM_CUTSCENE_CHAT("FOLLOW_PED_ATTACHED_TO_ROPE_CAMERA", 0); - CAM::SET_FOLLOW_PED_CAM_CUTSCENE_CHAT("FOLLOW_PED_ON_EXILE1_LADDER_CAMERA", 1500); - CAM::SET_FOLLOW_PED_CAM_CUTSCENE_CHAT("FOLLOW_PED_SKY_DIVING_CAMERA", 0); - CAM::SET_FOLLOW_PED_CAM_CUTSCENE_CHAT("FOLLOW_PED_SKY_DIVING_CAMERA", 3000); - CAM::SET_FOLLOW_PED_CAM_CUTSCENE_CHAT("FOLLOW_PED_SKY_DIVING_FAMILY5_CAMERA", 0); - CAM::SET_FOLLOW_PED_CAM_CUTSCENE_CHAT("FOLLOW_PED_SKY_DIVING_CAMERA", 0); - - - - - Sets the type of Player camera: - 0 - Third Person Close - 1 - Third Person Mid - 2 - Third Person Far - 4 - First Person - - - - - Sets the type of Player camera in vehicles: - 0 - Third Person Close - 1 - Third Person Mid - 2 - Third Person Far - 4 - First Person - - - - - Forces footstep tracks on all surfaces. - - - - - Forces vehicle trails on all surfaces. - - - - - Sets some values in a vehicle gadget (tow arm, digger arm, etc.). Don't know which one though. - I've tested on the towtruck 1 & 2, Dock Lift (Crate Arm), Dozer, and such have no effect. However when used on a Forklift it sets the height of the forks. 0.0 = Lowest 1.0 = Highest. This is best to be used if you wanna pick-up a car since un-realistically on GTA V forklifts can't pick up much of anything due to vehicle mass. If you put this under a car then set it above 0.0 to a 'lifted-value' it will raise the car with no issue lol - - - - - Sets some values in a vehicle gadget (tow arm, digger arm, etc.). Don't know which one though. - I've tested on the towtruck 1 & 2, Dock Lift (Crate Arm), Dozer, and such have no effect. However when used on a Forklift it sets the height of the forks. 0.0 = Lowest 1.0 = Highest. This is best to be used if you wanna pick-up a car since un-realistically on GTA V forklifts can't pick up much of anything due to vehicle mass. If you put this under a car then set it above 0.0 to a 'lifted-value' it will raise the car with no issue lol - - - - - Make sure to call this from the correct thread if you're using multiple threads because all other threads except the one which is calling SET_GAME_PAUSED will be paused which means you will lose control and the game remains in paused mode until you exit GTA5.exe - - - - - Does nothing - - - - - Sets the camera position relative to heading in float from -360 to +360. - Heading is alwyas 0 in aiming camera. - - - - - Sets the camera pitch. - Parameters: - x = pitches the camera on the x axis. - Value2 = always seems to be hex 0x3F800000 (1.000000 float). - - - - - Sets the amplitude for the gameplay (i.e. 3rd or 1st) camera to shake. Used in script "drunk_controller.ysc.c4" to simulate making the player drunk. - - - - - Example C#: - Function.Call(Hash.SET_GAMEPLAY_COORD_HINT, position.X, position.Y, position.Z, hintDuration, 1500, 1000, 0); - The camera look-at is canceled if the user is already panning the camera around. - - - - - p6 & p7 - possibly length or time - - - - - Needs to be looped! And yes, it does work and is not a hash collision. - Birds will try to reach the given height. - - - - - Disables the GPS route displayed on the minimap while within a certain zone (area). When in a disabled zone and creating a waypoint, the GPS route is not shown on the minimap until you are outside of the zone. When disabled, the direct distance is shown on minimap opposed to distance to travel. Seems to only work before setting a waypoint. - You can clear the disabled zone with CLEAR_GPS_DISABLED_ZONE_AT_INDEX. - **Setting a waypoint at the same coordinate:** - Disabled Zone: <https://i.imgur.com/P9VUuxM.png> - Enabled Zone (normal): <https://i.imgur.com/BPi24aw.png> - - X coordinate of first vector. - Y coordinate of first vector. - Z coordinate of first vector. - X coordinate of second vector. - Y coordinate of second vector. - Z coordinate of second vector. - Index of zone. - - - - Disables the GPS route displayed on the minimap while within a certain zone (area). When in a disabled zone and creating a waypoint, the GPS route is not shown on the minimap until you are outside of the zone. When disabled, the direct distance is shown on minimap opposed to distance to travel. Seems to only work before setting a waypoint. - You can clear the disabled zone with CLEAR_GPS_DISABLED_ZONE_AT_INDEX. - **Setting a waypoint at the same coordinate:** - Disabled Zone: <https://i.imgur.com/P9VUuxM.png> - Enabled Zone (normal): <https://i.imgur.com/BPi24aw.png> - - X coordinate of first vector. - Y coordinate of first vector. - Z coordinate of first vector. - X coordinate of second vector. - Y coordinate of second vector. - Z coordinate of second vector. - Index of zone. - - - - Only the script that originally called SET_GPS_FLAGS can set them again. Another script cannot set the flags, until the first script that called it has called CLEAR_GPS_FLAGS. - Doesn't seem like the flags are actually read by the game at all. - --------------- - Might be left-over from GTA IV. I kind of miss the *ding-dong* turn left in 2 meters lady lol. - - - - - level can be from 0 to 3 - 0: 9.8 - 1: 2.4 - 2: 0.1 - very low - 3: 0.0 - - - - - 0: Default - 1: Circle Around Leader - 2: Alternative Circle Around Leader - 3: Line, with Leader at center - - - - - Sets the range at which members will automatically leave the group. - - - - - Sets a global handling override for a specific vehicle class. The name is supposed to match the `handlingName` field from handling.meta. - Example: `SetHandlingField('AIRTUG', 'CHandlingData', 'fSteeringLock', 360.0)` - - The vehicle class to set data for. - The handling class to set. Only "CHandlingData" is supported at this time. - The field name to set. These match the keys in `handling.meta`. - The value to set. - - - - Sets a global handling override for a specific vehicle class. The name is supposed to match the `handlingName` field from handling.meta. - Example: `SetHandlingFloat('AIRTUG', 'CHandlingData', 'fSteeringLock', 360.0)` - - The vehicle class to set data for. - The handling class to set. Only "CHandlingData" is supported at this time. - The field name to set. These match the keys in `handling.meta`. - The floating-point value to set. - - - - Sets a global handling override for a specific vehicle class. The name is supposed to match the `handlingName` field from handling.meta. - - The vehicle class to set data for. - The handling class to set. Only "CHandlingData" is supported at this time. - The field name to set. These match the keys in `handling.meta`. - The integer value to set. - - - - Sets a global handling override for a specific vehicle class. The name is supposed to match the `handlingName` field from handling.meta. - Example: `SetHandlingVector('AIRTUG', 'CHandlingData', 'vecCentreOfMassOffset', vector3(0.0, 0.0, -5.0))` - - The vehicle class to set data for. - The handling class to set. Only "CHandlingData" is supported at this time. - The field name to set. These match the keys in `handling.meta`. - The Vector3 value to set. - - - - Harcoded limit for radius is 30.0f - - - - - Equivalent of SET_HELI_BLADES_SPEED(vehicleHandle, 1.0f); - this native works on planes to? - - - - - Sets the speed of the helicopter blades in percentage of the full speed. - vehicleHandle: The helicopter. - speed: The speed in percentage, 0.0f being 0% and 1.0f being 100%. - - - - - value between 0.0 and 1.0 - - - - - Makes the ped ragdoll like when falling from a great height - - - - - HUD colors and their values: pastebin.com/d9aHPbXN - - - - - HUD colors and their values: pastebin.com/d9aHPbXN - - - - - HUD colors and their values: pastebin.com/d9aHPbXN - -------------------------------------------------- - makes hudColorIndex2 color into hudColorIndex color - - - - - HUD colors and their values: pastebin.com/d9aHPbXN - -------------------------------------------------- - makes hudColorIndex2 color into hudColorIndex color - - - - - No other indices work... - IK Index --------- - 1 = head - 3 = left arm - 4 = right arm - ------------------ - EntityLookAt can be null (0 handle) - - - - - Sets whether or not `SHUTDOWN_LOADING_SCREEN` automatically shuts down the NUI frame for the loading screen. If this is enabled, - you will have to manually invoke `SHUTDOWN_LOADING_SCREEN_NUI` whenever you want to hide the NUI loading screen. - - TRUE to manually shut down the loading screen NUI. - - - - If toggle is true, the map is shown in full screen - If toggle is false, the map is shown in normal mode - - - - - If toggle is true, the map is shown in full screen - If toggle is false, the map is shown in normal mode - - - - - If this is the correct name, what microphone? I know your TV isn't going to reach out and adjust your headset so.. - - - - - Argument must be 0.0f or above 38.0f, or it will be ignored. - - - - - This native is used to toggle map components like the army base at the top of the map. - p2 appears to be always -1. - An incomplete list of components ID: - ``` - 0: Los Santos' air port yellow lift-off markers. - 1: Sandy Shore's air port yellow lift-off markers. - 2: Trevor's air port yellow lift-off markers. - 3: Unknown. - 4: Unknown. - 5: Unknown. - 6: Vespucci Beach lifeguard building. - 7: Unknown. - 8: Unknown. - 15: Army base. - ``` - - - - - Not much is known so far on what it does _exactly_. - All I know for sure is that it draws the specified hole ID on the pause menu map as well as on the mini-map/radar. This native also seems to change some other things related to the pause menu map's behaviour, for example: you can no longer set waypoints, the pause menu map starts up in a 'zoomed in' state. This native does not need to be executed every tick. - You need to center the minimap manually as well as change/lock it's zoom and angle in order for it to appear correctly on the minimap. - You'll also need to use the `GOLF` scaleform in order to get the correct minmap border to show up. - Use [`N_0x35edd5b2e3ff01c0()`](https://runtime.fivem.net/doc/reference.html#_0x35EDD5B2E3FF01C0) to reset the map when you no longer want to display any golf holes (you still need to unlock zoom, position and angle of the radar manually after calling this). - - The ID of the hole to draw on the map. ID starts with 1 for hole 1, 2 for hole 2, etc. 0 disables the golf map behaviour. - - - - Not much is known so far on what it does _exactly_. - All I know for sure is that it draws the specified hole ID on the pause menu map as well as on the mini-map/radar. This native also seems to change some other things related to the pause menu map's behaviour, for example: you can no longer set waypoints, the pause menu map starts up in a 'zoomed in' state. This native does not need to be executed every tick. - You need to center the minimap manually as well as change/lock it's zoom and angle in order for it to appear correctly on the minimap. - You'll also need to use the `GOLF` scaleform in order to get the correct minmap border to show up. - Use [`N_0x35edd5b2e3ff01c0()`](https://runtime.fivem.net/doc/reference.html#_0x35EDD5B2E3FF01C0) to reset the map when you no longer want to display any golf holes (you still need to unlock zoom, position and angle of the radar manually after calling this). - - The ID of the hole to draw on the map. ID starts with 1 for hole 1, 2 for hole 2, etc. 0 disables the golf map behaviour. - - - - Sets the display info for a minimap overlay. - - The minimap overlay ID. - The X position for the overlay. This is equivalent to a game coordinate X. - The Y position for the overlay. This is equivalent to a game coordinate Y, except that it's inverted (gfxY = -gameY). - The X scale for the overlay. This is equivalent to the Flash \_xscale property, therefore 100 = 100%. - The Y scale for the overlay. This is equivalent to the Flash \_yscale property. - The alpha value for the overlay. This is equivalent to the Flash \_alpha property, therefore 100 = 100%. - - - - If true, the entire map will be revealed. - - - - - If true, the entire map will be revealed. - - - - - If true, the player can't save the game. - If the parameter is true, sets the mission flag to true, if the parameter is false, the function does nothing at all. - ^ also, if the mission flag is already set, the function does nothing at all - - - - - Takes a text label, gets the string (must not be longer than 600 chars, should not exceed 64 chars) and sets the name to that string. - p0 must be true. - - - - - Similar to SET_MISSION_NAME but this one can take any string (must not be greater than 600 chars, should not exceed 64 chars), not just text labels. - p0 must be true. - - - - - Similar to SET_MISSION_NAME but this one can take any string (must not be greater than 600 chars, should not exceed 64 chars), not just text labels. - p0 must be true. - - - - - p1 is always 0 - - - - - Last parameter is unknown and always zero. - - - - - The minimum/default is 500.0f. If you plan to make it bigger set it's position as well. Also this seems to need to be called in a loop as when you close the phone the scale is reset. If not in a loop you'd need to call it everytime before you re-open the phone. - - - - - Enables Radio on phone. - - - - - Unloads model from memory - - - - - Note: Look in decompiled scripts and the times that p1 and p2 aren't 0. They are filled with vars. If you look through out that script what other natives those vars are used in, you can tell p1 is a ped and p2 is a vehicle. Which most likely means if you want the mounted weapon to target a ped set targetVehicle to 0 or vice-versa. - - - - - Sets flag's sprite transparency. 0-255. - - - - - Sets flag's sprite transparency. 0-255. - - - - - Set's the string displayed when flag 3 (AudioSpeaker) active. - - - - - Set's the string displayed when flag 3 (AudioSpeaker) active. - - - - - Ranges from 0 to 255. 0 is grey health bar, ~50 yellow, 200 purple. - - - - - Ranges from 0 to 255. 0 is grey health bar, ~50 yellow, 200 purple. - - - - - Ranges from 0 to 255. 0 is grey health bar, ~50 yellow, 200 purple. - Should be enabled as flag (2). Has 0 opacity by default. - - This was _SET_MP_GAMER_TAG_HEALTH_BAR_COLOR, - - - - - Ranges from 0 to 255. 0 is grey health bar, ~50 yellow, 200 purple. - Should be enabled as flag (2). Has 0 opacity by default. - - This was _SET_MP_GAMER_TAG_HEALTH_BAR_COLOR, - - - - - Ranges from 0 to 255. 0 is grey health bar, ~50 yellow, 200 purple. - Should be enabled as flag (2). Has 0 opacity by default. - - This was _SET_MP_GAMER_TAG_HEALTH_BAR_COLOR, - - - - - Displays a bunch of icons above the players name, and level, and their name twice - - - - - Displays a bunch of icons above the players name, and level, and their name twice - - - - - enum MpGamerTagComponent - { - GAMER_NAME = 0, - CREW_TAG, - healthArmour, - BIG_TEXT, - AUDIO_ICON, - MP_USING_MENU, - MP_PASSIVE_MODE, - WANTED_STARS, - MP_DRIVER, - MP_CO_DRIVER, - MP_TAGGED, - GAMER_NAME_NEARBY, - ARROW, - MP_PACKAGES, - INV_IF_PED_FOLLOWING, - RANK_TEXT, - MP_TYPING - }; - - - - - enum MpGamerTagComponent - { - GAMER_NAME = 0, - CREW_TAG, - healthArmour, - BIG_TEXT, - AUDIO_ICON, - MP_USING_MENU, - MP_PASSIVE_MODE, - WANTED_STARS, - MP_DRIVER, - MP_CO_DRIVER, - MP_TAGGED, - GAMER_NAME_NEARBY, - ARROW, - MP_PACKAGES, - INV_IF_PED_FOLLOWING, - RANK_TEXT, - MP_TYPING - }; - - - - - displays wanted star above head - - - - - displays wanted star above head - - - - - **This native does absolutely nothing, just a nullsub** - - - - - Whether or not another player is allowed to take control of the entity - - - - - not tested.... - - - - - not tested.... - - - - - Original put name, - _SET_NETWORK_VEHICLE_NON_CONTACT - However changed to 'object' as the instances where this is called in scripts both freemode and golf it's only used on objects after the objects are called OBJ_TO_NET p_parachute_s (freemode) prop_golf_ball (golf). Tho the script search was done via TU27 Xbox360 ones. - Got my hopes up whoever put this as vehicle. I was hoping it was what R* used in non-contact races. - - - - - Original put name, - _SET_NETWORK_VEHICLE_NON_CONTACT - However changed to 'object' as the instances where this is called in scripts both freemode and golf it's only used on objects after the objects are called OBJ_TO_NET p_parachute_s (freemode) prop_golf_ball (golf). Tho the script search was done via TU27 Xbox360 ones. - Got my hopes up whoever put this as vehicle. I was hoping it was what R* used in non-contact races. - - - - - **This native does absolutely nothing, just a nullsub** - ``` - Not used in the scripts. - Bullshit! It's used in spawn_activities - ``` - - - - - Sets the next spawn location to the position supplied to _SET_CUSTOM_RESPAWN_POSITION. - - - - - Sets the next spawn location to the position supplied to _SET_CUSTOM_RESPAWN_POSITION. - - - - - Enables Night Vision. - Example: - C#: Function.Call(Hash.SET_NIGHTVISION, true); - C++: GRAPHICS::SET_NIGHTVISION(true); - BOOL toggle: - true = turns night vision on for your player. - false = turns night vision off for your player. - - - - - Toggles the North Yankton map - - - - - Toggles the North Yankton map - - - - - From the decompiled scripts: - UI::_92F0DA1E27DB96DC(6); - UI::_92F0DA1E27DB96DC(184); - UI::_92F0DA1E27DB96DC(190); - sets background color for the next notification - 6 = red - 184 = green - 190 = yellow - Here is a list of some colors that can be used: gyazo.com/68bd384455fceb0a85a8729e48216e15 - this seems to set the alpha to 255 automatically, if you have a work around let me know - - - - - From the decompiled scripts: - UI::_92F0DA1E27DB96DC(6); - UI::_92F0DA1E27DB96DC(184); - UI::_92F0DA1E27DB96DC(190); - sets background color for the next notification - 6 = red - 184 = green - 190 = yellow - Here is a list of some colors that can be used: gyazo.com/68bd384455fceb0a85a8729e48216e15 - this seems to set the alpha to 255 automatically, if you have a work around let me know - - - - - sets font color for the next notification - - - - - sets font color for the next notification - - - - - sets color for notification flash - - - - - sets color for notification flash - - - - - Sets some extra options for a notification. It adds an image (or icon type) and sets a notification title (sender) and subtitle (subject). - Texture dictionary and texture name parameters are usually the same exact value. - Example result: - ![](https://i.imgur.com/LviutDl.png) - Old description with list of possible icons and texture names: - ```text - List of picNames: pastebin.com/XdpJVbHz - flash is a bool for fading in. - iconTypes: - 1 : Chat Box - 2 : Email - 3 : Add Friend Request - 4 : Nothing - 5 : Nothing - 6 : Nothing - 7 : Right Jumping Arrow - 8 : RP Icon - 9 : $ Icon - "sender" is the very top header. This can be any old string. - "subject" is the header under the sender. - ``` - - The texture dictionary for the icon. - The texture name for the icon. - Flash, doesn't seem to work no matter what. - The icon type, see the list above in the description. - The notification title. - The notification subtitle. - The notification handle. - - - - List of picNames pastebin.com/XdpJVbHz - flash is a bool for fading in. - iconTypes: - 1 : Chat Box - 2 : Email - 3 : Add Friend Request - 4 : Nothing - 5 : Nothing - 6 : Nothing - 7 : Right Jumping Arrow - 8 : RP Icon - 9 : $ Icon - "sender" is the very top header. This can be any old string. - "subject" is the header under the sender. - "duration" is a multiplier, so 1.0 is normal, 2.0 is twice as long (very slow), and 0.5 is half as long. - "clanTag" shows a crew tag in the "sender" header, after the text. You need to use 3 underscores as padding. Maximum length of this field seems to be 7. (e.g. "MK" becomes "___MK", "ACE" becomes "___ACE", etc.) - - - - - List of picNames: pastebin.com/XdpJVbHz - flash is a bool for fading in. - iconTypes: - 1 : Chat Box - 2 : Email - 3 : Add Friend Request - 4 : Nothing - 5 : Nothing - 6 : Nothing - 7 : Right Jumping Arrow - 8 : RP Icon - 9 : $ Icon - "sender" is the very top header. This can be any old string. - "subject" is the header under the sender. - "duration" is a multiplier, so 1.0 is normal, 2.0 is twice as long (very slow), and 0.5 is half as long. - "clanTag" shows a crew tag in the "sender" header, after the text. You need to use 3 underscores as padding. Maximum length of this field seems to be 7. (e.g. "MK" becomes "___MK", "ACE" becomes "___ACE", etc.) - iconType2 is a mirror of iconType. It shows in the "subject" line, right under the original iconType. - int IconNotification(char *text, char *text2, char *Subject) - { - _SET_NOTIFICATION_TEXT_ENTRY("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - _SET_NOTIFICATION_MESSAGE_CLAN_TAG_2("CHAR_SOCIAL_CLUB", "CHAR_SOCIAL_CLUB", 1, 7, text2, Subject, 1.0f, "__EXAMPLE", 7); - return _DRAW_NOTIFICATION(1, 1); - } - - - - - List of picNames: pastebin.com/XdpJVbHz - - - - - List of picNames: pastebin.com/XdpJVbHz - - - - - Needs more research. - Only one type of usage in the scripts: - UI::_C6F580E4C94926AC("CHAR_ACTING_UP", "CHAR_ACTING_UP", 0, 0, "DI_FEED_CHAR", a_0); - - - - - Needs more research. - Only one type of usage in the scripts: - UI::_C6F580E4C94926AC("CHAR_ACTING_UP", "CHAR_ACTING_UP", 0, 0, "DI_FEED_CHAR", a_0); - - - - - NOTE: 'duration' is a multiplier, so 1.0 is normal, 2.0 is twice as long (very slow), and 0.5 is half as long. - Example, only occurrence in the scripts: - v_8 = UI::_1E6611149DB3DB6B("CHAR_SOCIAL_CLUB", "CHAR_SOCIAL_CLUB", 0, 0, &v_9, "", a_5); - - - - - NOTE: 'duration' is a multiplier, so 1.0 is normal, 2.0 is twice as long (very slow), and 0.5 is half as long. - Example, only occurrence in the scripts: - v_8 = UI::_1E6611149DB3DB6B("CHAR_SOCIAL_CLUB", "CHAR_SOCIAL_CLUB", 0, 0, &v_9, "", a_5); - - - - - Declares the entry type of a notification, for example "STRING". - int ShowNotification(char *text) - { - _SET_NOTIFICATION_TEXT_ENTRY("STRING"); - ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(text); - return _DRAW_NOTIFICATION(1, 1); - } - - - - - This is an alias of SET_ENTITY_AS_NO_LONGER_NEEDED. - - - - - Seems to set the colour of the prop. Haven't really tested it on other props. - Only appears in am_mp_nightclub.c for the nightclub dancefloor. - Not sure what p1 does, seems to only ever be '1' in scripts. - - : - : - : - - - - Seems to set the colour of the prop. Haven't really tested it on other props. - Only appears in am_mp_nightclub.c for the nightclub dancefloor. - Not sure what p1 does, seems to only ever be '1' in scripts. - - : - : - : - - - - Adjust the physics parameters of a prop, or otherwise known as "object". This is useful for simulated gravity. - Other parameters seem to be unknown. - p2: seems to be weight and gravity related. Higher value makes the obj fall faster. Very sensitive? - p3: seems similar to p2 - p4: makes obj fall slower the higher the value - p5: similar to p4 - - - - - ` - i don't know what this does - ```<pre> - void __fastcall OBJECT___0x77F33F2CCF64B3AA_START(scrNativeCallContext *args) - { - bool p2; // bl@1 - CObject *pObject; // rax@1 - scrNativeCallContextArgStruct *pArgs; // rax@1 - pArgs = args->pArgs; - p2 = pArgs->a2.BOOL != 0; - pObject = getAddressOfObject(pArgs->a1.Object); - if ( pObject ) - { - pObject->field_425 &= 0xDFu; // 1101 1111 (clear bit 6) - pObject->field_425 |= 32 * p2; // bit 6 = p2 - } - } - // sfink - // note to AB: please set "white-space: pre" in css - ```` - ``` - ## Parameters - * **object**: - * **p1**: - - - - - ` - i don't know what this does - ```<pre> - void __fastcall OBJECT___0x77F33F2CCF64B3AA_START(scrNativeCallContext *args) - { - bool p2; // bl@1 - CObject *pObject; // rax@1 - scrNativeCallContextArgStruct *pArgs; // rax@1 - pArgs = args->pArgs; - p2 = pArgs->a2.BOOL != 0; - pObject = getAddressOfObject(pArgs->a1.Object); - if ( pObject ) - { - pObject->field_425 &= 0xDFu; // 1101 1111 (clear bit 6) - pObject->field_425 |= 32 * p2; // bit 6 = p2 - } - } - // sfink - // note to AB: please set "white-space: pre" in css - ```` - ``` - ## Parameters - * **object**: - * **p1**: - - - - - enum ObjectPaintVariants - { - Pacific = 0, - Azure = 1, - Nautical = 2, - Continental = 3, - Battleship = 4, - Intrepid = 5, - Uniform = 6, - Classico = 7, - Mediterranean = 8, - Command = 9, - Mariner = 10, - Ruby = 11, - Vintage = 12, - Pristine = 13, - Merchant = 14, - Voyager = 15 - }; - - - - - enum ObjectPaintVariants - { - Pacific = 0, - Azure = 1, - Nautical = 2, - Continental = 3, - Battleship = 4, - Intrepid = 5, - Uniform = 6, - Classico = 7, - Mediterranean = 8, - Command = 9, - Mariner = 10, - Ruby = 11, - Vintage = 12, - Pristine = 13, - Merchant = 14, - Voyager = 15 - }; - - - - - Appears to have an optional bool parameter that is unused in the scripts. - If you pass true, something will be set to zero. - - - - - p0 always seems to be 0 - duration in milliseconds - frequency should range from about 10 (slow vibration) to 255 (very fast) - appears to be a hash collision, though it does do what it says - example: - SET_PAD_SHAKE(0, 100, 200); - - - - - console hash: 0xC92719A7 - - - - - console hash: 0xC92719A7 - - - - - hash collision - - - - - only works on some fx's - p4 = 0 - - - - - Should be named SET_PARTICLE_FX_LOOPED_PROPERTY. "Evolution" doesn't make much sense... - -------- - p4 seems to be always 0. - Usage: - if (!GRAPHICS::DOES_PARTICLE_FX_LOOPED_EXIST(l_25C7)) { - l_25C7 = GRAPHICS::_DDE23F30CC5A0F03("scr_veh_plane_gen_damage", l_8B9, l_25C4, 0.0, 0.0, 0.0, ENTITY::_GET_ENTITY_BONE_INDEX(l_8B9, "exhaust"), 1.0, 0, 0, 0); - GRAPHICS::SET_PARTICLE_FX_LOOPED_EVOLUTION(l_25C7, "damage_smoke", 0.5, 0); - GRAPHICS::SET_PARTICLE_FX_LOOPED_EVOLUTION(l_25C7, "damage_fire", 0.2, 0); - } - - - - - Usage example for C#: - Function.Call(Hash.SET_PARTICLE_FX_NON_LOOPED_ALPHA, new InputArgument[] { 0.1f }); - Note: the argument alpha ranges from 0.0f-1.0f ! - - - - - only works on some fx's - - - - - Toggles the light state for the pause menu ped in frontend menus. - This is used by R\* in combination with [`SET_PAUSE_MENU_PED_SLEEP_STATE`](#_0xECF128344E9FF9F1) to toggle the "offline" or "online" state in the "friends" tab of the pause menu in GTA Online. - Example: - On: ![lights on](https://vespura.com/hi/i/2019-04-01_16-09_540ee_1015.png) - Off: ![lights off](https://vespura.com/hi/i/2019-04-01_16-10_8b5e7_1016.png) - - True enables the light, false disables the light. - - - - Toggles the light state for the pause menu ped in frontend menus. - This is used by R\* in combination with [`SET_PAUSE_MENU_PED_SLEEP_STATE`](#_0xECF128344E9FF9F1) to toggle the "offline" or "online" state in the "friends" tab of the pause menu in GTA Online. - Example: - On: ![lights on](https://vespura.com/hi/i/2019-04-01_16-09_540ee_1015.png) - Off: ![lights off](https://vespura.com/hi/i/2019-04-01_16-10_8b5e7_1016.png) - - True enables the light, false disables the light. - - - - Toggles the pause menu ped sleep state for frontend menus. - [Example GIF](https://vespura.com/hi/i/2019-04-01_15-51_8ed38_1014.gif) - - 0 will make the ped slowly fall asleep, 1 will slowly wake the ped up. - - - - Toggles the pause menu ped sleep state for frontend menus. - [Example GIF](https://vespura.com/hi/i/2019-04-01_15-51_8ed38_1014.gif) - - 0 will make the ped slowly fall asleep, 1 will slowly wake the ped up. - - - - accuracy = 0-100, 100 being perfectly accurate - - - - - Previously named _0xD30C50DF888D58B5, this native turns on the AI blip on the specified ped. It also disappears automatically when the ped is too far or if the ped is dead. You don't need to control it with other natives. - See gtaforums.com/topic/884370-native-research-ai-blips for further information. - Note: Everything said at the bottom is only valid for persistant peds, as AI blips seem to behave differently for non-persistant peds. - • To create an AI blip, you must use UI::0xD30C50DF888D58B5() (_SET_PED_ENEMY_AI_BLIP). It has two arguments: "ped" which is the ped you want to AI blip to be linked to, and "showViewCones" which needs to be true for AI blips to appear. - • To check if a ped has an AI blip, you can use UI::DOES_PED_HAVE_AI_BLIP(Ped ped), which returns a simple bool. - • By default, AI blips never disappear. If you want them to disappear when you're at a certain distance from a ped, you can use UI::0x97C65887D4B37FA9(Ped ped, float distance) (_SET_AI_BLIP_MAX_DISTANCE) - • By default, the blip only appears when you're in combat with the specified ped. If you want it to be always displayed, you can use UI::x0C4BBF625CA98C4E() (_IS_AI_BLIP_ALWAYS_SHOWN). It also has two arguments: "ped", and a flag. If the flag is set to true, the blip will always be displayed. If it's set to false, the AI blip will have its default behaviour. - • By default, a view cone is displayed with the blip (basically a blue surface that represents the field of view of the ped, like in vanilla stealth missions). If you don't want it, you can disable it with UI::HIDE_SPECIAL_ABILITY_LOCKON_OPERATION(Ped ped, bool flag). If the flag is set to true, the view cone is displayed. If the flag is set to false, it is not. - • Finally, there's actually 3 types of AI blips: - 0 - the default, red, "enemy" blip - 1 - a weird, semi-transparent, nameless, yellow blip - 2 - the blue "friend" blip - You can change an AI blip's type with UI::0xE52B8E7F85D39A08(Ped ped, int type) (_SET_AI_BLIP_TYPE). - - - - - Previously named _0xD30C50DF888D58B5, this native turns on the AI blip on the specified ped. It also disappears automatically when the ped is too far or if the ped is dead. You don't need to control it with other natives. - See gtaforums.com/topic/884370-native-research-ai-blips for further information. - Note: Everything said at the bottom is only valid for persistant peds, as AI blips seem to behave differently for non-persistant peds. - • To create an AI blip, you must use UI::0xD30C50DF888D58B5() (_SET_PED_ENEMY_AI_BLIP). It has two arguments: "ped" which is the ped you want to AI blip to be linked to, and "showViewCones" which needs to be true for AI blips to appear. - • To check if a ped has an AI blip, you can use UI::DOES_PED_HAVE_AI_BLIP(Ped ped), which returns a simple bool. - • By default, AI blips never disappear. If you want them to disappear when you're at a certain distance from a ped, you can use UI::0x97C65887D4B37FA9(Ped ped, float distance) (_SET_AI_BLIP_MAX_DISTANCE) - • By default, the blip only appears when you're in combat with the specified ped. If you want it to be always displayed, you can use UI::x0C4BBF625CA98C4E() (_IS_AI_BLIP_ALWAYS_SHOWN). It also has two arguments: "ped", and a flag. If the flag is set to true, the blip will always be displayed. If it's set to false, the AI blip will have its default behaviour. - • By default, a view cone is displayed with the blip (basically a blue surface that represents the field of view of the ped, like in vanilla stealth missions). If you don't want it, you can disable it with UI::HIDE_SPECIAL_ABILITY_LOCKON_OPERATION(Ped ped, bool flag). If the flag is set to true, the view cone is displayed. If the flag is set to false, it is not. - • Finally, there's actually 3 types of AI blips: - 0 - the default, red, "enemy" blip - 1 - a weird, semi-transparent, nameless, yellow blip - 2 - the blue "friend" blip - You can change an AI blip's type with UI::0xE52B8E7F85D39A08(Ped ped, int type) (_SET_AI_BLIP_TYPE). - - - - - Previously named _0xD30C50DF888D58B5, this native turns on the AI blip on the specified ped. It also disappears automatically when the ped is too far or if the ped is dead. You don't need to control it with other natives. - See gtaforums.com/topic/884370-native-research-ai-blips for further information. - Note: Everything said at the bottom is only valid for persistant peds, as AI blips seem to behave differently for non-persistant peds. - • To create an AI blip, you must use UI::0xD30C50DF888D58B5() (_SET_PED_ENEMY_AI_BLIP). It has two arguments: "ped" which is the ped you want to AI blip to be linked to, and "showViewCones" which needs to be true for AI blips to appear. - • To check if a ped has an AI blip, you can use UI::DOES_PED_HAVE_AI_BLIP(Ped ped), which returns a simple bool. - • By default, AI blips never disappear. If you want them to disappear when you're at a certain distance from a ped, you can use UI::0x97C65887D4B37FA9(Ped ped, float distance) (_SET_AI_BLIP_MAX_DISTANCE) - • By default, the blip only appears when you're in combat with the specified ped. If you want it to be always displayed, you can use UI::x0C4BBF625CA98C4E() (_IS_AI_BLIP_ALWAYS_SHOWN). It also has two arguments: "ped", and a flag. If the flag is set to true, the blip will always be displayed. If it's set to false, the AI blip will have its default behaviour. - • By default, a view cone is displayed with the blip (basically a blue surface that represents the field of view of the ped, like in vanilla stealth missions). If you don't want it, you can disable it with UI::HIDE_SPECIAL_ABILITY_LOCKON_OPERATION(Ped ped, bool flag). If the flag is set to true, the view cone is displayed. If the flag is set to false, it is not. - • Finally, there's actually 3 types of AI blips: - 0 - the default, red, "enemy" blip - 1 - a weird, semi-transparent, nameless, yellow blip - 2 - the blue "friend" blip - You can change an AI blip's type with UI::0xE52B8E7F85D39A08(Ped ped, int type) (_SET_AI_BLIP_TYPE). - - - - - value ranges from 0 to 3. - - - - - stance: - 0 = idle - 1 = walk - 2 = running - p5 = usually set to true - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Sets the armor of the specified ped. - ped: The Ped to set the armor of. - amount: A value between 0 and 100 indicating the value to set the Ped's armor to. - - - - - Turns the desired ped into a cop. If you use this on the player ped, you will become almost invisible to cops dispatched for you. You will also report your own crimes, get a generic cop voice, get a cop-vision-cone on the radar, and you will be unable to shoot at other cops. SWAT and Army will still shoot at you. Toggling ped as "false" has no effect; you must change p0's ped model to disable the effect. - - - - - This is an alias of SET_ENTITY_AS_NO_LONGER_NEEDED. - - - - - 0 = can (bike) - 1 = can't (bike) - 2 = unk - 3 = unk - - - - - It simply makes the said ped to cower behind cover object(wall, desk, car) - Peds flee attributes must be set to not to flee, first. Else, most of the peds, will just flee from gunshot sounds or any other panic situations. - - - - - p2 usually 0 - - - - - This only will teleport the ped to the group leader if the group leader teleports (sets coords). - Only works in singleplayer - - - - - Overrides the ped's collision capsule radius for the current tick. - Must be called every tick to be effective. - Setting this to 0.001 will allow warping through some objects. - - - - - 100 would equal attack - less then 50ish would mean run away - Only the values 0, 1 and 2 occur in the decompiled scripts. Most likely refers directly to the values also described in combatbehaviour.meta: - 0: CA_Poor - 1: CA_Average - 2: CA_Professional - Tested this and got the same results as the first explanation here. Could not find any difference between 0, 1 and 2. - - - - - These combat attributes seem to be the same as the BehaviourFlags from combatbehaviour.meta. - So far, these are the equivalents found: - enum CombatAttributes - { - BF_CanUseCover = 0, - BF_CanUseVehicles = 1, - BF_CanDoDrivebys = 2, - BF_CanLeaveVehicle = 3, - BF_CanFightArmedPedsWhenNotArmed = 5, - BF_CanTauntInVehicle = 20, - BF_AlwaysFight = 46, - BF_IgnoreTrafficWhenDriving = 52, - BF_FreezeMovement = 292, - BF_PlayerCanUseFiringWeapons = 1424 - }; - 8 = ? - 9 = ? - 13 = ? - 14 ? - Research thread: gtaforums.com/topic/833391-researchguide-combat-behaviour-flags/ - - - - - 0 - Stationary (Will just stand in place) - 1 - Defensive (Will try to find cover and very likely to blind fire) - 2 - Offensive (Will attempt to charge at enemy but take cover as well) - 3 - Suicidal Offensive (Will try to flank enemy in a suicidal attack) - - - - - Only the values 0, 1 and 2 occur in the decompiled scripts. Most likely refers directly to the values also described as AttackRange in combatbehaviour.meta: - 0: CR_Near - 1: CR_Medium - 2: CR_Far - - - - - This native is used to set component variation on a ped. Components, drawables and textures IDs are related to the ped model. - ### MP Freemode list of components - **0**: Face - **1**: Mask - **2**: Hair - **3**: Torso - **4**: Leg - **5**: Parachute / bag - **6**: Shoes - **7**: Accessory - **8**: Undershirt - **9**: Kevlar - **10**: Badge - **11**: Torso 2 - ### Related and useful natives - [GET_NUMBER_OF_PED_DRAWABLE_VARIATIONS](#_0x27561561732A7842) - [GET_NUMBER_OF_PED_TEXTURE_VARIATIONS](#_0x8F7156A3142A6BAD) - [List of component/props ID](gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html) of player_two with examples - - The ped handle. - The component that you want to set. - The drawable id that is going to be set. - The texture id of the drawable. - 0 to 3. - - - - Research help : pastebin.com/fPL1cSwB - New items added with underscore as first char - ----------------------------------------------------------------------- - enum PedConfigFlags - { - PED_FLAG_CAN_FLY_THRU_WINDSCREEN = 32, - PED_FLAG_DIES_BY_RAGDOLL = 33, - _PED_FLAG_PUT_ON_MOTORCYCLE_HELMET = 35, - PED_FLAG_NO_COLLISION = 52, - _PED_FLAG_IS_SHOOTING = 58, - _PED_FLAG_IS_ON_GROUND = 60, - PED_FLAG_NO_COLLIDE = 62, - PED_FLAG_DEAD = 71, - PED_FLAG_IS_SNIPER_SCOPE_ACTIVE = 72, - PED_FLAG_SUPER_DEAD = 73, - _PED_FLAG_IS_IN_AIR = 76, - PED_FLAG_IS_AIMING = 78, - PED_FLAG_DRUNK = 100, - _PED_FLAG_IS_NOT_RAGDOLL_AND_NOT_PLAYING_ANIM = 104, - PED_FLAG_NO_PLAYER_MELEE = 122, - PED_FLAG_NM_MESSAGE_466 = 125, - PED_FLAG_INJURED_LIMP = 166, - PED_FLAG_INJURED_LIMP_2 = 170, - _PED_FLAG_DISABLE_SHUFFLING_TO_DRIVER_SEAT = 184, - PED_FLAG_INJURED_DOWN = 187, - PED_FLAG_SHRINK = 223, - PED_FLAG_MELEE_COMBAT = 224, - _PED_FLAG_IS_ON_STAIRS = 253, - _PED_FLAG_HAS_ONE_LEG_ON_GROUND = 276, - PED_FLAG_NO_WRITHE = 281, - PED_FLAG_FREEZE = 292, - PED_FLAG_IS_STILL = 301, - PED_FLAG_NO_PED_MELEE = 314, - _PED_SWITCHING_WEAPON = 331, - PED_FLAG_ALPHA = 410, - _PED_FLAG_DISABLE_STARTING_VEH_ENGINE = 429, - }; - (*) When flagId is set to 33 and the bool value to true, peds will die by starting ragdoll, so you should set this flag to false when you resurrect a ped. - When flagId is set to 62 and the boolvalue to false this happens: Ped is taken out of vehicle and can't get back in when jacking their empty vehicle. If in a plane it falls from the sky and crashes. Sometimes peds vehicle continue to drive the route without its driver who's running after. - (*) - JUMPING CHANGES 60,61,104 TO FALSE - BEING ON WATER CHANGES 60,61 TO FALSE AND 65,66,168 TO TRUE - FALLING CHANGES 60,61,104,276 TO FALSE AND TO 76 TRUE - DYING CHANGES 60,61,104,276* TO FALSE AND (NONE) TO TRUE - DYING MAKES 60,61,104 TO FALSE - BEING IN A CAR CHANGES 60,79,104 TO FALSE AND 62 TO TRUE - (*)Maximum value for flagId is 0x1AA (426) in b944. - ID 0xF0 (240) appears to be a special flag which is handled different compared to the others IDs. - - - - - teleports ped to coords along with the vehicle ped is in - - - - - p1: Only "CODE_HUMAN_STAND_COWER" found in the b617d scripts. - - - - - Has 5 parameters since latest patches. - - - - - Applies an Item from a PedDecorationCollection to a ped. These include tattoos and shirt decals. - collection - PedDecorationCollection filename hash - overlay - Item name hash - Example: - Entry inside "mpbeach_overlays.xml" - - <Item> - <uvPos x="0.500000" y="0.500000" /> - <scale x="0.600000" y="0.500000" /> - <rotation value="0.000000" /> - <nameHash>FM_Hair_Fuzz</nameHash> - <txdHash>mp_hair_fuzz</txdHash> - <txtHash>mp_hair_fuzz</txtHash> - <zone>ZONE_HEAD</zone> - <type>TYPE_TATTOO</type> - <faction>FM</faction> - <garment>All</garment> - <gender>GENDER_DONTCARE</gender> - <award /> - <awardLevel /> - </Item> - Code: - PED::_0x5F5D1665E352A839(PLAYER::PLAYER_PED_ID(), GAMEPLAY::GET_HASH_KEY("mpbeach_overlays"), GAMEPLAY::GET_HASH_KEY("fm_hair_fuzz")) - - - - - Applies an Item from a PedDecorationCollection to a ped. These include tattoos and shirt decals. - collection - PedDecorationCollection filename hash - overlay - Item name hash - Example: - Entry inside "mpbeach_overlays.xml" - - <Item> - <uvPos x="0.500000" y="0.500000" /> - <scale x="0.600000" y="0.500000" /> - <rotation value="0.000000" /> - <nameHash>FM_Hair_Fuzz</nameHash> - <txdHash>mp_hair_fuzz</txdHash> - <txtHash>mp_hair_fuzz</txtHash> - <zone>ZONE_HEAD</zone> - <type>TYPE_TATTOO</type> - <faction>FM</faction> - <garment>All</garment> - <gender>GENDER_DONTCARE</gender> - <award /> - <awardLevel /> - </Item> - Code: - PED::_0x5F5D1665E352A839(PLAYER::PLAYER_PED_ID(), GAMEPLAY::GET_HASH_KEY("mpbeach_overlays"), GAMEPLAY::GET_HASH_KEY("fm_hair_fuzz")) - - - - - Sets Ped Default Clothes - - - - - • Usage - → Use this native inside a looped function. - → Values: - → 0.0 = no peds on streets - → 1.0 = normal peds on streets - - - - - [16/06/2017 by ins1de] : - Drops the weapon object from selected peds and turns it into a pickup. - Offset defines the next position of the weapon, ammo count is the stored ammo in the pickup (if ammoCount == 0, pickup won't be created) - Default offset values (freemode.c): - if (is_ped_walking(player_ped_id())) - { - vVar1 = {0.6f, 4.7f, -0.1f}; - } - else if (is_ped_sprinting(player_ped_id())) - { - vVar1 = {0.6f, 5.7f, -0.1f}; - } - else if (is_ped_running(player_ped_id())) - { - vVar1 = {0.6f, 4.7f, -0.1f}; - } - else - { - vVar1 = {0.4f, 4.7f, -0.1f}; - } - - - - - This is the SET_CHAR_DUCKING from GTA IV, that makes Peds duck. This function does nothing in GTA V. It cannot set the ped as ducking in vehicles, and IS_PED_DUCKING will always return false. - - - - - This is a hash collision... - _IS_VEHICLE_NEAR_ENTITY - - - - - Values look to be between 0.0 and 1.0 - From decompiled scripts: 0.0, 0.6, 0.65, 0.8, 1.0 - You are correct, just looked in IDA it breaks from the function if it's less than 0.0f or greater than 1.0f. - - - - - Used for freemode (online) characters. - For some reason, the scripts use a rounded float for the index. - - - - - Sets the various freemode face features, e.g. nose length, chin shape. Scale ranges from -1.0 to 1.0. - Index can be 0 - Edit:---->Thanks to the first user. - Enum Face_Feature - Nose_Width - Nose_Peak_Hight - Nose_Peak_Lenght - Nose_Bone_High - Nose_Peak_Lowering - Nose_Bone_Twist - EyeBrown_High - EyeBrown_Forward - Cheeks_Bone_High - Cheeks_Bone_Width - Cheeks_Width - Eyes_Openning - Lips_Thickness - Jaw_Bone_Width 'Bone size to sides - Jaw_Bone_Back_Lenght 'Bone size to back - Chimp_Bone_Lowering 'Go Down - Chimp_Bone_Lenght 'Go forward - Chimp_Bone_Width - Chimp_Hole - Neck_Thikness - End Enum - Example in VB.Net - Public Shared Sub SET_PED_FACE_FEATURE(FreemodePed As Ped, Index As Face_Feature, Scale As Single) - Native.Function.Call(Native.Hash._SET_PED_FACE_FEATURE, FreemodePed, Index, Scale) - End Sub - - - - - Console Hash: 0x8CD3E487 - - - - - Console Hash: 0x8CD3E487 - - - - - FIRING_PATTERN_BURST_FIRE = 0xD6FF6D61 ( 1073727030 ) - FIRING_PATTERN_BURST_FIRE_IN_COVER = 0x026321F1 ( 40051185 ) - FIRING_PATTERN_BURST_FIRE_DRIVEBY = 0xD31265F2 ( -753768974 ) - FIRING_PATTERN_FROM_GROUND = 0x2264E5D6 ( 577037782 ) - FIRING_PATTERN_DELAY_FIRE_BY_ONE_SEC = 0x7A845691 ( 2055493265 ) - FIRING_PATTERN_FULL_AUTO = 0xC6EE6B4C ( -957453492 ) - FIRING_PATTERN_SINGLE_SHOT = 0x5D60E4E0 ( 1566631136 ) - FIRING_PATTERN_BURST_FIRE_PISTOL = 0xA018DB8A ( -1608983670 ) - FIRING_PATTERN_BURST_FIRE_SMG = 0xD10DADEE ( 1863348768 ) - FIRING_PATTERN_BURST_FIRE_RIFLE = 0x9C74B406 ( -1670073338 ) - FIRING_PATTERN_BURST_FIRE_MG = 0xB573C5B4 ( -1250703948 ) - FIRING_PATTERN_BURST_FIRE_PUMPSHOTGUN = 0x00BAC39B ( 12239771 ) - FIRING_PATTERN_BURST_FIRE_HELI = 0x914E786F ( -1857128337 ) - FIRING_PATTERN_BURST_FIRE_MICRO = 0x42EF03FD ( 1122960381 ) - FIRING_PATTERN_SHORT_BURSTS = 0x1A92D7DF ( 445831135 ) - FIRING_PATTERN_SLOW_FIRE_TANK = 0xE2CA3A71 ( -490063247 ) - if anyone is interested firing pattern info: pastebin.com/Px036isB - - - - - Bool probably has something to do with vehicles, maybe if the ped can use vehicle to flee? - Values used as attributes are those in sequence of powers of two, 1, 2, 4, 8, 16, 32, 64.... 65536. - jedijosh920: Setting attribute "2" to true will make the ped steal a vehicle. - - - - - p1/gadgetHash was always 0xFBAB5776 ("GADGET_PARACHUTE"). - p2 is always true. - - - - - From the scripts: - PED::SET_PED_GESTURE_GROUP(PLAYER::PLAYER_PED_ID(), - "ANIM_GROUP_GESTURE_MISS_FRA0"); - PED::SET_PED_GESTURE_GROUP(PLAYER::PLAYER_PED_ID(), - "ANIM_GROUP_GESTURE_MISS_DocksSetup1"); - - - - - enable or disable the gravity of a ped - Examples: - PED::SET_PED_GRAVITY(PLAYER::PLAYER_PED_ID(), 0x00000001); - PED::SET_PED_GRAVITY(Local_289[iVar0 -- [[20]] ], 0x00000001); - - - - - Used for freemode (online) characters. - - - - - The "shape" parameters control the shape of the ped's face. The "skin" parameters control the skin tone. ShapeMix and skinMix control how much the first and second IDs contribute,(typically mother and father.) ThirdMix overrides the others in favor of the third IDs. IsParent is set for "children" of the player character's grandparents during old-gen character creation. It has unknown effect otherwise. - The IDs start at zero and go Male Non-DLC, Female Non-DLC, Male DLC, and Female DLC. - !!!Can someone add working example for this??? - try this: - headBlendData headData; - _GET_PED_HEAD_BLEND_DATA(PLAYER_PED_ID(), &headData); - SET_PED_HEAD_BLEND_DATA(PLAYER_PED_ID(), headData.shapeFirst, headData.shapeSecond, headData.shapeThird, headData.skinFirst, headData.skinSecond - , headData.skinThird, headData.shapeMix, headData.skinMix, headData.skinThird, 0); - For more info please refer to this topic. - gtaforums.com/topic/858970-all-gtao-face-ids-pedset-ped-head-blend-data-explained - - - - - OverlayID ranges from 0 to 12, index from 0 to _GET_NUM_OVERLAY_VALUES(overlayID)-1, and opacity from 0.0 to 1.0. - overlayID Part Index, to disable - 0 Blemishes 0 - 23, 255 - 1 Facial Hair 0 - 28, 255 - 2 Eyebrows 0 - 33, 255 - 3 Ageing 0 - 14, 255 - 4 Makeup 0 - 74, 255 - 5 Blush 0 - 6, 255 - 6 Complexion 0 - 11, 255 - 7 Sun Damage 0 - 10, 255 - 8 Lipstick 0 - 9, 255 - 9 Moles/Freckles 0 - 17, 255 - 10 Chest Hair 0 - 16, 255 - 11 Body Blemishes 0 - 11, 255 - 12 Add Body Blemishes 0 - 1, 255 - - - - - Used for freemode (online) characters. - ColorType is 1 for eyebrows, beards, and chest hair; 2 for blush and lipstick; and 0 otherwise, though not called in those cases. - Called after SET_PED_HEAD_OVERLAY(). - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - This native sets the glow intensity of illuminated clothing items. - This native does **NOT** need to be executed every tick. - This native is **NOT** synced with other connected players, you will have to set the opacity on the ped on all clients individually. - Glow intensity is a value between `0.0` and `1.0`. - In some older decompiled scripts this is known as `_SET_PED_REFLECTION_INTENSITY`. - Since there's no joaat hash for this, I find `_SET_PED_ILLUMINATED_CLOTHING_GLOW_INTENSITY` more descriptive than `_SET_PED_REFLECTION_INTENSITY`. - Use [`GetPedIlluminatedClothingGlowIntensity`](#_0x1461B28A06717D68) to get the illuminated clothing glow intensity of a specific ped. - Intensity: `1.0`: - ![](https://www.vespura.com/hi/i/2018-11-13_17-03_c2e23_229.png) - Intensity: `0.0`: - ![](https://www.vespura.com/hi/i/2018-11-13_17-03_35c33_230.png) - **Examples code result**: - ![](https://www.vespura.com/hi/i/2018-11-13_17-11_10199_232.gif) - (Direct link if embed doesn't work: [here](https://www.vespura.com/hi/i/2018-11-13_17-11_10199_232.gif)) - - The ped to set the glow intensity on. - The glow intensity, value between `0.0` and `1.0`. - - - - This native sets the glow intensity of illuminated clothing items. - This native does **NOT** need to be executed every tick. - This native is **NOT** synced with other connected players, you will have to set the opacity on the ped on all clients individually. - Glow intensity is a value between `0.0` and `1.0`. - In some older decompiled scripts this is known as `_SET_PED_REFLECTION_INTENSITY`. - Since there's no joaat hash for this, I find `_SET_PED_ILLUMINATED_CLOTHING_GLOW_INTENSITY` more descriptive than `_SET_PED_REFLECTION_INTENSITY`. - Use [`GetPedIlluminatedClothingGlowIntensity`](#_0x1461B28A06717D68) to get the illuminated clothing glow intensity of a specific ped. - Intensity: `1.0`: - ![](https://www.vespura.com/hi/i/2018-11-13_17-03_c2e23_229.png) - Intensity: `0.0`: - ![](https://www.vespura.com/hi/i/2018-11-13_17-03_35c33_230.png) - **Examples code result**: - ![](https://www.vespura.com/hi/i/2018-11-13_17-11_10199_232.gif) - (Direct link if embed doesn't work: [here](https://www.vespura.com/hi/i/2018-11-13_17-11_10199_232.gif)) - - The ped to set the glow intensity on. - The glow intensity, value between `0.0` and `1.0`. - - - - PED::SET_PED_IN_VEHICLE_CONTEXT(l_128, GAMEPLAY::GET_HASH_KEY("MINI_PROSTITUTE_LOW_PASSENGER")); - PED::SET_PED_IN_VEHICLE_CONTEXT(l_128, GAMEPLAY::GET_HASH_KEY("MINI_PROSTITUTE_LOW_RESTRICTED_PASSENGER")); - PED::SET_PED_IN_VEHICLE_CONTEXT(l_3212, GAMEPLAY::GET_HASH_KEY("MISS_FAMILY1_JIMMY_SIT")); - PED::SET_PED_IN_VEHICLE_CONTEXT(l_3212, GAMEPLAY::GET_HASH_KEY("MISS_FAMILY1_JIMMY_SIT_REAR")); - PED::SET_PED_IN_VEHICLE_CONTEXT(l_95, GAMEPLAY::GET_HASH_KEY("MISS_FAMILY2_JIMMY_BICYCLE")); - PED::SET_PED_IN_VEHICLE_CONTEXT(num3, GAMEPLAY::GET_HASH_KEY("MISSFBI2_MICHAEL_DRIVEBY")); - PED::SET_PED_IN_VEHICLE_CONTEXT(PLAYER::PLAYER_PED_ID(), GAMEPLAY::GET_HASH_KEY("MISS_ARMENIAN3_FRANKLIN_TENSE")); - PED::SET_PED_IN_VEHICLE_CONTEXT(PLAYER::PLAYER_PED_ID(), GAMEPLAY::GET_HASH_KEY("MISSFBI5_TREVOR_DRIVING")); - - - - - Ped: The ped to warp. - vehicle: The vehicle to warp the ped into. - Seat_Index: [-1 is driver seat, -2 first free passenger seat] - Moreinfo of Seat Index - DriverSeat = -1 - Passenger = 0 - Left Rear = 1 - RightRear = 2 - - - - - Sets the ped drunk sounds. Only works with PLAYER_PED_ID - ==================================================== - As mentioned above, this only sets the drunk sound to ped/player. - To give the Ped a drunk effect with drunk walking animation try using SET_PED_MOVEMENT_CLIPSET - Below is an example - if (!Function.Call<bool>(Hash.HAS_ANIM_SET_LOADED, "move_m@drunk@verydrunk")) - { - Function.Call(Hash.REQUEST_ANIM_SET, "move_m@drunk@verydrunk"); - } - Function.Call(Hash.SET_PED_MOVEMENT_CLIPSET, Ped.Handle, "move_m@drunk@verydrunk", 0x3E800000); - And to stop the effect use - RESET_PED_MOVEMENT_CLIPSET - - - - - "IK" stands for "Inverse kinematics." I assume this has something to do with how the ped uses his legs to balance. In the scripts, the second parameter is always an int with a value of 2, 0, or sometimes 1 - - - - - sets the maximum health of a ped - I think it's never been used in any script - - - - - Ped will stay on the ground after being stunned for at lest ms time. (in milliseconds) - - - - - Maximum possible amount of money on MP is 2000. ~JX - ----------------------------------------------------------------------------- - Maximum amount that a ped can theoretically have is 65535 (0xFFFF) since the amount is stored as an unsigned short (uint16_t) value. - - - - - Min: 0.00 - Max: 10.00 - Can be used in combo with fast run cheat. - When value is set to 10.00: - Sprinting without fast run cheat: 66 m/s - Sprinting with fast run cheat: 77 m/s - Needs to be looped! - Note: According to IDA for the Xbox360 xex, when they check bgt they seem to have the min to 0.0f, but the max set to 1.15f not 10.0f. - - - - - p2 is usually 1.0f - EDIT 12/24/16: - p2 does absolutely nothing no matter what the value is. - EDIT 08/16/17: - p2 is the time for a smooth changing to the new clipset. - List of movement clipsets: - Thanks to elsewhat for list. - "ANIM_GROUP_MOVE_BALLISTIC" - "ANIM_GROUP_MOVE_LEMAR_ALLEY" - "clipset@move@trash_fast_turn" - "FEMALE_FAST_RUNNER" - "missfbi4prepp1_garbageman" - "move_characters@franklin@fire" - "move_characters@Jimmy@slow@" - "move_characters@michael@fire" - "move_f@flee@a" - "move_f@scared" - "move_f@sexy@a" - "move_heist_lester" - "move_injured_generic" - "move_lester_CaneUp" - "move_m@bag" - "MOVE_M@BAIL_BOND_NOT_TAZERED" - "MOVE_M@BAIL_BOND_TAZERED" - "move_m@brave" - "move_m@casual@d" - "move_m@drunk@moderatedrunk" - "MOVE_M@DRUNK@MODERATEDRUNK" - "MOVE_M@DRUNK@MODERATEDRUNK_HEAD_UP" - "MOVE_M@DRUNK@SLIGHTLYDRUNK" - "MOVE_M@DRUNK@VERYDRUNK" - "move_m@fire" - "move_m@gangster@var_e" - "move_m@gangster@var_f" - "move_m@gangster@var_i" - "move_m@JOG@" - "MOVE_M@PRISON_GAURD" - "MOVE_P_M_ONE" - "MOVE_P_M_ONE_BRIEFCASE" - "move_p_m_zero_janitor" - "move_p_m_zero_slow" - "move_ped_bucket" - "move_ped_crouched" - "move_ped_mop" - "MOVE_M@FEMME@" - "MOVE_F@FEMME@" - "MOVE_M@GANGSTER@NG" - "MOVE_F@GANGSTER@NG" - "MOVE_M@POSH@" - "MOVE_F@POSH@" - "MOVE_M@TOUGH_GUY@" - "MOVE_F@TOUGH_GUY@" - ~ NotCrunchyTaco - - - - - Stops speech. - - - - - Stops speech. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - *untested but char *name could also be a hash for a localized string - - - - - The distance between these points, is the diagonal of a box (remember it's 3D). - - - - - Hash collision!!! Actual name: SET_PED_PATH_MAY_ENTER_WATER - - - - - p2 could be time. Only example in the decompiled scripts uses it as -1. - - - - - **This native does absolutely nothing, just a nullsub** - ``` - Points to the same function as for example GET_RANDOM_VEHICLE_MODEL_IN_MEMORY and it does absolutely nothing. - ``` - - - - - This is only called once in the scripts. - sub_1CD9(&l_49, 0, getElem(3, &l_34, 4), "MICHAEL", 0, 1); - sub_1CA8("WORLD_HUMAN_SMOKING", 2); - PED::SET_PED_PRIMARY_LOOKAT(getElem(3, &l_34, 4), PLAYER::PLAYER_PED_ID()); - - - - - This native is used to set prop variation on a ped. Components, drawables and textures IDs are related to the ped model. - ### MP Freemode list of props - **0**: Hat - **1**: Glass - **2**: Ear - **6**: Watch - **7**: Bracelet - ### Related and useful natives - [GET_NUMBER_OF_PED_PROP_DRAWABLE_VARIATIONS](#_0x5FAF9754E789FB47) - [GET_NUMBER_OF_PED_PROP_TEXTURE_VARIATIONS](#_0xA6E7F1CEB523E171) - [List of component/props ID](gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html) of player_two with examples - - The ped handle. - The component that you want to set. - The drawable id that is going to be set. - The texture id of the drawable. - Attached or not. - - - - Works for both player and peds, but some flags don't seem to work for the player (1, for example) - 1 - Blocks ragdolling when shot. - 2 - Blocks ragdolling when hit by a vehicle. The ped still might play a falling animation. - 4 - Blocks ragdolling when set on fire. - ----------------------------------------------------------------------- - There seem to be 26 flags - - - - - Works for both player and peds, but some flags don't seem to work for the player (1, for example) - 1 - Blocks ragdolling when shot. - 2 - Blocks ragdolling when hit by a vehicle. The ped still might play a falling animation. - 4 - Blocks ragdolling when set on fire. - ----------------------------------------------------------------------- - There seem to be 26 flags - - - - - Causes Ped to ragdoll on collision with any object (e.g Running into trashcan). If applied to player you will sometimes trip on the sidewalk. - - - - - p1 is always false in R* scripts. - Quick disassembly seems to indicate that p1 is unused. - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - List of component/props ID - gtaxscripting.blogspot.com/2016/04/gta-v-peds-component-and-props.html - - - - - PED::SET_PED_RESET_FLAG(PLAYER::PLAYER_PED_ID(), 240, 1); - - - - - Assigns some ambient voice to the ped. - - - - - Assigns some ambient voice to the ped. - - - - - shootRate 0-1000 - - - - - p1 is usually 0 in the scripts. action is either 0 or a pointer to "DEFAULT_ACTION". - - - - - ped cannot be headshot if this is set to false - - - - - Sweat is set to 100.0 or 0.0 in the decompiled scripts. - - - - - Speech related. - - - - - Speech related. - - - - - Only 1 and 2 appear in the scripts. combatbehaviour.meta seems to only have TLR_SearchForTarget for all peds, but we don't know if that's 1 or 2. - - - - - Hash collision!!! - SET_VEHICLE_I* - destroyType is 1 for opens on damage, 2 for breaks on damage. - - - - - time1- Time Ped is in ragdoll mode(ms) - time2- Unknown time, in milliseconds - ragdollType- - 0 : Normal ragdoll - 1 : Falls with stiff legs/body - 2 : Narrow leg stumble(may not fall) - 3 : Wide leg stumble(may not fall) - p4, p5, p6- No idea. In R*'s scripts they are usually either "true, true, false" or "false, false, false". - EDIT 3/11/16: unclear what 'mircoseconds' mean-- a microsecond is 1000x a ms, so time2 must be 1000x time1? more testing needed. -sob - Edit Mar 21, 2017: removed part about time2 being the microseconds version of time1. this just isn't correct. time2 is in milliseconds, and time1 and time2 don't seem to be connected in any way. - - - - - Return variable is never used in R*'s scripts. - Not sure what p2 does. It seems like it would be a time judging by it's usage in R*'s scripts, but didn't seem to affect anything in my testings. - x, y, and z are coordinates, most likely to where the ped will fall. - p7 is probably the force of the fall, but untested, so I left the variable name the same. - p8 to p13 are always 0f in R*'s scripts. - (Simplified) Example of the usage of the function from R*'s scripts: - ped::set_ped_to_ragdoll_with_fall(ped, 1500, 2000, 1, -entity::get_entity_forward_vector(ped), 1f, 0f, 0f, 0f, 0f, 0f, 0f); - - - - - p2 is usually -1 in the scripts. action is either 0 or "DEFAULT_ACTION". - - - - - This native refers to the field of vision the ped has above them, starting at 0 degrees. 90f would let the ped see enemies directly above of them. - - - - - This native refers to the field of vision the ped has below them, starting at 0 degrees. The angle value should be negative. - - - - - tintIndex can be the following: - 1 - 2 - 3 - 4 - 5 - 6 - 7 - - - - - combined with PED::SET_PED_WETNESS_HEIGHT(), this native makes the ped drenched in water up to the height specified in the other function - - - - - It adds the wetness level to the player clothing/outfit. As if player just got out from water surface. - - - - - if the bool "Toggle" is "true" so the phone is lean. - if the bool "Toggle" is "false" so the phone is not lean. - - - - - duration specifies the time until the next respawn, in ms. (known values: 600000). - Usage Example: - Pickup pickup = OBJECT::CREATE_PICKUP_ROTATE(...); - OBJECT::SET_PICKUP_REGENERATION_TIME(pickup, 600000); // 10mins - - - - - This native sets the turbulence multiplier. It only works for planes. - 0.0 = no turbulence at all. - 1.0 = heavy turbulence. - Works by just calling it once, does not need to be called every tick. - - The plane to set the multiplier for - The turbulence multiplier. Value between 0.0 and 1.0 - - - - This native sets the turbulence multiplier. It only works for planes. - 0.0 = no turbulence at all. - 1.0 = heavy turbulence. - Works by just calling it once, does not need to be called every tick. - - The plane to set the multiplier for - The turbulence multiplier. Value between 0.0 and 1.0 - - - - Hash collision! Disables speech. - - - - - Sets the position of the arrow icon representing the player on both the minimap and world map. - Too bad this wouldn't work over the network (obviously not). Could spoof where we would be. - - - - - Sets whether this player can be hassled by gangs. - - - - - Set whether this player should be able to do drive-bys. - "A drive-by is when a ped is aiming/shooting from vehicle. This includes middle finger taunts. By setting this value to false I confirm the player is unable to do all that. Tested on tick." - - - - - Sets whether this player can take cover. - - - - - Displays cash change notifications on HUD. - - - - - Displays cash change notifications on HUD. - - - - - 6 matches across 4 scripts. 5 occurrences were 240. The other was 255. - - - - - Every occurrence was either 0 or 2. - - - - - Every occurrence of p1 I found was true.1.0.335.2, 1.0.350.1/2, 1.0.372.2, 1.0.393.2, 1.0.393.4, 1.0.463.1; - - - - - Flags used in the scripts: 0,4,16,24,32,56,60,64,128,134,256,260,384,512,640,768,896,900,952,1024,1280,2048,2560 - Note to people who needs this with camera mods, etc.: - Flags(0, 4, 16, 24, 32, 56, 60, 64, 128, 134, 512, 640, 1024, 2048, 2560) - - Disables camera rotation as well. - Flags(256, 260, 384, 768, 896, 900, 952, 1280) - [ translation: cameraRotation = flags & (1 << 8) - sfink] - - - - - Hash collision - - - - - Simply sets you as invincible (Health will not deplete). - Use 0x733A643B5B0C53C1 instead if you want Ragdoll enabled, which is equal to: - *(DWORD *)(playerPedAddress + 0x188) |= (1 << 9); - - - - - Example from fm_mission_controler.ysc.c4: - PLAYER::SET_PLAYER_LOCKON(PLAYER::PLAYER_ID(), 1); - All other decompiled scripts using this seem to be using the player id as the first parameter, so I feel the need to confirm it as so. - No need to confirm it says PLAYER_ID() so it uses PLAYER_ID() lol. - - - - - Affects the range of auto aim target. - - - - - Default is 100. Use player id and not ped id. For instance: PLAYER::SET_PLAYER_MAX_ARMOUR(PLAYER::PLAYER_ID(), 100); // main_persistent.ct4 - - - - - Set the model for a specific Player. Be aware that this will destroy the current Ped for the Player and create a new one, any - reference to the old ped should be reset (by using the GetPlayerPed native). - ``` - Make sure to request the model first and wait until it has loaded. - ``` - - - - - example: - PLAYER::SET_PLAYER_PARACHUTE_MODEL_OVERRIDE(PLAYER::PLAYER_ID(), 0x73268708); - - - - - tints 0 - 1 - 2 - 3 - 4 - - - - - Tints: - None = -1, - Rainbow = 0, - Red = 1, - SeasideStripes = 2, - WidowMaker = 3, - Patriot = 4, - Blue = 5, - Black = 6, - Hornet = 7, - AirFocce = 8, - Desert = 9, - Shadow = 10, - HighAltitude = 11, - Airbone = 12, - Sunrise = 13, - - - - - p1 was always 5. - p4 was always false. - - - - - Tints: - None = -1, - Rainbow = 0, - Red = 1, - SeasideStripes = 2, - WidowMaker = 3, - Patriot = 4, - Blue = 5, - Black = 6, - Hornet = 7, - AirFocce = 8, - Desert = 9, - Shadow = 10, - HighAltitude = 11, - Airbone = 12, - Sunrise = 13, - - - - - example: - flags: 0-6 - PLAYER::SET_PLAYER_RESET_FLAG_PREFER_REAR_SEATS(PLAYER::PLAYER_ID(), 6); - wouldnt the flag be the seatIndex? - - - - - Values around 1.0f to 2.0f used in game scripts. - - - - - 77 - - - - - the status of default voip system. It affects on `NETWORK_IS_PLAYER_TALKING` and `mp_facial` animation. - This function doesn't need to be called every frame, it works like a switcher. - - The target player. - Overriding state. - - - - Sets your targeting mode. - 0 = Traditional GTA - 1 = Assisted Aiming - 2 = Free Aim - Even tho gtaforums nor Alexander B supports this, if you're online in freemode already it's nice to have this since retail or otherwise you have to go to SP to change it. - - - - - Set player team on deathmatch and last team standing.. - - - - - # Predominant call signatures - PLAYER::SET_PLAYER_WANTED_CENTRE_POSITION(PLAYER::PLAYER_ID(), ENTITY::GET_ENTITY_COORDS(PLAYER::PLAYER_PED_ID(), 1)); - # Parameter value ranges - P0: PLAYER::PLAYER_ID() - P1: ENTITY::GET_ENTITY_COORDS(PLAYER::PLAYER_PED_ID(), 1) - P2: Not set by any call - - - - - Call SET_PLAYER_WANTED_LEVEL_NOW for immediate effect - wantedLevel is an integer value representing 0 to 5 stars even though the game supports the 6th wanted level but no police will appear since no definitions are present for it in the game files - disableNoMission- Disables When Off Mission- appears to always be false - - - - - p2 is always false in R* scripts - - - - - Forces any pending wanted level to be applied to the specified player immediately. - Call SET_PLAYER_WANTED_LEVEL with the desired wanted level, followed by SET_PLAYER_WANTED_LEVEL_NOW. - Second parameter is unknown (always false). - - - - - This modifies the damage value of your weapon. Whether it is a multiplier or base damage is unknown. - Based on tests, it is unlikely to be a multiplier. - - - - - The player will be ignored by the police if toggle is set to true - - - - - If toggle is set to false: - The police won't be shown on the (mini)map - If toggle is set to true: - The police will be shown on the (mini)map - - - - - List of interior hashes: pastebin.com/1FUyXNqY - Not for every interior zoom > 0 available. - - - - - zoomLevel ranges from 0 to 200 - - - - - Disables the radio station from the radio wheel. - Note: You cannot disable LSUR, WCTR and Blaine County Radio. - List of known station names; - ``` - RADIO_01_CLASS_ROCK - RADIO_02_POP - RADIO_03_HIPHOP_NEW - RADIO_04_PUNK - RADIO_05_TALK_01 - RADIO_06_COUNTRY - RADIO_07_DANCE_01 - RADIO_08_MEXICAN - RADIO_09_HIPHOP_OLD - RADIO_12_REGGAE - RADIO_13_JAZZ - RADIO_14_DANCE_02 - RADIO_15_MOTOWN - RADIO_20_THELAB - RADIO_16_SILVERLAKE - RADIO_17_FUNK - RADIO_18_90S_ROCK - RADIO_21_DLC_XM17 - RADIO_22_DLC_BATTLE_MIX1_RADIO - RADIO_19_USER - HIDDEN_RADIO_AMBIENT_TV - HIDDEN_RADIO_AMBIENT_TV_BRIGHT - HIDDEN_RADIO_01_CLASS_ROCK - HIDDEN_RADIO_ADVERTS - HIDDEN_RADIO_02_POP - HIDDEN_RADIO_03_HIPHOP_NEW - HIDDEN_RADIO_04_PUNK - HIDDEN_RADIO_06_COUNTRY - HIDDEN_RADIO_07_DANCE_01 - HIDDEN_RADIO_09_HIPHOP_OLD - HIDDEN_RADIO_12_REGGAE - HIDDEN_RADIO_15_MOTOWN - HIDDEN_RADIO_16_SILVERLAKE - RADIO_22_DLC_BATTLE_MIX1_CLUB - HIDDEN_RADIO_STRIP_CLUB - DLC_BATTLE_MIX1_CLUB_PRIV - HIDDEN_RADIO_BIKER_CLASSIC_ROCK - DLC_BATTLE_MIX2_CLUB_PRIV - HIDDEN_RADIO_BIKER_MODERN_ROCK - RADIO_23_DLC_BATTLE_MIX2_CLUB - RADIO_25_DLC_BATTLE_MIX4_CLUB - DLC_BATTLE_MIX3_CLUB_PRIV - RADIO_26_DLC_BATTLE_CLUB_WARMUP - HIDDEN_RADIO_BIKER_PUNK - RADIO_24_DLC_BATTLE_MIX3_CLUB - DLC_BATTLE_MIX4_CLUB_PRIV - HIDDEN_RADIO_BIKER_HIP_HOP - ``` - - The name of the radio station - Toggle the station on/off - - - - Disables the radio station from the radio wheel. - Note: You cannot disable LSUR, WCTR and Blaine County Radio. - List of known station names; - ``` - RADIO_01_CLASS_ROCK - RADIO_02_POP - RADIO_03_HIPHOP_NEW - RADIO_04_PUNK - RADIO_05_TALK_01 - RADIO_06_COUNTRY - RADIO_07_DANCE_01 - RADIO_08_MEXICAN - RADIO_09_HIPHOP_OLD - RADIO_12_REGGAE - RADIO_13_JAZZ - RADIO_14_DANCE_02 - RADIO_15_MOTOWN - RADIO_20_THELAB - RADIO_16_SILVERLAKE - RADIO_17_FUNK - RADIO_18_90S_ROCK - RADIO_21_DLC_XM17 - RADIO_22_DLC_BATTLE_MIX1_RADIO - RADIO_19_USER - HIDDEN_RADIO_AMBIENT_TV - HIDDEN_RADIO_AMBIENT_TV_BRIGHT - HIDDEN_RADIO_01_CLASS_ROCK - HIDDEN_RADIO_ADVERTS - HIDDEN_RADIO_02_POP - HIDDEN_RADIO_03_HIPHOP_NEW - HIDDEN_RADIO_04_PUNK - HIDDEN_RADIO_06_COUNTRY - HIDDEN_RADIO_07_DANCE_01 - HIDDEN_RADIO_09_HIPHOP_OLD - HIDDEN_RADIO_12_REGGAE - HIDDEN_RADIO_15_MOTOWN - HIDDEN_RADIO_16_SILVERLAKE - RADIO_22_DLC_BATTLE_MIX1_CLUB - HIDDEN_RADIO_STRIP_CLUB - DLC_BATTLE_MIX1_CLUB_PRIV - HIDDEN_RADIO_BIKER_CLASSIC_ROCK - DLC_BATTLE_MIX2_CLUB_PRIV - HIDDEN_RADIO_BIKER_MODERN_ROCK - RADIO_23_DLC_BATTLE_MIX2_CLUB - RADIO_25_DLC_BATTLE_MIX4_CLUB - DLC_BATTLE_MIX3_CLUB_PRIV - RADIO_26_DLC_BATTLE_CLUB_WARMUP - HIDDEN_RADIO_BIKER_PUNK - RADIO_24_DLC_BATTLE_MIX3_CLUB - DLC_BATTLE_MIX4_CLUB_PRIV - HIDDEN_RADIO_BIKER_HIP_HOP - ``` - - The name of the radio station - Toggle the station on/off - - - - Sets radio station by index. - - - - - For a full list, see here: pastebin.com/Kj9t38KF - - - - - Only found this one in the decompiled scripts: - AUDIO::SET_RADIO_TRACK("RADIO_03_HIPHOP_NEW", "ARM1_RADIO_STARTS"); - - - - - Controls rain, rain sounds and the creation of puddles. - With an `intensity` higher than `0.5f`, only the creation of puddles gets faster, rain and rain sound won't increase after that. - With an `intensity` of `0.0f` rain and rain sounds are disabled and there won't be any new puddles. - To use the rain intensity of the current weather, call this native with `-1f` as `intensity`. - - Strength of rain effects - - - - If the parameter is true, sets the random event flag to true, if the parameter is false, the function does nothing at all. - Does nothing if the mission flag is set. - - - - - Sets the relationship between two groups. This should be called twice (once for each group). - Relationship types: - 0 = Companion - 1 = Respect - 2 = Like - 3 = Neutral - 4 = Dislike - 5 = Hate - 255 = Pedestrians - Example: - PED::SET_RELATIONSHIP_BETWEEN_GROUPS(2, l_1017, 0xA49E591C); - PED::SET_RELATIONSHIP_BETWEEN_GROUPS(2, 0xA49E591C, l_1017); - - - - - makes the train all jumbled up and derailed as it moves on the tracks (though that wont stop it from its normal operations) - - - - - Sets the player's rich presence detail state for social platform providers to a specified string. - - The rich presence string to set. - - - - missing a last parameter int p6 - - - - - bool p7 - always 1 - - - - - -- [[ Corrected conflicting parameter names ]] - - - - - -- [[ Corrected conflicting parameter names ]] - - - - - Multiplier goes up to 1.49 any value above will be completely overruled by the game and the multiplier will not take effect, this can be edited in memory however. - Just call it one time, it is not required to be called once every tick. - Note: At least the IDA method if you change the max float multiplier from 1.5 it will change it for both this and SWIM above. I say 1.5 as the function blrs if what you input is greater than or equal to 1.5 hence why it's 1.49 max default. - It is not possible to "decrease" speed. Anything below 1 will be ignored. - - - - - Sets a pixel in the specified runtime texture. This will have to be committed using `COMMIT_RUNTIME_TEXTURE` to have any effect. - - A handle to the runtime texture. - The X position of the pixel to change. - The Y position of the pixel to change. - The new R value (0-255). - The new G value (0-255). - The new B value (0-255). - The new A value (0-255). - - - - The bool is not a toggle!!! - - - - - Occurrences in the b617d scripts: pastebin.com/Tvg2PRHU - - - - - p0 and p1 are always the same - - - - - Sets a value indicating whether scenario peds should be returned by the next call to a command that returns peds. Eg. GET_CLOSEST_PED. - - - - - seems to enable/disable specific scenario-types from happening in the game world. - Here are some scenario types from the scripts: - "WORLD_MOUNTAIN_LION_REST" - "WORLD_MOUNTAIN_LION_WANDER" - "DRIVE" - "WORLD_VEHICLE_POLICE_BIKE" - "WORLD_VEHICLE_POLICE_CAR" - "WORLD_VEHICLE_POLICE_NEXT_TO_CAR" - "WORLD_VEHICLE_DRIVE_SOLO" - "WORLD_VEHICLE_BIKER" - "WORLD_VEHICLE_DRIVE_PASSENGERS" - "WORLD_VEHICLE_SALTON_DIRT_BIKE" - "WORLD_VEHICLE_BICYCLE_MOUNTAIN" - "PROP_HUMAN_SEAT_CHAIR" - "WORLD_VEHICLE_ATTRACTOR" - "WORLD_HUMAN_LEANING" - "WORLD_HUMAN_HANG_OUT_STREET" - "WORLD_HUMAN_DRINKING" - "WORLD_HUMAN_SMOKING" - "WORLD_HUMAN_GUARD_STAND" - "WORLD_HUMAN_CLIPBOARD" - "WORLD_HUMAN_HIKER" - "WORLD_VEHICLE_EMPTY" - "WORLD_VEHICLE_BIKE_OFF_ROAD_RACE" - "WORLD_HUMAN_PAPARAZZI" - "WORLD_VEHICLE_PARK_PERPENDICULAR_NOSE_IN" - "WORLD_VEHICLE_PARK_PARALLEL" - "WORLD_VEHICLE_CONSTRUCTION_SOLO" - "WORLD_VEHICLE_CONSTRUCTION_PASSENGERS" - "WORLD_VEHICLE_TRUCK_LOGS" - -alphazolam - scenarioType could be the same as scenarioName, used in for example AI::TASK_START_SCENARIO_AT_POSITION. - - - - - For a full list, see here: pastebin.com/yLNWicUi - - - - - This function anchors script draws to a side of the safe zone. This needs to be called to make the interface - independent of the player's safe zone configuration. - These values are equivalent to `alignX` and `alignY` in `common:/data/ui/frontend.xml`, which can be used as a baseline - for default alignment. - Valid values for `horizontalAlign`, from original documentation: - - **C (67)** - Center: DRAW_TEXT starts in the middle of the screen, while DRAW_RECT starts on the right; both move with - the right side of the screen. - - **L (76)** - Left: Anchors to the left side, DRAW_RECT starts on the left side of the screen, same as DRAW_TEXT when - centered. - - **R (82)** - Right: DRAW_TEXT starts on the left side (normal 0,0), while DRAW_RECT starts some short distance away - from the right side of the screen, both move with the right side of the screen. - Valid values for `verticalAlign`, from original documentation: - - **B (66)** - Bottom: DRAW_RECT starts about as far as the middle of the map from the bottom, while DRAW_TEXT is about - rather centered. - - **C (67)** - Center: It starts at a certain distance from the bottom, but the distance is fixed, the distance is - different from 66. - - **T (84)** - Top: Anchors to the top, DRAW_RECT starts on the top of the screen, DRAW_TEXT just below it. - Using any other value (including 0) will result in the safe zone not being taken into account for this draw. The - canonical value for this is 'I' (73). - For example, you can use `SET_SCRIPT_GFX_ALIGN(0, 84)` to only scale on the Y axis (to the top), but not change the X - axis. - To reset the value, use `RESET_SCRIPT_GFX_ALIGN`. - - The horizontal alignment. This can be 67 ('C'), 76 ('L'), or 82 ('R'). - The vertical alignment. This can be 67 ('C'), 66 ('B'), or 84 ('T'). - - - - This function anchors script draws to a side of the safe zone. This needs to be called to make the interface - independent of the player's safe zone configuration. - These values are equivalent to `alignX` and `alignY` in `common:/data/ui/frontend.xml`, which can be used as a baseline - for default alignment. - Valid values for `horizontalAlign`, from original documentation: - - **C (67)** - Center: DRAW_TEXT starts in the middle of the screen, while DRAW_RECT starts on the right; both move with - the right side of the screen. - - **L (76)** - Left: Anchors to the left side, DRAW_RECT starts on the left side of the screen, same as DRAW_TEXT when - centered. - - **R (82)** - Right: DRAW_TEXT starts on the left side (normal 0,0), while DRAW_RECT starts some short distance away - from the right side of the screen, both move with the right side of the screen. - Valid values for `verticalAlign`, from original documentation: - - **B (66)** - Bottom: DRAW_RECT starts about as far as the middle of the map from the bottom, while DRAW_TEXT is about - rather centered. - - **C (67)** - Center: It starts at a certain distance from the bottom, but the distance is fixed, the distance is - different from 66. - - **T (84)** - Top: Anchors to the top, DRAW_RECT starts on the top of the screen, DRAW_TEXT just below it. - Using any other value (including 0) will result in the safe zone not being taken into account for this draw. The - canonical value for this is 'I' (73). - For example, you can use `SET_SCRIPT_GFX_ALIGN(0, 84)` to only scale on the Y axis (to the top), but not change the X - axis. - To reset the value, use `RESET_SCRIPT_GFX_ALIGN`. - - The horizontal alignment. This can be 67 ('C'), 76 ('L'), or 82 ('R'). - The vertical alignment. This can be 67 ('C'), 66 ('B'), or 84 ('T'). - - - - This function anchors script draws to a side of the safe zone. This needs to be called to make the interface - independent of the player's safe zone configuration. - These values are equivalent to `alignX` and `alignY` in `common:/data/ui/frontend.xml`, which can be used as a baseline - for default alignment. - Valid values for `horizontalAlign`, from original documentation: - - **C (67)** - Center: DRAW_TEXT starts in the middle of the screen, while DRAW_RECT starts on the right; both move with - the right side of the screen. - - **L (76)** - Left: Anchors to the left side, DRAW_RECT starts on the left side of the screen, same as DRAW_TEXT when - centered. - - **R (82)** - Right: DRAW_TEXT starts on the left side (normal 0,0), while DRAW_RECT starts some short distance away - from the right side of the screen, both move with the right side of the screen. - Valid values for `verticalAlign`, from original documentation: - - **B (66)** - Bottom: DRAW_RECT starts about as far as the middle of the map from the bottom, while DRAW_TEXT is about - rather centered. - - **C (67)** - Center: It starts at a certain distance from the bottom, but the distance is fixed, the distance is - different from 66. - - **T (84)** - Top: Anchors to the top, DRAW_RECT starts on the top of the screen, DRAW_TEXT just below it. - Using any other value (including 0) will result in the safe zone not being taken into account for this draw. The - canonical value for this is 'I' (73). - For example, you can use `SET_SCRIPT_GFX_ALIGN(0, 84)` to only scale on the Y axis (to the top), but not change the X - axis. - To reset the value, use `RESET_SCRIPT_GFX_ALIGN`. - - The horizontal alignment. This can be 67 ('C'), 76 ('L'), or 82 ('R'). - The vertical alignment. This can be 67 ('C'), 66 ('B'), or 84 ('T'). - - - - Sets the draw offset/calculated size for `SET_SCRIPT_GFX_ALIGN`. If using any alignment other than left/top, the game - expects the width/height to be configured using this native in order to get a proper starting position for the draw - command. - - The X offset for the item to be drawn. - The Y offset for the item to be drawn. - The width of the item to be drawn. - The height of the item to be drawn. - - - - Sets the draw offset/calculated size for `SET_SCRIPT_GFX_ALIGN`. If using any alignment other than left/top, the game - expects the width/height to be configured using this native in order to get a proper starting position for the draw - command. - - The X offset for the item to be drawn. - The Y offset for the item to be drawn. - The width of the item to be drawn. - The height of the item to be drawn. - - - - Sets the draw offset/calculated size for `SET_SCRIPT_GFX_ALIGN`. If using any alignment other than left/top, the game - expects the width/height to be configured using this native in order to get a proper starting position for the draw - command. - - The X offset for the item to be drawn. - The Y offset for the item to be drawn. - The width of the item to be drawn. - The height of the item to be drawn. - - - - Sets a flag defining whether or not script draw commands should continue being drawn behind the pause - menu. This is usually used for TV channels and other draw commands that are used with a world render target. - - A boolean value. - - - - Sets a flag defining whether or not script draw commands should continue being drawn behind the pause - menu. This is usually used for TV channels and other draw commands that are used with a world render target. - - A boolean value. - - - - Sets the draw order for script draw commands. - Examples from decompiled scripts: - ```cpp - GRAPHICS::SET_SCRIPT_GFX_DRAW_ORDER(7); - GRAPHICS::DRAW_RECT(0.5, 0.5, 3.0, 3.0, v_4, v_5, v_6, a_0._f172, 0); - GRAPHICS::SET_SCRIPT_GFX_DRAW_ORDER(1); - GRAPHICS::DRAW_RECT(0.5, 0.5, 1.5, 1.5, 0, 0, 0, 255, 0); - ``` - - The intended draw order/layer. - - - - Sets the draw order for script draw commands. - Examples from decompiled scripts: - ```cpp - GRAPHICS::SET_SCRIPT_GFX_DRAW_ORDER(7); - GRAPHICS::DRAW_RECT(0.5, 0.5, 3.0, 3.0, v_4, v_5, v_6, a_0._f172, 0); - GRAPHICS::SET_SCRIPT_GFX_DRAW_ORDER(1); - GRAPHICS::DRAW_RECT(0.5, 0.5, 1.5, 1.5, 0, 0, 0, 255, 0); - ``` - - The intended draw order/layer. - - - - Sets the draw order for script draw commands. - Examples from decompiled scripts: - ```cpp - GRAPHICS::SET_SCRIPT_GFX_DRAW_ORDER(7); - GRAPHICS::DRAW_RECT(0.5, 0.5, 3.0, 3.0, v_4, v_5, v_6, a_0._f172, 0); - GRAPHICS::SET_SCRIPT_GFX_DRAW_ORDER(1); - GRAPHICS::DRAW_RECT(0.5, 0.5, 1.5, 1.5, 0, 0, 0, 255, 0); - ``` - - The intended draw order/layer. - - - - Sets the draw order for script draw commands. - Examples from decompiled scripts: - ```cpp - GRAPHICS::SET_SCRIPT_GFX_DRAW_ORDER(7); - GRAPHICS::DRAW_RECT(0.5, 0.5, 3.0, 3.0, v_4, v_5, v_6, a_0._f172, 0); - GRAPHICS::SET_SCRIPT_GFX_DRAW_ORDER(1); - GRAPHICS::DRAW_RECT(0.5, 0.5, 1.5, 1.5, 0, 0, 0, 255, 0); - ``` - - The intended draw order/layer. - - - - Only called once in the decompiled scripts. Presumably activates the specified generator. - - - - - Toggles Heatvision on/off. - - - - - Judging from the effect, this is some sort of vehicle density multiplier. - - - - - Judging from the effect, this is some sort of vehicle density multiplier. - - - - - SET_*_MULTIPLIER_THIS_FRAME - - - - - SET_*_MULTIPLIER_THIS_FRAME - - - - - Hardcoded to not work in multiplayer. - Used to lock/unlock doors to interior areas of the game. - (Possible) Door Types: - pastebin.com/9S2m3qA4 - Heading is either 1, 0 or -1 in the scripts. Means default closed(0) or opened either into(1) or out(-1) of the interior. - Locked means that the heading is locked. - p6 is always 0. - 225 door types, model names and coords found in stripclub.c4: - pastebin.com/gywnbzsH - get door info: pastebin.com/i14rbekD - - - - - Example: - AUDIO::SET_STATIC_EMITTER_ENABLED((Any*)"LOS_SANTOS_VANILLA_UNICORN_01_STAGE", false); AUDIO::SET_STATIC_EMITTER_ENABLED((Any*)"LOS_SANTOS_VANILLA_UNICORN_02_MAIN_ROOM", false); AUDIO::SET_STATIC_EMITTER_ENABLED((Any*)"LOS_SANTOS_VANILLA_UNICORN_03_BACK_ROOM", false); - This turns off surrounding sounds not connected directly to peds. - - - - - Access to the store for shark cards etc... - - - - - Swim speed multiplier. - Multiplier goes up to 1.49 - Just call it one time, it is not required to be called once every tick. - Note copied from below native. - Note: At least the IDA method if you change the max float multiplier from 1.5 it will change it for both this and RUN_SPRINT below. I say 1.5 as the function blrs if what you input is greater than or equal to 1.5 hence why it's 1.49 max default. - - - - - Sets the position of the audio event to the entity's position for one frame(?) - if (l_8C3 == 0) { - sub_27fd1(0, -1, 1); - if (PED::IS_SYNCHRONIZED_SCENE_RUNNING(l_87D)) { - AUDIO::STOP_SYNCHRONIZED_AUDIO_EVENT(l_87D); - } - if (sub_7dd(l_A00)) { - AUDIO::_950A154B8DAB6185("PAP2_IG1_POPPYSEX", l_A00); - } - sub_91c("TK************ SETTING SYNCH SCENE AUDIO POSITION THIS FRAME ************TK"); - l_8C3 = 1; - } - -- - Found in the b617d scripts, duplicates removed: - AUDIO::_950A154B8DAB6185("CAR_5_IG_6", l_7FE[1 -- [[1]] ]); - AUDIO::_950A154B8DAB6185("EX03_TRAIN_BIKE_LAND", PLAYER::PLAYER_PED_ID()); - AUDIO::_950A154B8DAB6185("FBI_2_MCS_1_LeadIn", l_40[2 -- [[1]] ]); - AUDIO::_950A154B8DAB6185("FIN_C2_MCS_1", l_24C[0 -- [[1]] ]); - AUDIO::_950A154B8DAB6185("MNT_DNC", l_5F); - AUDIO::_950A154B8DAB6185("PAP2_IG1_POPPYSEX", l_A00); - - - - - Sets the position of the audio event to the entity's position for one frame(?) - if (l_8C3 == 0) { - sub_27fd1(0, -1, 1); - if (PED::IS_SYNCHRONIZED_SCENE_RUNNING(l_87D)) { - AUDIO::STOP_SYNCHRONIZED_AUDIO_EVENT(l_87D); - } - if (sub_7dd(l_A00)) { - AUDIO::_950A154B8DAB6185("PAP2_IG1_POPPYSEX", l_A00); - } - sub_91c("TK************ SETTING SYNCH SCENE AUDIO POSITION THIS FRAME ************TK"); - l_8C3 = 1; - } - -- - Found in the b617d scripts, duplicates removed: - AUDIO::_950A154B8DAB6185("CAR_5_IG_6", l_7FE[1 -- [[1]] ]); - AUDIO::_950A154B8DAB6185("EX03_TRAIN_BIKE_LAND", PLAYER::PLAYER_PED_ID()); - AUDIO::_950A154B8DAB6185("FBI_2_MCS_1_LeadIn", l_40[2 -- [[1]] ]); - AUDIO::_950A154B8DAB6185("FIN_C2_MCS_1", l_24C[0 -- [[1]] ]); - AUDIO::_950A154B8DAB6185("MNT_DNC", l_5F); - AUDIO::_950A154B8DAB6185("PAP2_IG1_POPPYSEX", l_A00); - - - - - Examples: - AI::_B0A6CFD2C69C1088(PLAYER::PLAYER_PED_ID(), "isFirstPerson", 0); - AI::_B0A6CFD2C69C1088(PLAYER::PLAYER_PED_ID(), "isFirstPerson", 1); - AI::_B0A6CFD2C69C1088(PLAYER::PLAYER_PED_ID(), "isBlocked", sub_179027()); - - The ped that's performing the task. - The property name. - The property value to set. - - - - Examples: - AI::_B0A6CFD2C69C1088(PLAYER::PLAYER_PED_ID(), "isFirstPerson", 0); - AI::_B0A6CFD2C69C1088(PLAYER::PLAYER_PED_ID(), "isFirstPerson", 1); - AI::_B0A6CFD2C69C1088(PLAYER::PLAYER_PED_ID(), "isBlocked", sub_179027()); - - The ped that's performing the task. - The property name. - The property value to set. - - - - p0 - PLAYER::PLAYER_PED_ID(); - p1 - "Phase", "Wobble", "x_axis","y_axis","introphase","speed". - p2 - From what i can see it goes up to 1f (maybe). - -LcGamingHD - Example: AI::_D5BB4025AE449A4E(PLAYER::PLAYER_PED_ID(), "Phase", 0.5); - - The ped on which the task is playing. - The property name. - The property value to set. - - - - p0 - PLAYER::PLAYER_PED_ID(); - p1 - "Phase", "Wobble", "x_axis","y_axis","introphase","speed". - p2 - From what i can see it goes up to 1f (maybe). - -LcGamingHD - Example: AI::_D5BB4025AE449A4E(PLAYER::PLAYER_PED_ID(), "Phase", 0.5); - - The ped on which the task is playing. - The property name. - The property value to set. - - - - This is not tested - it's just an assumption. - Doesn't seem to work. I'll try with an int instead. --JT - Read the scripts, im dumpass. - Doesn't work at all, wether with an bool neither an int - if (!VEHICLE::IS_TAXI_LIGHT_ON(l_115)) { - VEHICLE::SET_TAXI_LIGHTS(l_115, 1); - } - - - - - Sets an unknown boolean value in the text chat. - - - - - Sets the drop shadow for the current text style. - - Shadow distance in pixels, both horizontal and vertical. - Red color. - Green color. - Blue color. - Alpha. - - - - **This native does absolutely nothing, just a nullsub** - - - - - fonts that mess up your text where made for number values/misc stuff - - - - - Types - - 0: Center-Justify - 1: Left-Justify - 2: Right-Justify - Right-Justify requires SET_TEXT_WRAP, otherwise it will draw to the far right of the screen - - - - - Types - - 0: Center-Justify - 1: Left-Justify - 2: Right-Justify - Right-Justify requires SET_TEXT_WRAP, otherwise it will draw to the far right of the screen - - - - - from script am_mp_yacht.c int? - ui::set_text_leading(2); - - - - - **This native does absolutely nothing, just a nullsub** - - - - - Size range : 0f to 1.0f - - - - - It sets the text in a specified box and wraps the text if it exceeds the boundries. Both values are for X axis. Useful when positioning text set to center or aligned to the right. - start - left boundry on screen position (0.0 - 1.0) - end - right boundry on screen position (0.0 - 1.0) - - - - - Sets the near clipping plane of the third person aim camera. - - - - - Sets the near clipping plane of the third person aim camera. - - - - - Hash collision. Please change back to _0x_ - - - - - hash collision? - - - - - hash collision? - - - - - Maximum value is 1. - At a value of 0 the game will still run at a minimum time scale. - Slow Motion 1: 0.6 - Slow Motion 2: 0.4 - Slow Motion 3: 0.2 - - - - - Loads the specified timecycle modifier. Modifiers are defined separately in another file (e.g. "timecycle_mods_1.xml") - Parameters: - modifierName - The modifier to load (e.g. "V_FIB_IT3", "scanline_cam", etc.) - For a full list, see here: pastebin.com/kVPwMemE - - - - - Sets how much the crane on the tow truck is raised, where 0.0 is fully lowered and 1.0 is fully raised. - - - - - Sets how much the crane on the tow truck is raised, where 0.0 is fully lowered and 1.0 is fully raised. - - - - - For a full list, see here: pastebin.com/kVPwMemE - - - - - Might be more appropriate in AUDIO? - Rockstar made it like this. - Probably changes tvs from being a 3d audio to being "global" audio - - - - - Sets an unknown flag used by CScene in determining which entities from CMapData scene nodes to draw, similar to 9BAE5AD2508DF078. - Documented by NTAuthority (http://fivem.net/). - - - - - Hash collision! Please change back to _0xEF4CED81CEBEDC6D - - - - - From the scripts, p0: - "ArmWrestlingIntensity", - "INOUT", - "Monkey_Stream", - "ZoomLevel" - - - - - For a full list, see here: pastebin.com/Kj9t38KF - - - - - Makes the vehicle accept no passengers. - - - - - This is an alias of SET_ENTITY_AS_NO_LONGER_NEEDED. - - - - - Disables the vehicle from being repaired when a vehicle extra is enabled. - - The vehicle to set disable auto vehicle repair. - Setting the value to true prevents the vehicle from being repaired when a extra is enabled. Setting the value to false allows the vehicle from being repaired when a extra is enabled. - - - - Please change to void. - - - - - p2 often set to 1000.0 in the decompiled scripts. - - - - - SET_VEHICLE_BOOST_ACTIVE(vehicle, 1, 0); - SET_VEHICLE_BOOST_ACTIVE(vehicle, 0, 0); - Will give a boost-soundeffect. - - - - - On accelerating, spins the driven wheels with the others braked, so you don't go anywhere. - - - - - This has not yet been tested - it's just an assumption of what the types could be. - - - - - Previously named GET_VEHICLE_DEFORMATION_GET_TREE (hash collision) - from Decrypted Scripts I found - VEHICLE::SET_VEHICLE_CEILING_HEIGHT(l_BD9[2 -- [[2]] ], 420.0); - - - - - Previously named GET_VEHICLE_DEFORMATION_GET_TREE (hash collision) - from Decrypted Scripts I found - VEHICLE::SET_VEHICLE_CEILING_HEIGHT(l_BD9[2 -- [[2]] ], 420.0); - - - - - Sets the selected vehicle's colors to their default value (specific variant specified using the colorCombination parameter). - Range of possible values for colorCombination is currently unknown, I couldn't find where these values are stored either (Disquse's guess was vehicles.meta but I haven't seen it in there.) - - The vehicle to modify. - One of the default color values of the vehicle. - - - - colorPrimary & colorSecondary are the paint index for the vehicle. - For a list of valid paint indexes, view: pastebin.com/pwHci0xK - ------------------------------------------------------------------------- - Use this to get the number of color indices: pastebin.com/RQEeqTSM - Note: minimum color index is 0, maximum color index is (numColorIndices - 1) - - - - - p1, p2, p3 are RGB values for color (255,0,0 for Red, ect) - - - - - p1, p2, p3 are RGB values for color (255,0,0 for Red, ect) - - - - - Apply damage to vehicle at a location. Location is relative to vehicle model (not world). - Radius of effect damage applied in a sphere at impact location - - - - - This fixes the deformation of a vehicle but the vehicle health doesn't improve - - - - - • Usage - → Use this native inside a looped function. - → Values: - → 0.0 = no vehicles on streets - → 1.0 = normal vehicles on streets - - - - - You can't use values greater than 15.0 - You can see why here: pastebin.com/Wbn34fGD - Also, R* does (float)(rand() % 15) to get a random dirt level when generating a vehicle. - - - - - doorIndex: - 0 = Front Right Door - 1 = Front Left Door - 2 = Back Right Door - 3 = Back Left Door - 4 = Hood - 5 = Trunk - Changed last paramater from CreateDoorObject To NoDoorOnTheFloor because when on false, the door object is created,and not created when on true...the former parameter name was counter intuitive...(by Calderon) - - - - - Keeps Vehicle Doors/Hood/Trunk from breaking off - - - - - Keeps Vehicle Doors/Hood/Trunk from breaking off - - - - - doorIndex: - 0 = Front Left Door (driver door) - 1 = Front Right Door - 2 = Back Left Door - 3 = Back Right Door - 4 = Hood - 5 = Trunk - 6 = Trunk2 - p2: - mostly use 0 and 1, very rare using 3 and 5 - p3: - It seems it is an angle - Example in VB: - Public Shared Sub Set_Vehicle_Door_Angle(Vehicle As Vehicle, Door As VehicleDoor, Angle As Single) - Native.Function.Call(Hash.SET_VEHICLE_DOOR_CONTROL, Vehicle.Handle, Door, 1, Angle) - End Sub - I'm Not MentaL - sfink: p2 is speed, 5 is fast, 1 is slow 3 is medium - - - - - When lock is false other entities can overwrite it. - - - - - doorIndex: - 0 = Front Left Door - 1 = Front Right Door - 2 = Back Left Door - 3 = Back Right Door - 4 = Hood - 5 = Trunk - 6 = Back - 7 = Back2 - - - - - doorIndex: - 0 = Front Left Door - 1 = Front Right Door - 2 = Back Left Door - 3 = Back Right Door - 4 = Hood - 5 = Trunk - 6 = Trunk2 - - - - - 1 - 2 - CARLOCK_LOCKED (locked) - 3 - 4 - CARLOCK_LOCKED_PLAYER_INSIDE (can get in, can't leave) - (maybe, these are leftovers from GTA:VC) - 5 - 6 - 7 - (source: GTA VC miss2 leak, matching constants for 0/2/4, testing) - They use 10 in am_mp_property_int, don't know what it does atm. - - - - - After some analysis, I've decided that these are what the parameters are. - We can see this being used in R* scripts such as "am_mp_property_int.ysc.c4": - l_11A1 = PED::GET_VEHICLE_PED_IS_IN(PLAYER::PLAYER_PED_ID(), 1); - ... - VEHICLE::SET_VEHICLE_DOORS_LOCKED_FOR_ALL_PLAYERS(l_11A1, 1); - - - - - Closes all doors of a vehicle: - - - - - Money pickups are created around cars when they explodes. Only works when the vehicle model is a car. A single pickup is between 1 and 18 dollars in size. All car models seems to give the same amount of money. - youtu.be/3arlUxzHl5Y - i.imgur.com/WrNpYFs.jpg - From the scripts: - VEHICLE::_068F64F2470F9656(l_36, 0); - Found a "correct" name for this :P - _dead_vehicle_pickups_dies_when_set_exploded_destroy_it_drops_on_money - SET_VEHICLE_D* or SET_VEHICLE_E* - - - - - Money pickups are created around cars when they explodes. Only works when the vehicle model is a car. A single pickup is between 1 and 18 dollars in size. All car models seems to give the same amount of money. - youtu.be/3arlUxzHl5Y - i.imgur.com/WrNpYFs.jpg - From the scripts: - VEHICLE::_068F64F2470F9656(l_36, 0); - Found a "correct" name for this :P - _dead_vehicle_pickups_dies_when_set_exploded_destroy_it_drops_on_money - SET_VEHICLE_D* or SET_VEHICLE_E* - - - - - Money pickups are created around cars when they explodes. Only works when the vehicle model is a car. A single pickup is between 1 and 18 dollars in size. All car models seems to give the same amount of money. - youtu.be/3arlUxzHl5Y - i.imgur.com/WrNpYFs.jpg - From the scripts: - VEHICLE::_068F64F2470F9656(l_36, 0); - Found a "correct" name for this :P - _dead_vehicle_pickups_dies_when_set_exploded_destroy_it_drops_on_money - SET_VEHICLE_D* or SET_VEHICLE_E* - - - - - 1000 is max health - Begins leaking gas at around 650 health - -999.90002441406 appears to be minimum health, although nothing special occurs <- false statement - ------------------------- - Minimum: -4000 - Maximum: 1000 - -4000: Engine is destroyed - 0 and below: Engine catches fire and health rapidly declines - 300: Engine is smoking and losing functionality - 1000: Engine is perfect - - - - - Starts or stops the engine on the specified vehicle. - vehicle: The vehicle to start or stop the engine on. - value: true to turn the vehicle on; false to turn it off. - instantly: if true, the vehicle will be set to the state immediately; otherwise, the current driver will physically turn on or off the engine. - -------------------------------------- - from what I've tested when I do this to a helicopter the propellers turn off after the engine has started. so is there any way to keep the heli propellers on? - -------------------------------------- - And what's with BOOL otherwise, what does it do??? - - - - - Vehicle power multiplier. - Does not have to be looped each frame. Can be set once. - Values lower than 1f don't work. - Note: If the value is set with GET_RANDOM_FLOAT_IN_RANGE, the vehicle will have an absurdly high ammount of power, and will become almost undrivable for the player or NPCs. The range doesn't seem to matter. - An high value like 10000000000f will visually remove the wheels that apply the power (front wheels for FWD, rear wheels for RWD), but the power multiplier will still apply, and the wheels still work. - ------ - value is a percentage bump which affects directly the parameter known as fInitialDriveForce in handling.meta. For example: - VEHICLE::_SET_VEHICLE_ENGINE_POWER_MULTIPLIER(myVehicle, 30.0) - will have this effect: DriveForce *= 1.3 - - - - - <1.0 - Decreased torque - =1.0 - Default torque - >1.0 - Increased torque - Negative values will cause the vehicle to go backwards instead of forwards while accelerating. - value - is between 0.2 and 1.8 in the decompiled scripts. - This needs to be called every frame to take effect. - - - - - formerly known as _SET_VEHICLE_PAINT_FADE - The parameter fade is a value from 0-1, where 0 is fresh paint. - ------------------------------------------------------------------------------------ - The actual value isn't stored as a float but as an unsigned char (BYTE). More info here: pastebin.com/r0h6EM5s - -------------- - Separate Person: I didn't want to be rude and remove it, but whom ever posted that pastebin above please remove it as the paste says it has been removed. - - - - - formerly known as _SET_VEHICLE_PAINT_FADE - The parameter fade is a value from 0-1, where 0 is fresh paint. - ------------------------------------------------------------------------------------ - The actual value isn't stored as a float but as an unsigned char (BYTE). More info here: pastebin.com/r0h6EM5s - -------------- - Separate Person: I didn't want to be rude and remove it, but whom ever posted that pastebin above please remove it as the paste says it has been removed. - - - - - Seems according to TU27 X360 Scripts, this has 3 arguments as well. - SET_VEHICLE_EXCLUSIVE_DRIVER(vehicle, 0, 0); in freemode.c - In case 5 of a switch case, is the only time it shows Arg2 being PLAYER_PED_ID(), otherwise it's 0. Arg3 always seems to be 0. - - - - - Seems according to TU27 X360 Scripts, this has 3 arguments as well. - SET_VEHICLE_EXCLUSIVE_DRIVER(vehicle, 0, 0); in freemode.c - In case 5 of a switch case, is the only time it shows Arg2 being PLAYER_PED_ID(), otherwise it's 0. Arg3 always seems to be 0. - - - - - Sets a vehicle to be strongly resistant to explosions. p0 is the vehicle; set p1 to false to toggle the effect on/off. - - - - - Note: only some vehicle have extras - extra ids are from 1 - 9 depending on the vehicle - ------------------------------------------------- - ^ not sure if outdated or simply wrong. Max extra ID for b944 is 14 - ------------------------------------------------- - p2 is not a on/off toggle. mostly 0 means on and 1 means off. - not sure if it really should be a BOOL. - ------------------------------------------------- - Confirmed p2 does not work as a bool. Changed to int. [0=on, 1=off] - - - - - They use the same color indexs as SET_VEHICLE_COLOURS. - - - - - SCALE: Setting the speed to 30 would result in a speed of roughly 60mph, according to speedometer. - Speed is in meters per second - You can convert meters/s to mph here: - http://www.calculateme.com/Speed/MetersperSecond/ToMilesperHour.htm - - - - - Seems to be related to the metal parts, not tyres (like i was expecting lol) - Must be called every tick. - - - - - It switch to highbeam when p1 is set to true. - - - - - This native makes the vehicle stop immediately, as happens when we enter a MP garage. - . distance defines how far it will travel until stopping. Garage doors use 3.0. - . If killEngine is set to 1, you cannot resume driving the vehicle once it stops. This looks like is a bitmapped integer. - - - - - This native makes the vehicle stop immediately, as happens when we enter a MP garage. - . distance defines how far it will travel until stopping. Garage doors use 3.0. - . If killEngine is set to 1, you cannot resume driving the vehicle once it stops. This looks like is a bitmapped integer. - - - - - Sets a handling override for a specific vehicle. Certain handling flags can only be set globally using `SET_HANDLING_FIELD`, this might require some experimentation. - Example: `SetVehicleHandlingField(vehicle, 'CHandlingData', 'fSteeringLock', 360.0)` - - The vehicle to set data for. - The handling class to set. Only "CHandlingData" is supported at this time. - The field name to set. These match the keys in `handling.meta`. - The value to set. - - - - Sets a handling override for a specific vehicle. Certain handling flags can only be set globally using `SET_HANDLING_FLOAT`, this might require some experimentation. - Example: `SetVehicleHandlingFloat(vehicle, 'CHandlingData', 'fSteeringLock', 360.0)` - - The vehicle to set data for. - The handling class to set. Only "CHandlingData" is supported at this time. - The field name to set. These match the keys in `handling.meta`. - The floating-point value to set. - - - - Sets a handling override for a specific vehicle. Certain handling flags can only be set globally using `SET_HANDLING_INT`, this might require some experimentation. - - The vehicle to set data for. - The handling class to set. Only "CHandlingData" is supported at this time. - The field name to set. These match the keys in `handling.meta`. - The integer value to set. - - - - Sets a handling override for a specific vehicle. Certain handling flags can only be set globally using `SET_HANDLING_VECTOR`, this might require some experimentation. - - The vehicle to set data for. - The handling class to set. Only "CHandlingData" is supported at this time. - The field name to set. These match the keys in `handling.meta`. - The Vector3 value to set. - - - - if true, axles won't bend. - - - - - color is the paint index for the vehicle. - Paint index goes from 0 to 12. - Be aware that it only works on xenon lights. - You can find the list of colors and ids here: [\_GET_VEHICLE_HEADLIGHTS_COLOUR](#_0x3DFF319A831E0CDB) - - The vehicle handle. - The paint index. - - - - color is the paint index for the vehicle. - Paint index goes from 0 to 12. - Be aware that it only works on xenon lights. - You can find the list of colors and ids here: [\_GET_VEHICLE_HEADLIGHTS_COLOUR](#_0x3DFF319A831E0CDB) - - The vehicle handle. - The paint index. - - - - console hash: 0x71CDD52F - - - - - console hash: 0x71CDD52F - - - - - Sets the turn signal enabled for a vehicle. - Set turnSignal to 1 for left light, 0 for right light. - - - - - Setting this to false, makes the specified vehicle to where if you press Y your character doesn't even attempt the animation to enter the vehicle. Hence it's not considered aka ignored. - - - - - Sets the wanted state of this vehicle. - - - - - VEHICLE::SET_VEHICLE_ENGINE_ON is not enough to start jet engines when not inside the vehicle. But with this native set to true it works: youtu.be/OK0ps2fDpxs - i.imgur.com/7XA14pX.png - Certain planes got jet engines. - void VEHICLE::_SET_VEHICLE_JET_ENGINE_ON(scrNativeCallContext *args) - { - bool bOn; // bl@1 - CVehicle *pVehicle; // rax@1 - scrNativeCallContextArgStruct *pArgs; // rax@1 - pArgs = args->pArgs; - bOn = pArgs->a2.INT32 != 0; - pVehicle = getEntityAddressIfVehicle(pArgs->a1.INT32); - if ( pVehicle ) - { - pVehicle->bitmapBulletProofTires &= 0xFBu; - pVehicle->bitmapBulletProofTires |= 4 * bOn; - } - } // sfink - - - - - VEHICLE::SET_VEHICLE_ENGINE_ON is not enough to start jet engines when not inside the vehicle. But with this native set to true it works: youtu.be/OK0ps2fDpxs - i.imgur.com/7XA14pX.png - Certain planes got jet engines. - void VEHICLE::_SET_VEHICLE_JET_ENGINE_ON(scrNativeCallContext *args) - { - bool bOn; // bl@1 - CVehicle *pVehicle; // rax@1 - scrNativeCallContextArgStruct *pArgs; // rax@1 - pArgs = args->pArgs; - bOn = pArgs->a2.INT32 != 0; - pVehicle = getEntityAddressIfVehicle(pArgs->a1.INT32); - if ( pVehicle ) - { - pVehicle->bitmapBulletProofTires &= 0xFBu; - pVehicle->bitmapBulletProofTires |= 4 * bOn; - } - } // sfink - - - - - multiplier = brightness of head lights. - this value isn't capped afaik. - multiplier = 0.0 no lights - multiplier = 1.0 default game value - - - - - set's if the vehicle has lights or not. - not an on off toggle. - p1 = 0 ;vehicle normal lights, off then lowbeams, then highbeams - p1 = 1 ;vehicle doesn't have lights, always off - p1 = 2 ;vehicle has always on lights - p1 = 3 ;or even larger like 4,5,... normal lights like =1 - note1: when using =2 on day it's lowbeam,highbeam - but at night it's lowbeam,lowbeam,highbeam - note2: when using =0 it's affected by day or night for highbeams don't exist in daytime. - - - - - p1 can be either 0, 1 or 2. - Determines how vehicle lights behave when toggled. - 0 = Default (Lights can be toggled between off, normal and high beams) - 1 = Lights Disabled (Lights are fully disabled, cannot be toggled) - 2 = Always On (Lights can be toggled between normal and high beams) - - - - - p1 can be either 0, 1 or 2. - Determines how vehicle lights behave when toggled. - 0 = Default (Lights can be toggled between off, normal and high beams) - 1 = Lights Disabled (Lights are fully disabled, cannot be toggled) - 2 = Always On (Lights can be toggled between normal and high beams) - - - - - Note: Only seems to work on Emergency Vehicles - - - - - This native sets a maximum speed for a vehicle. - - The vehicle handle. - The speed limit in meters per second. - - - - This native sets a maximum speed for a vehicle. - - The vehicle handle. - The speed limit in meters per second. - - - - In b944, there are 50 (0 - 49) mod types. - Sets the vehicle mod. - The vehicle must have a mod kit first. - Any out of range ModIndex is stock. - #Mod Type - Spoilers - Front Bumper - Rear Bumper - Side Skirt - Exhaust - Frame - Grille - Hood - Fender - Right Fender - Roof - Engine - Brakes - Transmission - Horns - 14 (modIndex from 0 to 51) - Suspension - Armor - Front Wheels - Back Wheels - 24 //only for motocycles - Plate holders - Trim Design - Ornaments - Dial Design - Steering Wheel - Shifter Leavers - Plaques - Hydraulics - Livery - ENUMS: pastebin.com/QzEAn02v - - - - - paintType: - 0: Normal - 1: Metallic - 2: Pearl - 3: Matte - 4: Metal - 5: Chrome - color: number of the color. - p3 seems to always be 0. - - - - - Changes the secondary paint type and color - paintType: - 0: Normal - 1: Metallic - 2: Pearl - 3: Matte - 4: Metal - 5: Chrome - color: number of the color - - - - - Set modKit to 0 if you plan to call SET_VEHICLE_MOD. That's what the game does. Most body modifications through SET_VEHICLE_MOD will not take effect until this is set to 0. - --------- - Setting the modKit to 0 also seems to load some livery related vehicle information. For example, using GET_LIVERY_NAME() will return NULL if you haven't set the modKit to 0 in advance. As soon as you set it to 0, GET_LIVERY_NAME() will work properly. - - - - - seems to make the vehicle stop spawning naturally in traffic. Here's an essential example: - VEHICLE::SET_VEHICLE_MODEL_IS_SUPPRESSED(GAMEPLAY::GET_HASH_KEY("taco"), true); - god I hate taco vans - Confirmed to work? Needs to be looped? Can not get it to work. - - - - - NOTE: Debugging functions are not present in the retail version of the game. - - - - - Sets the neon lights of the specified vehicle on/off. - Indices: - 0 = Left - 1 = Right - 2 = Front - 3 = Back - - - - - Sets the color of the neon lights on the specified vehicle. - RGB values and colour names taken from the decompiled scripts: - | Colour | R | G | B | - | ------------- | :-: | :-: | :-: | - | White | 222 | 222 | 255 | - | Blue | 2 | 21 | 255 | - | Electric Blue | 3 | 83 | 255 | - | Mint Green | 0 | 255 | 140 | - | Lime Green | 94 | 255 | 1 | - | Yellow | 255 | 255 | 0 | - | Golden Shower | 255 | 150 | 0 | - | Orange | 255 | 62 | 0 | - | Red | 255 | 1 | 1 | - | Pony Pink | 255 | 50 | 100 | - | Hot Pink | 255 | 5 | 190 | - | Purple | 35 | 1 | 255 | - | Blacklight | 15 | 3 | 255 | - - - - - Sets a vehicle's license plate text. 8 chars maximum. - Example: - Ped playerPed = PLAYER::PLAYER_PED_ID(); - Vehicle veh = PED::GET_VEHICLE_PED_IS_USING(playerPed); - char *plateText = "KING"; - VEHICLE::SET_VEHICLE_NUMBER_PLATE_TEXT(veh, plateText); - - - - - Plates: - Blue/White - Yellow/black - Yellow/Blue - Blue/White2 - Blue/White3 - Yankton - - - - - Sets a vehicle on the ground on all wheels. Returns whether or not the operation was successful. - sfink: This has an additional param(Vehicle vehicle, float p1) which is always set to 5.0f in the b944 scripts. - - - - - Tested on the player's current vehicle. Unless you kill the driver, the vehicle doesn't loose control, however, if enabled, explodeOnImpact is still active. The moment you crash, boom. - - - - - 1000 is max health - Begins leaking gas at around 650 health - - - - - can't seem to enable radio on cop cars etc - - - - - Reduces grip significantly so it's hard to go anywhere. - - - - - Used to set the tornado custom (convertible) rooftop livery. - Livery value that works for tornado custom is between 0 and 9 from what i can tell. Maybe 0-8 even. - Might work on other custom vehicles but im not sure what those might be, only confirmed it working with the tornado custom. - - The vehicle handle. - Livery index. - - - - Used to set the tornado custom (convertible) rooftop livery. - Livery value that works for tornado custom is between 0 and 9 from what i can tell. Maybe 0-8 even. - Might work on other custom vehicles but im not sure what those might be, only confirmed it working with the tornado custom. - - The vehicle handle. - Livery index. - - - - Only works during nighttime. - And only if there is a driver in heli. - - - - - Commands the driver of an armed vehicle (p0) to shoot its weapon at a target (p1). p3, p4 and p5 are the coordinates of the target. Example: - WEAPON::SET_CURRENT_PED_VEHICLE_WEAPON(pilot,GAMEPLAY::GET_HASH_KEY("VEHICLE_WEAPON_PLANE_ROCKET"));VEHICLE::SET_VEHICLE_SHOOT_AT_TARGET(pilot, target, targPos.x, targPos.y, targPos.z); - - - - - If set to TRUE, it seems to suppress door noises and doesn't allow the horn to be continuous. - - - - - If set to TRUE, it seems to suppress door noises and doesn't allow the horn to be continuous. - - - - - Activate siren on vehicle (Only works if the vehicle has a siren). - - - - - Has something to do with trains. Always precedes SET_MISSION_TRAIN_AS_NO_LONGER_NEEDED. - ============================================ - May be true that it can be used with trains not sure, but not specifically for trains. Go find Xbox360 decompiled scripts and search for 'func_1333' in freemode.c it isn't used just for trains. Thanks for the info tho. - Btw, func_1333 ends up calling this func which uses this native, - void func_1338(int iParam0)//Position - { - ENTITY::FREEZE_ENTITY_POSITION(iParam0, true); - ENTITY::SET_ENTITY_COLLISION(iParam0, false, 0); - ENTITY::SET_ENTITY_INVINCIBLE(iParam0, true); - VEHICLE::_0xDF594D8D(iParam0, true); - } - - - - - Has something to do with trains. Always precedes SET_MISSION_TRAIN_AS_NO_LONGER_NEEDED. - ============================================ - May be true that it can be used with trains not sure, but not specifically for trains. Go find Xbox360 decompiled scripts and search for 'func_1333' in freemode.c it isn't used just for trains. Thanks for the info tho. - Btw, func_1333 ends up calling this func which uses this native, - void func_1338(int iParam0)//Position - { - ENTITY::FREEZE_ENTITY_POSITION(iParam0, true); - ENTITY::SET_ENTITY_COLLISION(iParam0, false, 0); - ENTITY::SET_ENTITY_INVINCIBLE(iParam0, true); - VEHICLE::_0xDF594D8D(iParam0, true); - } - - - - - Locks the vehicle's steering to the desired angle, explained below. - Requires to be called onTick. Steering is unlocked the moment the function stops being called on the vehicle. - Steer bias: - -1.0 = full right - 0.0 = centered steering - 1.0 = full left - - - - - If set to true, vehicle will not take crash damage, but is still susceptible to damage from bullets and explosives - - - - - VEHICLE::SET_VEHICLE_TIMED_EXPLOSION(v_3, PLAYER::GET_PLAYER_PED(v_5), 1); - - - - - According to decompiled scripts this should work with the `deluxo` and `oppressor2` vehicles. - I've only seen this work for `deluxo` though, can't figure out what it's supposed to do on `oppressor2`. - For the deluxo: - - Set `state` to `0.0`: Fully transform to a 'road' vehicle (non-hover mode). - - Set `state` to `1.0`: Fully transform to a 'flying' vehicle (hover mode). - If you set it to something like 0.5, then something [weird happens](https://streamable.com/p6wmr), you end up in some 50% hover mode, 50% not hover mode. - This doesn't need to be called every tick, just once and the vehicle will transform to that state at the usual transform speed. It'll just stop transforming when it reaches the state you provided. - Once this native is used then players will just be able to hit the vehicle transform key to toggle the transformation cycle; it won't block users from using the key. - - The vehicle (a deluxo or oppressor2). - The transform state (value between 0.0 and 1.0). - - - - According to decompiled scripts this should work with the `deluxo` and `oppressor2` vehicles. - I've only seen this work for `deluxo` though, can't figure out what it's supposed to do on `oppressor2`. - For the deluxo: - - Set `state` to `0.0`: Fully transform to a 'road' vehicle (non-hover mode). - - Set `state` to `1.0`: Fully transform to a 'flying' vehicle (hover mode). - If you set it to something like 0.5, then something [weird happens](https://streamable.com/p6wmr), you end up in some 50% hover mode, 50% not hover mode. - This doesn't need to be called every tick, just once and the vehicle will transform to that state at the usual transform speed. It'll just stop transforming when it reaches the state you provided. - Once this native is used then players will just be able to hit the vehicle transform key to toggle the transformation cycle; it won't block users from using the key. - - The vehicle (a deluxo or oppressor2). - The transform state (value between 0.0 and 1.0). - - - - "To burst tyres VEHICLE::SET_VEHICLE_TYRE_BURST(vehicle, 0, true, 1000.0) - to burst all tyres type it 8 times where p1 = 0 to 7. - p3 seems to be how much damage it has taken. 0 doesn't deflate them, 1000 completely deflates them. - '0 = wheel_lf / bike, plane or jet front - '1 = wheel_rf - '2 = wheel_lm / in 6 wheels trailer, plane or jet is first one on left - '3 = wheel_rm / in 6 wheels trailer, plane or jet is first one on right - '4 = wheel_lr / bike rear / in 6 wheels trailer, plane or jet is last one on left - '5 = wheel_rr / in 6 wheels trailer, plane or jet is last one on right - '45 = 6 wheels trailer mid wheel left - '47 = 6 wheels trailer mid wheel right - - - - - tyreIndex = 0 to 4 on normal vehicles - '0 = wheel_lf / bike, plane or jet front - '1 = wheel_rf - '2 = wheel_lm / in 6 wheels trailer, plane or jet is first one on left - '3 = wheel_rm / in 6 wheels trailer, plane or jet is first one on right - '4 = wheel_lr / bike rear / in 6 wheels trailer, plane or jet is last one on left - '5 = wheel_rr / in 6 wheels trailer, plane or jet is last one on right - '45 = 6 wheels trailer mid wheel left - '47 = 6 wheels trailer mid wheel right - - - - - Sets the tire smoke's color of this vehicle. - vehicle: The vehicle that is the target of this method. - r: The red level in the RGB color code. - g: The green level in the RGB color code. - b: The blue level in the RGB color code. - Note: - setting r,g,b to 0 will give the car independance day tyre smoke - - - - - Allows you to toggle bulletproof tires. - - - - - Player won't be able to drive the car or enter it, unless you task him to get into any other seat than the driver one. - - - - - 0: Sport - 1: Muscle - 2: Lowrider - 3: SUV - 4: Offroad - 5: Tuner - 6: Bike Wheels - 7: High End - - - - - Adjusts the offset of the specified wheel relative to the wheel's axle center. - Needs to be called every frame in order to function properly, as GTA will reset the offset otherwise. - This function can be especially useful to set the track width of a vehicle, for example: - ``` - function SetVehicleFrontTrackWidth(vehicle, width) - SetVehicleWheelXOffset(vehicle, 0, -width/2) - SetVehicleWheelXOffset(vehicle, 1, width/2) - end - ``` - - - - - Example script: <https://pastebin.com/J6XGbkCW> - List of known states: - ``` - 1: Not wheeling. - 65: Vehicle is ready to do wheelie (burnouting). - 129: Vehicle is doing wheelie. - ``` - - Vehicle - Wheelie state - - - - enum WindowTints - { - WINDOWTINT_NONE, - WINDOWTINT_PURE_BLACK, - WINDOWTINT_DARKSMOKE, - WINDOWTINT_LIGHTSMOKE, - WINDOWTINT_STOCK, - WINDOWTINT_LIMO, - WINDOWTINT_GREEN - }; - - - - - MulleDK19: This immediately sets the VTOL engines at the specified angle ratio (0f-1f). - - - - - MulleDK19: This immediately sets the VTOL engines at the specified angle ratio (0f-1f). - - - - - Max value is 1.0 - - - - - **instructionalKey enum list**: - ``` - enum INSTRUCTIONAL_BUTTON_TYPES - { - NONE = 0, - SELECT = 1, - OK = 2, - YES = 4, - BACK = 8, - BACK_SELECT = 9, - BACK_OK = 10, - BACK_YES = 12, - CANCEL = 16, - CANCEL_SELECT = 17, - CANCEL_OK = 18, - CANCEL_YES = 20, - NO = 32, - NO_SELECT = 33, - NO_OK = 34, - YES_NO = 36, - RETRY = 64, - RETRY_SELECT = 65, - RETRY_OK = 66, - RETRY_YES = 68, - RETRY_BACK = 72, - RETRY_BACK_SELECT = 73, - RETRY_BACK_OK = 74, - RETRY_BACK_YES = 76, - RETRY_CANCEL = 80, - RETRY_CANCEL_SELECT = 81, - RETRY_CANCEL_OK = 82, - RETRY_CANCEL_YES = 84, - SKIP = 256, - SKIP_SELECT = 257, - SKIP_OK = 258, - SKIP_YES = 260, - SKIP_BACK = 264, - SKIP_BACK_SELECT = 265, - SKIP_BACK_OK = 266, - SKIP_BACK_YES = 268, - SKIP_CANCEL = 272, - SKIP_CANCEL_SELECT = 273, - SKIP_CANCEL_OK = 274, - SKIP_CANCEL_YES = 276, - CONTINUE = 16384, - BACK_CONTINUE = 16392, - CANCEL_CONTINUE = 16400, - LOADING_SPINNER = 134217728, - SELECT_LOADING_SPINNER = 134217729, - OK_LOADING_SPINNER = 134217730, - YES_LOADING_SPINNER = 134217732, - BACK_LOADING_SPINNER = 134217736, - BACK_SELECT_LOADING_SPINNER = 134217737, - BACK_OK_LOADING_SPINNER = 134217738, - BACK_YES_LOADING_SPINNER = 134217740, - CANCEL_LOADING_SPINNER = 134217744, - CANCEL_SELECT_LOADING_SPINNER = 134217745, - CANCEL_OK_LOADING_SPINNER = 134217746, - CANCEL_YES_LOADING_SPINNER = 134217748 - } - ``` - Note: this list is definitely NOT complete, but these are the ones I've been able to find before giving up because it's such a boring thing to look for 'good' combinations. - **Result of the example code:** - <https://i.imgur.com/imwoimm.png> - - The text label to display as the first line of the warning message. - This is an enum, check the description for a list. - The text label to display as the second line of the warning message. - Purpose unknown. - Purpose unknown. - Set to anything other than 0 or false (even any string) and it will draw a background. Setting it to 0 or false will draw no background. - Purpose unknown. - Purpose unknown. - Purpose unknown. - - - - You can only use text entries. No custom text. - C# Example : - Function.Call(Hash._SET_WARNING_MESSAGE_2, "HUD_QUIT", "HUD_CGIGNORE", 2, "HUD_CGINVITE", 0, -1, 0, 0, 1); - you can recreate this easily with scaleforms - --------------- - Fixed native name, from before nativedb restoration. - - - - - You can only use text entries. No custom text. - C# Example : - Function.Call(Hash._SET_WARNING_MESSAGE_2, "HUD_QUIT", "HUD_CGIGNORE", 2, "HUD_CGINVITE", 0, -1, 0, 0, 1); - you can recreate this easily with scaleforms - --------------- - Fixed native name, from before nativedb restoration. - - - - - You can only use text entries. No custom text. - - - - - This native removes the current waypoint from the map. - Example: - C#: - Function.Call(Hash.SET_WAYPOINT_OFF); - C++: - UI::SET_WAYPOINT_OFF(); - - - - - Changes the selected ped aiming animation style. - Note : You must use GET_HASH_KEY! - Strings to use with GET_HASH_KEY : - "Ballistic", - "Default", - "Fat", - "Female", - "FirstPerson", - "FirstPersonAiming", - "FirstPersonFranklin", - "FirstPersonFranklinAiming", - "FirstPersonFranklinRNG", - "FirstPersonFranklinScope", - "FirstPersonMPFemale", - "FirstPersonMichael", - "FirstPersonMichaelAiming", - "FirstPersonMichaelRNG", - "FirstPersonMichaelScope", - "FirstPersonRNG", - "FirstPersonScope", - "FirstPersonTrevor", - "FirstPersonTrevorAiming", - "FirstPersonTrevorRNG", - "FirstPersonTrevorScope", - "Franklin", - "Gang", - "Gang1H", - "GangFemale", - "Hillbilly", - "MP_F_Freemode", - "Michael", - "SuperFat", - "Trevor" - - - - - Hash collision, real name is: IS_FLASH_LIGHT_ON - - - - - The following weatherTypes are used in the scripts: - "CLEAR" - "EXTRASUNNY" - "CLOUDS" - "OVERCAST" - "RAIN" - "CLEARING" - "THUNDER" - "SMOG" - "FOGGY" - "XMAS" - "SNOWLIGHT" - "BLIZZARD" - - - - - The following weatherTypes are used in the scripts: - "CLEAR" - "EXTRASUNNY" - "CLOUDS" - "OVERCAST" - "RAIN" - "CLEARING" - "THUNDER" - "SMOG" - "FOGGY" - "XMAS" - "SNOWLIGHT" - "BLIZZARD" - - - - - The following weatherTypes are used in the scripts: - "CLEAR" - "EXTRASUNNY" - "CLOUDS" - "OVERCAST" - "RAIN" - "CLEARING" - "THUNDER" - "SMOG" - "FOGGY" - "XMAS" - "SNOWLIGHT" - "BLIZZARD" - - - - - Mixes two weather types. If percentWeather2 is set to 0.0f, then the weather will be entirely of weatherType1, if it is set to 1.0f it will be entirely of weatherType2. If it's set somewhere in between, there will be a mixture of weather behaviors. To test, try this in the RPH console, and change the float to different values between 0 and 1: - execute "NativeFunction.Natives.x578C752848ECFA0C(Game.GetHashKey(""RAIN""), Game.GetHashKey(""SMOG""), 0.50f); - Note that unlike most of the other weather natives, this native takes the hash of the weather name, not the plain string. These are the weather names and their hashes: - CLEAR 0x36A83D84 - EXTRASUNNY 0x97AA0A79 - CLOUDS 0x30FDAF5C - OVERCAST 0xBB898D2D - RAIN 0x54A69840 - CLEARING 0x6DB1A50D - THUNDER 0xB677829F - SMOG 0x10DCF4B5 - FOGGY 0xAE737644 - XMAS 0xAAC9C895 - SNOWLIGHT 0x23FB812B - BLIZZARD 0x27EA2814 - -- [[ OLD INVALID INFO BELOW ]] - Not tested. Based purely on disassembly. Instantly sets the weather to sourceWeather, then transitions to targetWeather over the specified transitionTime in seconds. - If an invalid hash is specified for sourceWeather, the current weather type will be used. - If an invalid hash is specified for targetWeather, the next weather type will be used. - If an invalid hash is specified for both sourceWeather and targetWeather, the function just changes the transition time of the current transition. - - - - - Sets the the raw wind speed value. - - - - - This is NOT a heading. It's a FLOAT value from 0.0-7.0. Look at this image: - i.imgur.com/FwVpGS6.png - ---------------------------- - This appears to be a heading, in radians (0-2*pi) -PNWParksFan - - - - - Using this native will clamp the wind speed value to a range of 0.0- 12.0. Using SET_WIND sets the same value but without the restriction. - - - - - Possible shake types (updated b617d): - DEATH_FAIL_IN_EFFECT_SHAKE - DRUNK_SHAKE - FAMILY5_DRUG_TRIP_SHAKE - HAND_SHAKE - JOLT_SHAKE - LARGE_EXPLOSION_SHAKE - MEDIUM_EXPLOSION_SHAKE - SMALL_EXPLOSION_SHAKE - ROAD_VIBRATION_SHAKE - SKY_DIVING_SHAKE - VIBRATE_SHAKE - - - - - p0 argument found in the b617d scripts: "DRUNK_SHAKE" - - - - - Possible shake types (updated b617d): - DEATH_FAIL_IN_EFFECT_SHAKE - DRUNK_SHAKE - FAMILY5_DRUG_TRIP_SHAKE - HAND_SHAKE - JOLT_SHAKE - LARGE_EXPLOSION_SHAKE - MEDIUM_EXPLOSION_SHAKE - SMALL_EXPLOSION_SHAKE - ROAD_VIBRATION_SHAKE - SKY_DIVING_SHAKE - VIBRATE_SHAKE - - - - - this is what p7 does in disassembly - __int8 var = 32; - if (isInvisible) - { - var = 16; - } - int v110 = var | 2 * p7; - - - - - entity - entity to ignore - - - - - entity - entity to ignore - - - - - Since latest patches has 18 parameters. - Console Hash: 0xCCDC33CC - entity - entity to ignore - - - - - Since latest patches has 18 parameters. - Console Hash: 0xCCDC33CC - entity - entity to ignore - - - - - Returns true if the game is using the metric measurement system, false if imperial is used. - This is what r\* uses for the different label types (either ones with miles in them or with km, as well as some other measurement related labels). - - Returns true if the game is using the metric measurement system, false if imperial is used. - - - - Returns true if the game is using the metric measurement system, false if imperial is used. - This is what r\* uses for the different label types (either ones with miles in them or with km, as well as some other measurement related labels). - - Returns true if the game is using the metric measurement system, false if imperial is used. - - - - Returns true if the game is using the metric measurement system, false if imperial is used. - This is what r\* uses for the different label types (either ones with miles in them or with km, as well as some other measurement related labels). - - Returns true if the game is using the metric measurement system, false if imperial is used. - - - - Enables or disables the blue half circle ![](https://i.imgur.com/iZes9Ec.png) around the specified blip on the left side of the blip. This is used to indicate that the player is in your crew in GTA:O. Color is changeable by using [`SET_BLIP_SECONDARY_COLOUR`](#_0x14892474891E09EB). - To toggle the right side of the circle use: [`SHOW_FRIEND_INDICATOR_ON_BLIP`](#_0x23C3EB807312F01A). - Example code result: - ![](https://i.imgur.com/iZ9tNWl.png) - - The blip to toggle the half blue circle around the blip on. - Enables or disables the half blue circle around the blip (on the left side). - - - - Enables or disables the blue half circle ![](https://i.imgur.com/iZes9Ec.png) around the specified blip on the left side of the blip. This is used to indicate that the player is in your crew in GTA:O. Color is changeable by using [`SET_BLIP_SECONDARY_COLOUR`](#_0x14892474891E09EB). - To toggle the right side of the circle use: [`SHOW_FRIEND_INDICATOR_ON_BLIP`](#_0x23C3EB807312F01A). - Example code result: - ![](https://i.imgur.com/iZ9tNWl.png) - - The blip to toggle the half blue circle around the blip on. - Enables or disables the half blue circle around the blip (on the left side). - - - - Enables or disables the blue half circle ![](https://i.imgur.com/iZes9Ec.png) around the specified blip on the left side of the blip. This is used to indicate that the player is in your crew in GTA:O. Color is changeable by using [`SET_BLIP_SECONDARY_COLOUR`](#_0x14892474891E09EB). - To toggle the right side of the circle use: [`SHOW_FRIEND_INDICATOR_ON_BLIP`](#_0x23C3EB807312F01A). - Example code result: - ![](https://i.imgur.com/iZ9tNWl.png) - - The blip to toggle the half blue circle around the blip on. - Enables or disables the half blue circle around the blip (on the left side). - - - - Shows the cursor on screen for the frame its called. - - - - - Highlights a blip by a half cyan circle on the right side of the blip. ![](https://i.imgur.com/FrV9M4e.png) Indicating that that player is a friend (in GTA:O). This color can not be changed. - To toggle the left side (crew member indicator) of the half circle around the blip, use: [`SHOW_CREW_INDICATOR_ON_BLIP`](#_0xDCFB5D4DB8BF367E). - - The blip to toggle the half circle on. - Enables or disables the half circle around the blip (on the right side of the blip). - - - - Highlights a blip by a half cyan circle on the right side of the blip. ![](https://i.imgur.com/FrV9M4e.png) Indicating that that player is a friend (in GTA:O). This color can not be changed. - To toggle the left side (crew member indicator) of the half circle around the blip, use: [`SHOW_CREW_INDICATOR_ON_BLIP`](#_0xDCFB5D4DB8BF367E). - - The blip to toggle the half circle on. - Enables or disables the half circle around the blip (on the right side of the blip). - - - - Highlights a blip by a half cyan circle on the right side of the blip. ![](https://i.imgur.com/FrV9M4e.png) Indicating that that player is a friend (in GTA:O). This color can not be changed. - To toggle the left side (crew member indicator) of the half circle around the blip, use: [`SHOW_CREW_INDICATOR_ON_BLIP`](#_0xDCFB5D4DB8BF367E). - - The blip to toggle the half circle on. - Enables or disables the half circle around the blip (on the right side of the blip). - - - - Adds the GTA: Online player heading indicator to a blip. - - - - - Adds the GTA: Online player heading indicator to a blip. - - - - - Toggles a cyan outline around the blip. - Color can be changed with `SET_BLIP_SECONDARY_COLOUR`. Enabling this circle will override the "crew" and "friend" half-circles (see [`SHOW_CREW_INDICATOR_ON_BLIP`](#_0xDCFB5D4DB8BF367E) and [`SHOW_FRIEND_INDICATOR_ON_BLIP`](#_0x23C3EB807312F01A)). - ~~Oddly enough, this native is called `_SET_BLIP_FRIENDLY`, but the color of the circle is only changable for the 'crew' half-circle (using `SET_BLIP_SECONDARY_COLOUR`), the 'friendly' side can NOT be changed and will always stay cyan/blue. This makes it seem more likely that this should be called `_SET_BLIP_CREW_CIRCLE` or something similar?~~ - Real name is `SHOW_OUTLINE_INDICATOR_ON_BLIP`, discovered by Blattersturm. - - The blip to toggle the outline on. - Enables or disables the outline. - - - - Toggles a cyan outline around the blip. - Color can be changed with `SET_BLIP_SECONDARY_COLOUR`. Enabling this circle will override the "crew" and "friend" half-circles (see [`SHOW_CREW_INDICATOR_ON_BLIP`](#_0xDCFB5D4DB8BF367E) and [`SHOW_FRIEND_INDICATOR_ON_BLIP`](#_0x23C3EB807312F01A)). - ~~Oddly enough, this native is called `_SET_BLIP_FRIENDLY`, but the color of the circle is only changable for the 'crew' half-circle (using `SET_BLIP_SECONDARY_COLOUR`), the 'friendly' side can NOT be changed and will always stay cyan/blue. This makes it seem more likely that this should be called `_SET_BLIP_CREW_CIRCLE` or something similar?~~ - Real name is `SHOW_OUTLINE_INDICATOR_ON_BLIP`, discovered by Blattersturm. - - The blip to toggle the outline on. - Enables or disables the outline. - - - - Toggles a cyan outline around the blip. - Color can be changed with `SET_BLIP_SECONDARY_COLOUR`. Enabling this circle will override the "crew" and "friend" half-circles (see [`SHOW_CREW_INDICATOR_ON_BLIP`](#_0xDCFB5D4DB8BF367E) and [`SHOW_FRIEND_INDICATOR_ON_BLIP`](#_0x23C3EB807312F01A)). - ~~Oddly enough, this native is called `_SET_BLIP_FRIENDLY`, but the color of the circle is only changable for the 'crew' half-circle (using `SET_BLIP_SECONDARY_COLOUR`), the 'friendly' side can NOT be changed and will always stay cyan/blue. This makes it seem more likely that this should be called `_SET_BLIP_CREW_CIRCLE` or something similar?~~ - Real name is `SHOW_OUTLINE_INDICATOR_ON_BLIP`, discovered by Blattersturm. - - The blip to toggle the outline on. - Enables or disables the outline. - - - - If toggle is true, the ped's head is shown in the pause menu - If toggle is false, the ped's head is not shown in the pause menu - - - - - If toggle is true, the ped's head is shown in the pause menu - If toggle is false, the ped's head is not shown in the pause menu - - - - - Uses the `SOCIAL_CLUB2` scaleform. - - - - - Uses the `SOCIAL_CLUB2` scaleform. - - - - - probs one frame - - - - - Adds a green checkmark on top of a blip. - - - - - Adds a green checkmark on top of a blip. - - - - - Adds a green checkmark on top of a blip. - - - - - Forces the weapon wheel to appear on screen. - - - - - Forces the weapon wheel to appear on screen. - - - - - Starts a new singleplayer game (at the prologue). - - - - - Shuts down the `loadingScreen` NUI frame, similarly to `SHUTDOWN_LOADING_SCREEN`. - - - - - This is to make the player walk without accepting input from INPUT. - gaitType is in increments of 100s. 2000, 500, 300, 200, etc. - p4 is always 1 and p5 is always 0. - C# Example : - Function.Call(Hash.SIMULATE_PLAYER_INPUT_GAIT, Game.Player, 1.0f, 100, 1.0f, 1, 0); //Player will go forward for 100ms - - - - - Returns true if the object has finished moving. - If false, moves the object towards the specified X, Y and Z coordinates with the specified X, Y and Z speed. - See also: gtag.gtagaming.com/opcode-database/opcode/034E/ - - - - - p1 appears as 5, 10, 15, 25, or 30. p2 is always true. - - - - - p1 appears to always be 1 (only comes up twice) - - - - - 2 matches. p1 was always true. - - - - - Only 1 match. Both p1 & p2 were true. - - - - - normalizedValue is from 0.0 - 1.0 - p2 is always 1 - - - - - normalizedValue is from 0.0 - 1.0 - p2 is always 1 - - - - - Every occurrence of p1 & p2 were both true. - - - - - p1 was always true. - - - - - Also known as _RECHARGE_SPECIAL_ABILITY - - - - - Hash collision!!! PLAY_STREAM_FROM_POSITION is the correct name! - - - - - Example: - This will start the alarm at Fort Zancudo. - AUDIO::START_ALARM("PORT_OF_LS_HEIST_FORT_ZANCUDO_ALARMS", 1); - First parameter (char) is the name of the alarm. - Second parameter (bool) is unknown, it does not seem to make a difference if this one is 0 or 1. - ---------- - It DOES make a difference but it has to do with the duration or something I dunno yet - ---------- - Found in the b617d scripts: - AUDIO::START_ALARM("AGENCY_HEIST_FIB_TOWER_ALARMS", 0); - AUDIO::START_ALARM("AGENCY_HEIST_FIB_TOWER_ALARMS_UPPER", 1); - AUDIO::START_ALARM("AGENCY_HEIST_FIB_TOWER_ALARMS_UPPER_B", 0); - AUDIO::START_ALARM("BIG_SCORE_HEIST_VAULT_ALARMS", a_0); - AUDIO::START_ALARM("FBI_01_MORGUE_ALARMS", 1); - AUDIO::START_ALARM("FIB_05_BIOTECH_LAB_ALARMS", 0); - AUDIO::START_ALARM("JEWEL_STORE_HEIST_ALARMS", 0); - AUDIO::START_ALARM("PALETO_BAY_SCORE_ALARM", 1); - AUDIO::START_ALARM("PALETO_BAY_SCORE_CHICKEN_FACTORY_ALARM", 0); - AUDIO::START_ALARM("PORT_OF_LS_HEIST_FORT_ZANCUDO_ALARMS", 1); - AUDIO::START_ALARM("PORT_OF_LS_HEIST_SHIP_ALARMS", 0); - AUDIO::START_ALARM("PRISON_ALARMS", 0); - AUDIO::START_ALARM("PROLOGUE_VAULT_ALARMS", 0); - - - - - Used to prepare a scene where the surrounding sound is muted or a bit changed. This does not play any sound. - List of all usable scene names found in b617d. Sorted alphabetically and identical names removed: pastebin.com/MtM9N9CC - - - - - some kind of flag. Usually 0. - - - - - p3: some kind of flag. Usually 0. - - - - - network fx - - - - - network fx - - - - - network fx - - - - - Console Hash: 0xF478EFCF - network fx - - - - - Console Hash: 0xF478EFCF - network fx - - - - - Console Hash: 0xF478EFCF - network fx - - - - - network fx - - - - - network fx - - - - - network fx - - - - - network fx - - - - - network fx - - - - - network fx - - - - - Examples: - g_384A = SYSTEM::START_NEW_SCRIPT("cellphone_flashhand", 1424); - l_10D = SYSTEM::START_NEW_SCRIPT("taxiService", 1828); - SYSTEM::START_NEW_SCRIPT("AM_MP_YACHT", 5000); - SYSTEM::START_NEW_SCRIPT("emergencycall", 512); - SYSTEM::START_NEW_SCRIPT("emergencycall", 512); - SYSTEM::START_NEW_SCRIPT("FM_maintain_cloud_header_data", 1424); - SYSTEM::START_NEW_SCRIPT("FM_Mission_Controller", 31000); - SYSTEM::START_NEW_SCRIPT("tennis_family", 3650); - SYSTEM::START_NEW_SCRIPT("Celebrations", 3650); - Decompiled examples of usage when starting a script: - SCRIPT::REQUEST_SCRIPT(a_0); - if (SCRIPT::HAS_SCRIPT_LOADED(a_0)) { - SYSTEM::START_NEW_SCRIPT(a_0, v_3); - SCRIPT::SET_SCRIPT_AS_NO_LONGER_NEEDED(a_0); - return 1; - } - or: - v_2 = "MrsPhilips2"; - SCRIPT::REQUEST_SCRIPT(v_2); - while (!SCRIPT::HAS_SCRIPT_LOADED(v_2)) { - SCRIPT::REQUEST_SCRIPT(v_2); - SYSTEM::WAIT(0); - } - sub_8792(36); - SYSTEM::START_NEW_SCRIPT(v_2, 17000); - SCRIPT::SET_SCRIPT_AS_NO_LONGER_NEEDED(v_2); - All native script names: pastebin.com/K9adDsu4 and pastebin.com/yLNWicUi - - - - - return : script thread id, 0 if failed - Pass pointer to struct of args in p1, size of struct goes into p2 - - - - - GRAPHICS::START_PARTICLE_FX_LOOPED_AT_COORD("scr_fbi_falling_debris", 93.7743f, -749.4572f, 70.86904f, 0f, 0f, 0f, 0x3F800000, 0, 0, 0, 0) - p11 seems to be always 0 - - - - - list: pastebin.com/N9unUFWY - - - - - GRAPHICS::START_PARTICLE_FX_NON_LOOPED_AT_COORD("scr_paleto_roof_impact", -140.8576f, 6420.789f, 41.1391f, 0f, 0f, 267.3957f, 0x3F800000, 0, 0, 0); - Axis - Invert Axis Flags - list: pastebin.com/N9unUFWY - ------------------------------------------------------------------- - C# - Function.Call<int>(Hash.START_PARTICLE_FX_NON_LOOPED_AT_COORD, = you are calling this function. - char *effectname = This is an in-game effect name, for e.g. "scr_fbi4_trucks_crash" is used to give the effects when truck crashes etc - float x, y, z pos = this one is Simple, you just have to declare, where do you want this effect to take place at, so declare the ordinates - float xrot, yrot, zrot = Again simple? just mention the value in case if you want the effect to rotate. - float scale = is declare the scale of the effect, this may vary as per the effects for e.g 1.0f - bool xaxis, yaxis, zaxis = To bool the axis values. - example: - Function.Call<int>(Hash.START_PARTICLE_FX_NON_LOOPED_AT_COORD, "scr_fbi4_trucks_crash", GTA.Game.Player.Character.Position.X, GTA.Game.Player.Character.Position.Y, GTA.Game.Player.Character.Position.Z + 4f, 0, 0, 0, 5.5f, 0, 0, 0); - - - - - Starts a particle effect on an entity for example your player. - List: pastebin.com/N9unUFWY - Example: - C#: - Function.Call(Hash.REQUEST_NAMED_PTFX_ASSET, "scr_rcbarry2"); Function.Call(Hash._SET_PTFX_ASSET_NEXT_CALL, "scr_rcbarry2"); Function.Call(Hash.START_PARTICLE_FX_NON_LOOPED_ON_ENTITY, "scr_clown_appears", Game.Player.Character, 0.0, 0.0, -0.5, 0.0, 0.0, 0.0, 1.0, false, false, false); - Internally this calls the same function as GRAPHICS::START_PARTICLE_FX_NON_LOOPED_ON_PED_BONE - however it uses -1 for the specified bone index, so it should be possible to start a non looped fx on an entity bone using that native - - - - - GRAPHICS::START_PARTICLE_FX_NON_LOOPED_ON_PED_BONE("scr_sh_bong_smoke", PLAYER::PLAYER_PED_ID(), -0.025f, 0.13f, 0f, 0f, 0f, 0f, 31086, 0x3F800000, 0, 0, 0); - Axis - Invert Axis Flags - list: pastebin.com/N9unUFWY - - - - - // this enum comes directly from R* so don't edit this - enum ePlayerSwitchType - { - SWITCH_TYPE_AUTO, - SWITCH_TYPE_LONG, - SWITCH_TYPE_MEDIUM, - SWITCH_TYPE_SHORT - }; - Use GET_IDEAL_PLAYER_SWITCH_TYPE for the best switch type. Or just auto, because it calls the same function in executable. - ---------------------------------------------------- - Examples from the decompiled scripts: - STREAMING::START_PLAYER_SWITCH(l_832._f3, PLAYER::PLAYER_PED_ID(), 0, 3); - STREAMING::START_PLAYER_SWITCH(l_832._f3, PLAYER::PLAYER_PED_ID(), 2050, 3); - STREAMING::START_PLAYER_SWITCH(PLAYER::PLAYER_PED_ID(), l_832._f3, 1024, 3); - STREAMING::START_PLAYER_SWITCH(g_141F27, PLAYER::PLAYER_PED_ID(), 513, v_14); - Note: DO NOT, use SWITCH_TYPE_LONG with flag 513. It leaves you stuck in the clouds. You'll have to call STOP_PLAYER_SWITCH() to return to your ped. - Flag 8 w/ SWITCH_TYPE_LONG will zoom out 3 steps, then zoom in 2/3 steps and stop on the 3rd and just hang there. - Flag 8 w/ SWITCH_TYPE_MEDIUM will zoom out 1 step, and just hang there. - - - - - Starts recording a replay. - If mode is 0, turns on action replay. - If mode is 1, starts recording. - If already recording a replay, does nothing. - - - - - Starts recording a replay. - If mode is 0, turns on action replay. - If mode is 1, starts recording. - If already recording a replay, does nothing. - - - - - Second parameter might be length. - - - - - Second parameter might be length. - - - - - playLength - is how long to play the effect for in milliseconds. If 0, it plays the default length - if loop is true, the effect wont stop until you call _STOP_SCREEN_EFFECT on it. (only loopable effects) - Example and list of screen FX: www.pastebin.com/dafBAjs0 - - - - - Starts a fire: - xyz: Location of fire - maxChildren: The max amount of times a fire can spread to other objects. Must be 25 or less, or the function will do nothing. - isGasFire: Whether or not the fire is powered by gasoline. - - - - - Raycast from point to point, where the ray has a radius. - flags: - vehicles=10 - peds =12 - Iterating through flags yields many ped / vehicle/ object combinations - p9 = 7, but no idea what it does - Entity is an entity to ignore - - - - - Raycast from point to point, where the ray has a radius. - flags: - vehicles=10 - peds =12 - Iterating through flags yields many ped / vehicle/ object combinations - p9 = 7, but no idea what it does - Entity is an entity to ignore - - - - - Performs the same type of trace as START_SHAPE_TEST_CAPSULE, but with some different hardcoded parameters. - - - - - Performs the same type of trace as START_SHAPE_TEST_CAPSULE, but with some different hardcoded parameters. - - - - - Returns a ray (?) going from x1, y1, z1 to x2, y2, z2. - entity = 0 most of the time. - p8 = 7 most of the time. - Result of this function is passed to WORLDPROBE::_GET_RAYCAST_RESULT as a first argument. - - - - - Returns a ray (?) going from x1, y1, z1 to x2, y2, z2. - entity = 0 most of the time. - p8 = 7 most of the time. - Result of this function is passed to WORLDPROBE::_GET_RAYCAST_RESULT as a first argument. - - - - - Not sure how or why this differs from 0x7EE9F5D83DD4F90E, but it does. - This function casts a ray from Point1 to Point2 and returns it's ray handle. A simple ray cast will 'shoot' a line from point A to point B, and return whether or not the ray reached it's destination or if it hit anything and if it did hit anything, will return the handle of what it hit (entity handle) and coordinates of where the ray reached. - You can use _GET_RAYCAST_RESULT to get the result of the raycast - Entity is an entity to ignore, such as the player. - Flags are intersection bit flags. They tell the ray what to care about and what not to care about when casting. Passing -1 will intersect with everything, presumably. - Flags: - 1: Intersect with map - 2: Intersect with vehicles (used to be mission entities?) (includes train) - 4: Intersect with peds? (same as 8) - 8: Intersect with peds? (same as 4) - 16: Intersect with objects - 32: Water? - 64: Unknown - 128: Unknown - 256: Intersect with vegetation (plants, coral. trees not included) - NOTE: Raycasts that intersect with mission_entites (flag = 2) has limited range and will not register for far away entites. The range seems to be about 30 metres. - - - - - Not sure how or why this differs from 0x7EE9F5D83DD4F90E, but it does. - This function casts a ray from Point1 to Point2 and returns it's ray handle. A simple ray cast will 'shoot' a line from point A to point B, and return whether or not the ray reached it's destination or if it hit anything and if it did hit anything, will return the handle of what it hit (entity handle) and coordinates of where the ray reached. - You can use _GET_RAYCAST_RESULT to get the result of the raycast - Entity is an entity to ignore, such as the player. - Flags are intersection bit flags. They tell the ray what to care about and what not to care about when casting. Passing -1 will intersect with everything, presumably. - Flags: - 1: Intersect with map - 2: Intersect with vehicles (used to be mission entities?) (includes train) - 4: Intersect with peds? (same as 8) - 8: Intersect with peds? (same as 4) - 16: Intersect with objects - 32: Water? - 64: Unknown - 128: Unknown - 256: Intersect with vegetation (plants, coral. trees not included) - NOTE: Raycasts that intersect with mission_entites (flag = 2) has limited range and will not register for far away entites. The range seems to be about 30 metres. - - - - - it returns a ShapeTest handle that can be used with GET_SHAPE_TEST_RESULT. - In its only usage in game scripts its called with flag set to 511, entity to player_ped_id and flag2 set to 7 - - - - - it returns a ShapeTest handle that can be used with GET_SHAPE_TEST_RESULT. - In its only usage in game scripts its called with flag set to 511, entity to player_ped_id and flag2 set to 7 - - - - - Sounds the horn for the specified vehicle. - vehicle: The vehicle to activate the horn for. - mode: The hash of "NORMAL" or "HELDDOWN". Can be 0. - duration: The duration to sound the horn, in milliseconds. - Note: If a player is in the vehicle, it will only sound briefly. - - - - - Please change to "void"! - --------------------------------- - Example: - for (v_2 = 0; v_2 <= 4; v_2 += 1) { - STATS::STAT_CLEAR_SLOT_FOR_RELOAD(v_2); - } - - - - - p2 - Default value? Seems to be -1 most of the time. - - - - - p2 appears to always be -1 - - - - - p1 is always -1 in the script files - - - - - Needs more research. Seems to return "STAT_UNKNOWN" if no such user id exists. - - - - - p1 always true. - - - - - 'value' is a structure to a structure, 'numFields' is how many fields there are in said structure (usually 7). - The structure looks like this: - int year - int month - int day - int hour - int minute - int second - int millisecond - The decompiled scripts use TIME::GET_POSIX_TIME to fill this structure. - - - - - The following values have been found in the decompiled scripts: - "RC_ABI1" - "RC_ABI2" - "RC_BA1" - "RC_BA2" - "RC_BA3" - "RC_BA3A" - "RC_BA3C" - "RC_BA4" - "RC_DRE1" - "RC_EPS1" - "RC_EPS2" - "RC_EPS3" - "RC_EPS4" - "RC_EPS5" - "RC_EPS6" - "RC_EPS7" - "RC_EPS8" - "RC_EXT1" - "RC_EXT2" - "RC_EXT3" - "RC_EXT4" - "RC_FAN1" - "RC_FAN2" - "RC_FAN3" - "RC_HAO1" - "RC_HUN1" - "RC_HUN2" - "RC_JOS1" - "RC_JOS2" - "RC_JOS3" - "RC_JOS4" - "RC_MAU1" - "RC_MIN1" - "RC_MIN2" - "RC_MIN3" - "RC_MRS1" - "RC_MRS2" - "RC_NI1" - "RC_NI1A" - "RC_NI1B" - "RC_NI1C" - "RC_NI1D" - "RC_NI2" - "RC_NI3" - "RC_OME1" - "RC_OME2" - "RC_PA1" - "RC_PA2" - "RC_PA3" - "RC_PA3A" - "RC_PA3B" - "RC_PA4" - "RC_RAM1" - "RC_RAM2" - "RC_RAM3" - "RC_RAM4" - "RC_RAM5" - "RC_SAS1" - "RC_TON1" - "RC_TON2" - "RC_TON3" - "RC_TON4" - "RC_TON5" - - - - - Add Cash example: - for (int i = 0; i < 3; i++) - { - char statNameFull[32]; - sprintf_s(statNameFull, "SP%d_TOTAL_CASH", i); - Hash hash = GAMEPLAY::GET_HASH_KEY(statNameFull); - int val; - STATS::STAT_GET_INT(hash, &val, -1); - val += 1000000; - STATS::STAT_SET_INT(hash, val, 1); - } - - - - - Does not take effect immediately, unfortunately. - profileSetting seems to only be 936, 937 and 938 in scripts - gtaforums.com/topic/799843-stats-profile-settings/ - - - - - Does not take effect immediately, unfortunately. - profileSetting seems to only be 936, 937 and 938 in scripts - gtaforums.com/topic/799843-stats-profile-settings/ - - - - - Hash collision!!! - SET_VEHICLE_IS_* - p1 (toggle) was always 1 (true) except in one case in the b678 scripts. - - - - - Example: - This will stop the alarm at Fort Zancudo. - AUDIO::STOP_ALARM("PORT_OF_LS_HEIST_FORT_ZANCUDO_ALARMS", 1); - First parameter (char) is the name of the alarm. - Second parameter (bool) has to be true (1) to have any effect. - - - - - From re_drunkdriver: - • AI::STOP_ANIM_PLAYBACK(l_5B[0 -- [[1]] ], 0, 0); - Looks like p1 may be a flag, still need to do some research, though. - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - ?? - - - - - Needs to be called every frame. - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - RAGEPluginHook list: docs.ragepluginhook.net/html/62951c37-a440-478c-b389-c471230ddfc5.htm - - - - - This doesn't stop fire nor the fire propagation in a loop... for some reasons. - - - - - p1 is always 0 in the native scripts - - - - - Disables the player's teleportation - - - - - Stops recording and discards the recorded clip. - - - - - Stops recording and discards the recorded clip. - - - - - Stops recording and saves the recorded clip. - - - - - Stops recording and saves the recorded clip. - - - - - This disable the recording feature and has to be called every frame. - - - - - This disable the recording feature and has to be called every frame. - - - - - Example and list of screen FX: www.pastebin.com/dafBAjs0 - - - - - In drunk_controller.c4, sub_309 - if (CAM::_C912AF078AF19212()) { - CAM::_1C9D7949FA533490(0); - } - - - - - In drunk_controller.c4, sub_309 - if (CAM::_C912AF078AF19212()) { - CAM::_1C9D7949FA533490(0); - } - - - - - p1 sync task id? - - - - - Returns false if it's a null or empty string or if the string is too long. outInteger will be set to -999 in that case. - If all checks have passed successfully, the return value will be set to whatever strtol(string, 0i64, 10); returns. - - - - - This was previously named as "RESERVE_ENTITY_EXPLODES_ON_HIGH_EXPLOSION_COMBO" - which is obviously incorrect. - Seems to only appear in scripts used in Singleplayer. p1 ranges from 2 - 46. - I assume this switches the crime type - - - - - This was previously named as "RESERVE_ENTITY_EXPLODES_ON_HIGH_EXPLOSION_COMBO" - which is obviously incorrect. - Seems to only appear in scripts used in Singleplayer. p1 ranges from 2 - 46. - I assume this switches the crime type - - - - - Use after using \_SWITCH_OUT_PLAYER to swoop the camera back down to the player's ped. - - - - - Use after using \_SWITCH_OUT_PLAYER to swoop the camera back down to the player's ped. - - - - - doesn't act normally when used on mount chilliad - flags: - 0: normal - 1: no transition - 255: switch IN - switchType: 0 - 3 - 0: 1 step towards ped - 1: 3 steps out from ped - 2: 1 step out from ped - 3: 1 step towards ped - - - - - doesn't act normally when used on mount chilliad - flags: - 0: normal - 1: no transition - 255: switch IN - switchType: 0 - 3 - 0: 1 step towards ped - 1: 3 steps out from ped - 2: 1 step out from ped - 3: 1 step towards ped - - - - - Returns tangent value of p0. - - - - - Makes the specified ped achieve the specified heading. - pedHandle: The handle of the ped to assign the task to. - heading: The desired heading. - timeout: The time, in milliseconds, to allow the task to complete. If the task times out, it is cancelled, and the ped will stay at the heading it managed to reach in the time. - - - - - duration: the amount of time in milliseconds to do the task. -1 will keep the task going until either another task is applied, or CLEAR_ALL_TASKS() is called with the ped - - - - - Example from "me_amanda1.ysc.c4": - AI::TASK_ARREST_PED(l_19F -- [[ This is a Ped ]] , PLAYER::PLAYER_PED_ID()); - Example from "armenian1.ysc.c4": - if (!PED::IS_PED_INJURED(l_B18[0 -- [[1]] ])) { - AI::TASK_ARREST_PED(l_B18[0 -- [[1]] ], PLAYER::PLAYER_PED_ID()); - } - I would love to have time to experiment to see if a player Ped can arrest another Ped. Might make for a good cop mod. - Looks like only the player can be arrested this way. Peds react and try to arrest you if you task them, but the player charater doesn't do anything if tasked to arrest another ped. - - - - - You need to call PED::SET_BLOCKING_OF_NON_TEMPORARY_EVENTS after TASK_BOAT_MISSION in order for the task to execute. - Working example - float vehicleMaxSpeed = VEHICLE::_GET_VEHICLE_MAX_SPEED(ENTITY::GET_ENTITY_MODEL(pedVehicle)); - AI::TASK_BOAT_MISSION(pedDriver, pedVehicle, 0, 0, waypointCoord.x, waypointCoord.y, waypointCoord.z, 4, vehicleMaxSpeed, 786469, -1.0, 7); - PED::SET_BLOCKING_OF_NON_TEMPORARY_EVENTS(pedDriver, 1); - P8 appears to be driving style flag - see gtaforums.com/topic/822314-guide-driving-styles/ for documentation - - - - - p2 tend to be 16, 17 or 1 - p3 to p7 tend to be 0.0 - - - - - Not clear what it actually does, but here's how script uses it - - if (OBJECT::HAS_PICKUP_BEEN_COLLECTED(...) - { - if(ENTITY::DOES_ENTITY_EXIST(PLAYER::PLAYER_PED_ID())) - { - AI::TASK_CLEAR_LOOK_AT(PLAYER::PLAYER_PED_ID()); - } - ... - } - Another one where it doesn't "look" at current player - - AI::TASK_PLAY_ANIM(l_3ED, "missheist_agency2aig_2", "look_at_phone_a", 1000.0, -2.0, -1, 48, v_2, 0, 0, 0); - PED::_2208438012482A1A(l_3ED, 0, 0); - AI::TASK_CLEAR_LOOK_AT(l_3ED); - - - - - Climbs or vaults the nearest thing. - - - - - Despite its name, it only attacks ONE hated target. The one closest hated target. - p2 seems to be always 0 - - - - - Despite its name, it only attacks ONE hated target. The one closest to the specified position. - - - - - Makes the specified ped attack the target ped. - p2 should be 0 - p3 should be 16 - - - - - Example: - AI::TASK_DRIVE_BY(l_467[1 -- [[22]] ], PLAYER::PLAYER_PED_ID(), 0, 0.0, 0.0, 2.0, 300.0, 100, 0, ${firing_pattern_burst_fire_driveby}); - Needs working example. Doesn't seem to do anything. - I marked p2 as targetVehicle as all these shooting related tasks seem to have that in common. - I marked p6 as distanceToShoot as if you think of GTA's Logic with the native SET_VEHICLE_SHOOT natives, it won't shoot till it gets within a certain distance of the target. - I marked p7 as pedAccuracy as it seems it's mostly 100 (Completely Accurate), 75, 90, etc. Although this could be the ammo count within the gun, but I highly doubt it. I will change this comment once I find out if it's ammo count or not. - - - - - speed 1.0 = walk, 2.0 = run - p5 1 = normal, 3 = teleport to vehicle, 16 = teleport directly into vehicle - p6 is always 0 - Usage of seat - -1 = driver - 0 = passenger - 1 = left back seat - 2 = right back seat - 3 = outside left - 4 = outside right - - - - - MulleKD19: Adds a new point to the current point route. Call TASK_FLUSH_ROUTE before the first call to this. Call TASK_FOLLOW_POINT_ROUTE to make the Ped go the route. - A maximum of 8 points can be added. - - - - - MulleKD19: Clears the current point route. Call this before TASK_EXTEND_ROUTE and TASK_FOLLOW_POINT_ROUTE. - - - - - If no timeout, set timeout to -1. - - - - - MulleKD19: Makes the ped go on the created point route. - ped: The ped to give the task to. - speed: The speed to move at in m/s. - int: Unknown. Can be 0, 1, 2 or 3. - Example: - TASK_FLUSH_ROUTE(); - TASK_EXTEND_ROUTE(0f, 0f, 70f); - TASK_EXTEND_ROUTE(10f, 0f, 70f); - TASK_EXTEND_ROUTE(10f, 10f, 70f); - TASK_FOLLOW_POINT_ROUTE(GET_PLAYER_PED(), 1f, 0); - - - - - p6 always -1 - p7 always 10.0 - p8 always 1 - - - - - p2 always false - [30/03/2017] ins1de : - See dev-c.com/nativedb/func/info/f28965d04f570dca - - - - - Jenkins of this native is 0x4293601F. This is the actual name. - - - - - The ped will walk or run towards goToLocation, aiming towards goToLocation or focusLocation (depending on the aimingFlag) and shooting if shootAtEnemies = true to any enemy in his path. - If the ped is closer than noRoadsDistance, the ped will ignore pathing/navmesh and go towards goToLocation directly. This could cause the ped to get stuck behind tall walls if the goToLocation is on the other side. To avoid this, use 0.0f and the ped will always use pathing/navmesh to reach his destination. - If the speed is set to 0.0f, the ped will just stand there while aiming, if set to 1.0f he will walk while aiming, 2.0f will run while aiming. - The ped will stop aiming when he is closer than distanceToStopAt to goToLocation. - I still can't figure out what unkTrue is used for. I don't notice any difference if I set it to false but in the decompiled scripts is always true. - I think that unkFlag, like the driving styles, could be a flag that "work as a list of 32 bits converted to a decimal integer. Each bit acts as a flag, and enables or disables a function". What leads me to this conclusion is the fact that in the decompiled scripts, unkFlag takes values like: 0, 1, 5 (101 in binary) and 4097 (4096 + 1 or 1000000000001 in binary). For now, I don't know what behavior enable or disable this possible flag so I leave it at 0. - Note: After some testing, using unkFlag = 16 (0x10) enables the use of sidewalks while moving towards goToLocation. - The aimingFlag takes 2 values: 0 to aim at the focusLocation, 1 to aim at where the ped is heading (goToLocation). - Example: - enum AimFlag - { - AimAtFocusLocation, - AimAtGoToLocation - }; - Vector3 goToLocation1 = { 996.2867f, 0, -2143.044f, 0, 28.4763f, 0 }; // remember the padding. - Vector3 goToLocation2 = { 990.2867f, 0, -2140.044f, 0, 28.4763f, 0 }; // remember the padding. - Vector3 focusLocation = { 994.3478f, 0, -2136.118f, 0, 29.2463f, 0 }; // the coord z should be a little higher, around +1.0f to avoid aiming at the ground - // 1st example - AI::TASK_GO_TO_COORD_AND_AIM_AT_HATED_ENTITIES_NEAR_COORD(pedHandle, goToLocation1.x, goToLocation1.y, goToLocation1.z, focusLocation.x, focusLocation.y, focusLocation.z, 2.0f -- [[run]] , true -- [[shoot]] , 3.0f -- [[stop at]] , 0.0f -- [[noRoadsDistance]] , true -- [[always true]] , 0 -- [[possible flag]] , AimFlag::AimAtGoToLocation, -957453492 -- [[FullAuto pattern]] ); - // 2nd example - AI::TASK_GO_TO_COORD_AND_AIM_AT_HATED_ENTITIES_NEAR_COORD(pedHandle, goToLocation2.x, goToLocation2.y, goToLocation2.z, focusLocation.x, focusLocation.y, focusLocation.z, 1.0f -- [[walk]] , false -- [[don't shoot]] , 3.0f -- [[stop at]] , 0.0f -- [[noRoadsDistance]] , true -- [[always true]] , 0 -- [[possible flag]] , AimFlag::AimAtFocusLocation, -957453492 -- [[FullAuto pattern]] ); - 1st example: The ped (pedhandle) will run towards goToLocation1. While running and aiming towards goToLocation1, the ped will shoot on sight to any enemy in his path, using "FullAuto" firing pattern. The ped will stop once he is closer than distanceToStopAt to goToLocation1. - 2nd example: The ped will walk towards goToLocation2. This time, while walking towards goToLocation2 and aiming at focusLocation, the ped will point his weapon on sight to any enemy in his path without shooting. The ped will stop once he is closer than distanceToStopAt to goToLocation2. - - - - - example from fm_mission_controller - AI::TASK_GO_TO_COORD_ANY_MEANS(l_649, sub_f7e86(-1, 0), 1.0, 0, 0, 786603, 0xbf800000); - - - - - movement_speed: mostly 2f, but also 1/1.2f, etc. - p8: always false - p9: 2f - p10: 0.5f - p11: true - p12: 0 / 512 / 513, etc. - p13: 0 - firing_pattern: ${firing_pattern_full_auto}, 0xC6EE6B4C - - - - - The entity will move towards the target until time is over (duration) or get in target's range (distance). p5 and p6 are unknown, but you could leave p5 = 1073741824 or 100 or even 0 (didn't see any difference but on the decompiled scripts, they use 1073741824 mostly) and p6 = 0 - Note: I've only tested it on entity -> ped and target -> vehicle. It could work differently on other entities, didn't try it yet. - Example: AI::TASK_GO_TO_ENTITY(pedHandle, vehicleHandle, 5000, 4.0, 100, 1073741824, 0) - Ped will run towards the vehicle for 5 seconds and stop when time is over or when he gets 4 meters(?) around the vehicle (with duration = -1, the task duration will be ignored). - - - - - shootatEntity: - If true, peds will shoot at Entity till it is dead. - If false, peds will just walk till they reach the entity and will cease shooting. - - - - - eg - AI::TASK_GOTO_ENTITY_AIMING(v_2, PLAYER::PLAYER_PED_ID(), 5.0, 25.0); - ped = Ped you want to perform this task. - target = the Entity they should aim at. - distanceToStopAt = distance from the target, where the ped should stop to aim. - StartAimingDist = distance where the ped should start to aim. - - - - - From re_prisonvanbreak: - AI::TASK_GUARD_CURRENT_POSITION(l_DD, 35.0, 35.0, 1); - - - - - p0 - Guessing PedID - p1, p2, p3 - XYZ? - p4 - ??? - p5 - Maybe the size of sphere from XYZ? - p6 - ??? - p7, p8, p9 - XYZ again? - p10 - Maybe the size of sphere from second XYZ? - - - - - In the scripts, p3 was always -1. - p3 seems to be duration or timeout of turn animation. - Also facingPed can be 0 or -1 so ped will just raise hands up. - - - - - Ped pilot should be in a heli. - EntityToFollow can be a vehicle or Ped. - x,y,z appear to be how close to the EntityToFollow the heli should be. Scripts use 0.0, 0.0, 80.0. Then the heli tries to position itself 80 units above the EntityToFollow. If you reduce it to -5.0, it tries to go below (if the EntityToFollow is a heli or plane) - NOTE: If the pilot finds enemies, it will engage them, then remain there idle, not continuing to chase the Entity given. - - - - - EDITED (8/16/2017) - DESCRIPTION: - Allow a ped to fly to a specific destination. - USAGE: - -- REQUIRED -- - • pilot = The ped flying the aircraft. - • aircraft = The aircraft the pilot is flying. - -- OPTIONAL -- [atleast 1 must be assigned] - • targetVehicle = The vehicle the pilot will target. - • targetPed = The ped the pilot will target. - • destinationX, destinationY, destinationZ = The location the pilot will target. - -- LOGIC -- - • missionFlag = The type of mission. - • maxSpeed = The speed in mph that the pilot will limit his/her self to while flying. - • landingRadius = The distance from the destination that the pilot must be to land. - • targetHeading = The heading that the pilot will try to achieve while flying. - • unk1, unk2 = Set to -1 and it will be okay. - • unk3 = I'm almost sure this is a vehicle record/waypoint recording hash. A value of -1 is for none. Maybe it's a float? Idk. - • landingFlags = Bit flags used for landing. All I know is: - 0 = Hover over the destination. - 32 = Land on destination. - 1024 = Erratic, crash into nearby obstacles. - 4096 = Rushed movement + Hover over destination - Known Mission Types: - 4 = FlyToCoord - 8 = FleeFromPed - 9 = CircleAroundTarget - 10 = CopyTargetHeading - 20 = LandNearPed - 21 = Crash - Example C#: - Function.Call(Hash.TASK_HELI_MISSION, driver, heli, 0, 0, position.X, position.Y, position.Z, 4, 50.0, 10.0, (position - heli.Position).ToHeading(), -1, -1, -1, 32); - OLD USAGE: pastebin.com/ndkSjaaW - - - - - Definition is wrong. This has 4 parameters (Not sure when they were added. v350 has 2, v678 has 4). - v350: Ped ped, bool unused - v678: Ped ped, bool unused, bool flag1, bool flag2 - flag1 = super jump, flag2 = do nothing if flag1 is false and doubles super jump height if flag1 is true. - - - - - Flags from decompiled scripts: - 0 = normal exit and closes door. - 1 = normal exit and closes door. - 16 = teleports outside, door kept closed. - 64 = normal exit and closes door, maybe a bit slower animation than 0. - 256 = normal exit but does not close the door. - 4160 = ped is throwing himself out, even when the vehicle is still. - 262144 = ped moves to passenger seat first, then exits normally - Others to be tried out: 320, 512, 131072. - - - - - p5 = 0, p6 = 2 - - - - - param3: duration in ms, use -1 to look forever - param4: using 2048 is fine - param5: using 3 is fine - - - - - Example: - AI::_2D537BA194896636(PLAYER::PLAYER_PED_ID(), "arm_wrestling_sweep_paired_a_rev3", 0.0, 1, "mini@arm_wrestling", 0); - - - - - Example: - AI::_2D537BA194896636(PLAYER::PLAYER_PED_ID(), "arm_wrestling_sweep_paired_a_rev3", 0.0, 1, "mini@arm_wrestling", 0); - - - - - Example: - AI::_D5B35BEA41919ACB(PLAYER::PLAYER_PED_ID(), "minigame_tattoo_michael_parts", 324.13, 181.29, 102.6, 0.0, 0.0, 22.32, 2, 0, 0, 0, 0); - - - - - Example: - AI::_D5B35BEA41919ACB(PLAYER::PLAYER_PED_ID(), "minigame_tattoo_michael_parts", 324.13, 181.29, 102.6, 0.0, 0.0, 22.32, 2, 0, 0, 0, 0); - - - - - This function has a third parameter as well (bool). - Second parameter is unused. - seconds parameter was for jetpack in the early stages of gta and the hard coded code is now removed - - - - - makes ped parachute to coords x y z. Works well with PATHFIND::GET_SAFE_COORD_FOR_PED - - - - - After looking at some scripts the second parameter seems to be an id of some kind. Here are some I found from some R* scripts: - "miss_Tower_01" (this went from 01 - 10) - "miss_Ass0" (0, 4, 6, 3) - "MISS_PATROL_8" - I think they're patrol routes, but I'm not sure. And I believe the 3rd parameter is a BOOL, but I can't confirm other than only seeing 0 and 1 being passed. - As far as I can see the patrol routes names such as "miss_Ass0" have been defined earlier in the scripts. This leads me to believe we can defined our own new patrol routes by following the same approach. - From the scripts - AI::OPEN_PATROL_ROUTE("miss_Ass0"); - AI::ADD_PATROL_ROUTE_NODE(0, "WORLD_HUMAN_GUARD_STAND", l_738[0 -- [[3]] ], -139.4076690673828, -993.4732055664062, 26.2754, GAMEPLAY::GET_RANDOM_INT_IN_RANGE(5000, 10000)); - AI::ADD_PATROL_ROUTE_NODE(1, "WORLD_HUMAN_GUARD_STAND", l_738[1 -- [[3]] ], -116.1391830444336, -987.4984130859375, 26.38541030883789, GAMEPLAY::GET_RANDOM_INT_IN_RANGE(5000, 10000)); - AI::ADD_PATROL_ROUTE_NODE(2, "WORLD_HUMAN_GUARD_STAND", l_738[2 -- [[3]] ], -128.46847534179688, -979.0340576171875, 26.2754, GAMEPLAY::GET_RANDOM_INT_IN_RANGE(5000, 10000)); - AI::ADD_PATROL_ROUTE_LINK(0, 1); - AI::ADD_PATROL_ROUTE_LINK(1, 2); - AI::ADD_PATROL_ROUTE_LINK(2, 0); - AI::CLOSE_PATROL_ROUTE(); - AI::CREATE_PATROL_ROUTE(); - - - - - Stand still (?) - - - - - Function.Call(Hash.TASK_PLANE_LAND, pilot, selectedAirplane, runwayStartPoint.X, runwayStartPoint.Y, runwayStartPoint.Z, runwayEndPoint.X, runwayEndPoint.Y, runwayEndPoint.Z); - - - - - EDITED (7/13/2017) - NOTE: If you want air combat, AI::TASK_COMBAT_PED (while your pilot is in an aircraft) also does the same thing as this native. - DESCRIPTION: - Ever wish your buddy could shoot down one of your enemies for you? Ever wanted an auto-pilot? Well look no further! This is the native for you! (Ped intelligence may vary) - USAGE: - -- REQUIRED -- - • pilot = The ped flying the aircraft. - • aircraft = The aircraft the pilot is flying - -- OPTIONAL -- [atleast 1 must be assigned] - • targetVehicle = The vehicle the pilot will target. - • targetPed = The ped the pilot will target. - • destinationX, destinationY, destinationZ = The location the pilot will target. - -- LOGIC -- - • missionFlag = The type of mission. pastebin.com/R8x73dbv - • angularDrag = The higher the value, the slower the plane will rotate. Value ranges from 0 - Infinity. - • unk = Set to 0, and you'll be fine. - • targetHeading = The target angle (from world space north) that the pilot will try to acheive before executing an attack/landing. - • maxZ = Maximum Z coordinate height for flying. - • minZ = Minimum Z coordinate height for flying. - Z: 2,700 is the default max height a pilot will be able to fly. Anything greater and he will fly downward until reaching 2,700 again. - Mission Types (incase you don't like links..): - 0 = None - 1 = Unk - 2 = CTaskVehicleRam - 3 = CTaskVehicleBlock - 4 = CTaskVehicleGoToPlane - 5 = CTaskVehicleStop - 6 = CTaskVehicleAttack - 7 = CTaskVehicleFollow - 8 = CTaskVehicleFleeAirborne - 9 = CTaskVehicleCircle - 10 = CTaskVehicleEscort - 15 = CTaskVehicleFollowRecording - 16 = CTaskVehiclePoliceBehaviour - 17 = CTaskVehicleCrash - Example C#: - Function.Call(Hash.TASK_PLANE_MISSION, pilot, vehicle, 0, Game.Player.Character, 0, 0, 0, 6, 0f, 0f, 0f, 2500.0f, -1500f); - Example C++ - AI::TASK_PLANE_MISSION(pilot, vehicle, 0, PLAYER::GET_PLAYER_PED(PLAYER::GET_PLAYER_INDEX()), 0, 0, 0, 6, 0.0, 0.0, 0.0, 2500.0, -1500.0); - [DEPRECATED] EXAMPLE USAGE: - pastebin.com/gx7Finsk - - - - - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - float blendInSpeed > normal speed is 8.0f - ---------------------- - float blendOutSpeed > normal speed is 8.0f - ---------------------- - int duration: time in millisecond - ---------------------- - -1 _ _ _ _ _ _ _> Default (see flag) - 0 _ _ _ _ _ _ _ > Not play at all - Small value _ _ > Slow down animation speed - Other _ _ _ _ _ > freeze player control until specific time (ms) has - _ _ _ _ _ _ _ _ _ passed. (No effect if flag is set to be - _ _ _ _ _ _ _ _ _ controllable.) - int flag: - ---------------------- - enum eAnimationFlags - { - ANIM_FLAG_NORMAL = 0, - ANIM_FLAG_REPEAT = 1, - ANIM_FLAG_STOP_LAST_FRAME = 2, - ANIM_FLAG_UPPERBODY = 16, - ANIM_FLAG_ENABLE_PLAYER_CONTROL = 32, - ANIM_FLAG_CANCELABLE = 120, - }; - Odd number : loop infinitely - Even number : Freeze at last frame - Multiple of 4: Freeze at last frame but controllable - 01 to 15 > Full body - 10 to 31 > Upper body - 32 to 47 > Full body > Controllable - 48 to 63 > Upper body > Controllable - ... - 001 to 255 > Normal - 256 to 511 > Garbled - ... - playbackRate: - values are between 0.0 and 1.0 - lockX: - 0 in most cases 1 for rcmepsilonism8 and rcmpaparazzo_3 - > 1 for mini@sprunk - lockY: - 0 in most cases - 1 for missfam5_yoga, missfra1mcs_2_crew_react - lockZ: - 0 for single player - Can be 1 but only for MP - - - - - It's similar to the one above, except the first 6 floats let you specify the initial position and rotation of the task. (Ped gets teleported to the position). animTime is a float from 0.0 -> 1.0, lets you start an animation from given point. The rest as in AI::TASK_PLAY_ANIM. - Rotation information : rotX and rotY don't seem to have any effect, only rotZ works. - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - Example from the scripts: - AI::TASK_PLAY_PHONE_GESTURE_ANIMATION(PLAYER::PLAYER_PED_ID(), v_3, v_2, v_4, 0.25, 0.25, 0, 0); - ========================================================= - ^^ No offense, but Idk how that would really help anyone. - As for the animDict & animation, they're both store in a global in all 5 scripts. So if anyone would be so kind as to read that global and comment what strings they use. Thanks. - Known boneMaskTypes' - "BONEMASK_HEADONLY" - "BONEMASK_HEAD_NECK_AND_ARMS" - "BONEMASK_HEAD_NECK_AND_L_ARM" - "BONEMASK_HEAD_NECK_AND_R_ARM" - p4 known args - 0.0f, 0.5f, 0.25f - p5 known args - 0.0f, 0.25f - p6 known args - 1 if a global if check is passed. - p7 known args - 1 if a global if check is passed. - The values found above, I found within the 5 scripts this is ever called in. (fmmc_launcher, fm_deathmatch_controller, fm_impromptu_dm_controller, fm_mission_controller, and freemode). - ========================================================= - - - - - from armenian3.c4 - AI::TASK_PUT_PED_DIRECTLY_INTO_MELEE(PlayerPed, armenianPed, 0.0, -1.0, 0.0, 0); - - - - - Only appears twice in the scripts. - AI::TASK_RAPPEL_FROM_HELI(PLAYER::PLAYER_PED_ID(), 0x41200000); - AI::TASK_RAPPEL_FROM_HELI(a_0, 0x41200000); - Fixed, definitely not a float and since it's such a big number obviously not a bool. All though note when I thought it was a bool and set it to 1 it seemed to work that same as int 0x41200000. - 0x41200000 = 10.0 as float. - Not all helicopters support rappelling. - - - - - The 2nd param (unused) is not implemented. - ----------------------------------------------------------------------- - The only occurrence I found in a R* script ("assassin_construction.ysc.c4"): - if (((v_3 < v_4) && (AI::GET_SCRIPT_TASK_STATUS(PLAYER::PLAYER_PED_ID(), 0x6a67a5cc) != 1)) && (v_5 > v_3)) { - AI::TASK_RELOAD_WEAPON(PLAYER::PLAYER_PED_ID(), 1); - } - - - - - From fm_mission_controller.c: - reserve_network_mission_objects(get_num_reserved_mission_objects(0) + 1); - vVar28 = {0.094f, 0.02f, -0.005f}; - vVar29 = {-92.24f, 63.64f, 150.24f}; - func_253(&uVar30, joaat("prop_ld_case_01"), Global_1592429.imm_34757[iParam1 <268>], 1, 1, 0, 1); - set_entity_lod_dist(net_to_ent(uVar30), 500); - attach_entity_to_entity(net_to_ent(uVar30), iParam0, get_ped_bone_index(iParam0, 28422), vVar28, vVar29, 1, 0, 0, 0, 2, 1); - Var31.imm_4 = 1065353216; - Var31.imm_5 = 1065353216; - Var31.imm_9 = 1065353216; - Var31.imm_10 = 1065353216; - Var31.imm_14 = 1065353216; - Var31.imm_15 = 1065353216; - Var31.imm_17 = 1040187392; - Var31.imm_18 = 1040187392; - Var31.imm_19 = -1; - Var32.imm_4 = 1065353216; - Var32.imm_5 = 1065353216; - Var32.imm_9 = 1065353216; - Var32.imm_10 = 1065353216; - Var32.imm_14 = 1065353216; - Var32.imm_15 = 1065353216; - Var32.imm_17 = 1040187392; - Var32.imm_18 = 1040187392; - Var32.imm_19 = -1; - Var31 = 1; - Var31.imm_1 = "weapons@misc@jerrycan@mp_male"; - Var31.imm_2 = "idle"; - Var31.imm_20 = 1048633; - Var31.imm_4 = 0.5f; - Var31.imm_16 = get_hash_key("BONEMASK_ARMONLY_R"); - task_scripted_animation(iParam0, &Var31, &Var32, &Var32, 0f, 0.25f); - set_model_as_no_longer_needed(joaat("prop_ld_case_01")); - remove_anim_dict("anim@heists@biolab@"); - - - - - from michael2: - AI::TASK_SEEK_COVER_TO_COORDS(ped, 967.5164794921875, -2121.603515625, 30.479299545288086, 978.94677734375, -2125.84130859375, 29.4752, -1, 1); - appears to be shorter variation - from michael3: - AI::TASK_SEEK_COVER_TO_COORDS(ped, -2231.011474609375, 263.6326599121094, 173.60195922851562, -1, 0); - - - - - I cant believe I have to define this, this is one of the best natives. - It makes the ped ignore basically all shocking events around it. Occasionally the ped may comment or gesture, but other than that they just continue their daily activities. This includes shooting and wounding the ped. And - most importantly - they do not flee. - Since it is a task, every time the native is called the ped will stop for a moment. - - - - - p1 is always GET_HASH_KEY("empty") in scripts, for the rare times this is used - - - - - //this part of the code is to determine at which entity the player is aiming, for example if you want to create a mod where you give orders to peds - Entity aimedentity; - Player player = PLAYER::PLAYER_ID(); - PLAYER::_GET_AIMED_ENTITY(player, &aimedentity); - //bg is an array of peds - AI::TASK_SHOOT_AT_ENTITY(bg[i], aimedentity, 5000, GAMEPLAY::GET_HASH_KEY("FIRING_PATTERN_FULL_AUTO")); - in practical usage, getting the entity the player is aiming at and then task the peds to shoot at the entity, at a button press event would be better. - - - - - Makes the specified ped shuffle to the next vehicle seat. - The ped MUST be in a vehicle and the vehicle parameter MUST be the ped's current vehicle. - - - - - Makes the specified ped flee the specified distance from the specified position. - - - - - Makes a ped run away from another ped (fleeTarget). - distance = ped will flee this distance. - fleeTime = ped will flee for this amount of time, set to "-1" to flee forever - - - - - scenarioName example: "WORLD_HUMAN_GUARD_STAND" - - - - - Makes the specified ped stand still for (time) milliseconds. - - - - - List of scenarioNames: pastebin.com/6mrYTdQv - Also a few more listed at AI::TASK_START_SCENARIO_IN_PLACE just above. - --------------- - The first parameter in every scenario has always been a Ped of some sort. The second like TASK_START_SCENARIO_IN_PLACE is the name of the scenario. - The next 4 parameters were harder to decipher. After viewing "hairdo_shop_mp.ysc.c4", and being confused from seeing the case in other scripts, they passed the first three of the arguments as one array from a function, and it looked like it was obviously x, y, and z. - I haven't seen the sixth parameter go to or over 360, making me believe that it is rotation, but I really can't confirm anything. - I have no idea what the last 3 parameters are, but I'll try to find out. - -going on the last 3 parameters, they appear to always be "0, 0, 1" - p6 -1 also used in scrips - p7 used for sitting scenarios - p8 teleports ped to position - - - - - Plays a scenario on a Ped at their current location. - unkDelay - Usually 0 or -1, doesn't seem to have any effect. Might be a delay between sequences. - playEnterAnim - Plays the "Enter" anim if true, otherwise plays the "Exit" anim. Scenarios that don't have any "Enter" anims won't play if this is set to true. - ---- - From "am_hold_up.ysc.c4" at line 339: - AI::TASK_START_SCENARIO_IN_PLACE(NETWORK::NET_TO_PED(l_8D._f4), sub_adf(), 0, 1); - I'm unsure of what the last two parameters are, however sub_adf() randomly returns 1 of 3 scenarios, those being: - WORLD_HUMAN_SMOKING - WORLD_HUMAN_HANG_OUT_STREET - WORLD_HUMAN_STAND_MOBILE - This makes sense, as these are what I commonly see when going by a liquor store. - ------------------------- - List of scenarioNames: pastebin.com/6mrYTdQv - (^ Thank you so fucking much for this) - Also these: - WORLD_FISH_FLEE - DRIVE - WORLD_HUMAN_HIKER - WORLD_VEHICLE_ATTRACTOR - WORLD_VEHICLE_BICYCLE_MOUNTAIN - WORLD_VEHICLE_BIKE_OFF_ROAD_RACE - WORLD_VEHICLE_BIKER - WORLD_VEHICLE_CONSTRUCTION_PASSENGERS - WORLD_VEHICLE_CONSTRUCTION_SOLO - WORLD_VEHICLE_DRIVE_PASSENGERS - WORLD_VEHICLE_DRIVE_SOLO - WORLD_VEHICLE_EMPTY - WORLD_VEHICLE_PARK_PARALLEL - WORLD_VEHICLE_PARK_PERPENDICULAR_NOSE_IN - WORLD_VEHICLE_POLICE_BIKE - WORLD_VEHICLE_POLICE_CAR - WORLD_VEHICLE_POLICE_NEXT_TO_CAR - WORLD_VEHICLE_SALTON_DIRT_BIKE - WORLD_VEHICLE_TRUCK_LOGS - - - - - Makes the ped run to take cover - - - - - Stealth kill action name hashes: - stealth kills can be found here: Grand Theft Auto V\common.rpf\data\action\stealth_kills.meta - ... - { - "ACT_stealth_kill_a", - "ACT_stealth_kill_weapon", - "ACT_stealth_kill_b", - "ACT_stealth_kill_c", - "ACT_stealth_kill_d", - "ACT_stealth_kill_a_gardener" - } - Only known script using this native: fbi4_prep2 - EXAMPLE: - ai::task_stealth_kill(iParam1, Local_252, gameplay::get_hash_key("AR_stealth_kill_a"), 1f, 0);ai::task_stealth_kill(iParam1, Local_252, gameplay::get_hash_key("AR_stealth_kill_knife"), 1f, 0); - Also it may be important to note, that each time this task is called, it's followed by AI::CLEAR_PED_TASKS on the target - - - - - TODO: add hash from x360 - ^^^ - I got you, x360 Hash: 0x5A32D4B4. - Note: Whoever named this I just compared it and the hash matches, it was the correct name thanks. - Note: Alexander Blade, needs to fix this site or his code one, as when we do find the right name the server throws an error saying the name is already in use. AB is a legend coder, so I'm sure this is a simple fix for him. - - - - - This function is called on peds in vehicles. - anim: animation name - p2, p3, p4: "sweep_low", "sweep_med" or "sweep_high" - p5: no idea what it does but is usually -1 - - - - - AI::TASK_SYNCHRONIZED_SCENE(ped, scene, "creatures@rottweiler@in_vehicle@std_car", "get_in", 1000.0, -8.0, 4, 0, 0x447a0000, 0); - Animations List : www.ls-multiplayer.com/dev/index.php?section=3 - - - - - In every case of this native, I've only seen the first parameter passed as 0, although I believe it's a Ped after seeing tasks around it using 0. That's because it's used in a Sequence Task. - The last 3 parameters are definitely coordinates after seeing them passed in other scripts, and even being used straight from the player's coordinates. - --- - It seems that - in the decompiled scripts - this native was used on a ped who was in a vehicle to throw a projectile out the window at the player. This is something any ped will naturally do if they have a throwable and they are doing driveby-combat (although not very accurately). - It is possible, however, that this is how SWAT throws smoke grenades at the player when in cover. - ---------------------------------------------------- - The first comment is right it definately is the ped as if you look in script finale_heist2b.c line 59628 in Xbox Scripts atleast you will see task_throw_projectile and the first param is Local_559[2 <14>] if you look above it a little bit line 59622 give_weapon_to_ped uses the same exact param Local_559[2 <14>] and we all know the first param of that native is ped. So it guaranteed has to be ped. 0 just may mean to use your ped by default for some reason. - - - - - used in sequence task - both parameters seems to be always 0 - - - - - duration in milliseconds - - - - - duration: the amount of time in milliseconds to do the task. -1 will keep the task going until either another task is applied, or CLEAR_ALL_TASKS() is called with the ped - - - - - Actually has 3 params, not 2. - p0: Ped - p1: int (or bool?) - p2: int - - - - - Updated variables - An alternative to AI::TASK_USE_NEAREST_SCENARIO_TO_COORD_WARP. Makes the ped walk to the scenario instead. - - - - - chases targetEnt fast and aggressively - -- - Makes ped (needs to be in vehicle) chase targetEnt. - - - - - info about driving modes: HTTP://gtaforums.com/topic/822314-guide-driving-styles/ - --------------------------------------------------------------- - Passing P6 value as floating value didn't throw any errors, though unsure what is it exactly, looks like radius or something. - P10 though, it is mentioned as float, however, I used bool and set it to true, that too worked. - Here the e.g. code I used - Function.Call(Hash.TASK_VEHICLE_DRIVE_TO_COORD, Ped, Vehicle, Cor X, Cor Y, Cor Z, 30f, 1f, Vehicle.GetHashCode(), 16777216, 1f, true); - - - - - Makes a ped follow the targetVehicle with <minDistance> in between. - note: minDistance is ignored if drivingstyle is avoiding traffic, but Rushed is fine. - Mode: The mode defines the relative position to the targetVehicle. The ped will try to position its vehicle there. - -1 = behind - 0 = ahead - 1 = left - 2 = right - 3 = back left - 4 = back right - if the target is closer than noRoadsDistance, the driver will ignore pathing/roads and follow you directly. - Driving Styles guide: gtaforums.com/topic/822314-guide-driving-styles/ - - - - - Makes a ped in a vehicle follow an entity (ped, vehicle, etc.) - Driving Styles guide: gtaforums.com/topic/822314-guide-driving-styles/ - Console Hash: 0xA8B917D7 - AI::_TASK_VEHICLE_FOLLOW(l_244[3 -- [[1]] ], l_268[3 -- [[1]] ], l_278, 40.0, 262144, 10); - What is this known as in the decompiled scripts ffs. I need more examples. I've searched in all scripts for keywords suchas, - TASK_VEHICLE_FOLLOW, FC545A9F0626E3B6, 0xFC545A9F0626E3B6, all the parameters in the above example even just search the last few params '40.0, 262144, 10' and couldnt find where this native is used in scripts at all unless whoever decompiled the scripts gave it a whack a.. name. - - - - - task_vehicle_follow_waypoint_recording(Ped p0, Vehicle p1, string p2, int p3, int p4, int p5, int p6, float.x p7, float.Y p8, float.Z p9, bool p10, int p11) - p2 = Waypoint recording string (found in update\update.rpf\x64\levels\gta5\waypointrec.rpf - p3 = 786468 - p4 = 0 - p5 = 16 - p6 = -1 (angle?) - p7/8/9 = usually v3.zero - p10 = bool (repeat?) - p11 = 1073741824 - - - - - Differs from TASK_VEHICLE_DRIVE_TO_COORDS in that it will pick the shortest possible road route without taking one-way streets and other "road laws" into consideration. - WARNING: - A behaviorFlag value of 0 will result in a clunky, stupid driver! - Recommended settings: - speed = 30.0f, - behaviorFlag = 156, - stoppingRange = 5.0f; - If you simply want to have your driver move to a fixed location, call it only once, or, when necessary in the event of interruption. - If using this to continually follow a Ped who is on foot: You will need to run this in a tick loop. Call it in with the Ped's updated coordinates every 20 ticks or so and you will have one hell of a smart, fast-reacting NPC driver -- provided he doesn't get stuck. If your update frequency is too fast, the Ped may not have enough time to figure his way out of being stuck, and thus, remain stuck. One way around this would be to implement an "anti-stuck" mechanism, which allows the driver to realize he's stuck, temporarily pause the tick, unstuck, then resume the tick. - EDIT: This is being discussed in more detail at http://gtaforums.com/topic/818504-any-idea-on-how-to-make-peds-clever-and-insanely-fast-c/ - - - - - pilot, vehicle and altitude are rather self-explanatory. - p4: is unused variable in the function. - entityToFollow: you can provide a Vehicle entity or a Ped entity, the heli will protect them. - 'targetSpeed': The pilot will dip the nose AS MUCH AS POSSIBLE so as to reach this value AS FAST AS POSSIBLE. As such, you'll want to modulate it as opposed to calling it via a hard-wired, constant #. - 'radius' isn't just "stop within radius of X of target" like with ground vehicles. In this case, the pilot will fly an entire circle around 'radius' and continue to do so. - NOT CONFIRMED: p7 appears to be a FlyingStyle enum. Still investigating it as of this writing, but playing around with values here appears to result in different -behavior- as opposed to offsetting coordinates, altitude, target speed, etc. - NOTE: If the pilot finds enemies, it will engage them until it kills them, but will return to protect the ped/vehicle given shortly thereafter. - - - - - Example from fm_mission_controller.c4: - AI::TASK_VEHICLE_MISSION_COORS_TARGET(l_65E1, l_65E2, 324.84588623046875, 325.09619140625, 104.3525, 4, 15.0, 802987, 5.0, 5.0, 0); - - - - - Modes: - 8= flees - 1=drives around the ped - 4=drives and stops near - 7=follows - 10=follows to the left - 11=follows to the right - 12 = follows behind - 13=follows ahead - 14=follows, stop when near - - - - - Modes: - 0 - ignore heading - 1 - park forward - 2 - park backwards - Depending on the angle of approach, the vehicle can park at the specified heading or at its exact opposite (-180) angle. - Radius seems to define how close the vehicle has to be -after parking- to the position for this task considered completed. If the value is too small, the vehicle will try to park again until it's exactly where it should be. 20.0 Works well but lower values don't, like the radius is measured in centimeters or something. - - - - - Most probably plays a specific animation on vehicle. For example getting chop out of van etc... - Here's how its used - - AI::TASK_VEHICLE_PLAY_ANIM(l_325, "rcmnigel1b", "idle_speedo"); - AI::TASK_VEHICLE_PLAY_ANIM(l_556[0 -- [[1]] ], "missfra0_chop_drhome", "InCar_GetOutofBack_Speedo"); - FYI : Speedo is the name of van in which chop was put in the mission. - Animations list : www.los-santos-multiplayer.com/dev.airdancer?cxt=anim - - - - - '1 - '3 - brake + reverse - '4 - turn left 90 + braking - '5 - turn right 90 + braking - '6 - brake strong (handbrake?) until time ends - '7 - turn left + accelerate - '7 - turn right + accelerate - '9 - weak acceleration - '10 - turn left + restore wheel pos to center in the end - '11 - turn right + restore wheel pos to center in the end - '13 - turn left + go reverse - '14 - turn left + go reverse - '16 - crash the game after like 2 seconds :) - '17 - keep actual state, game crashed after few tries - '18 - game crash - '19 - strong brake + turn left/right - '20 - weak brake + turn left then turn right - '21 - weak brake + turn right then turn left - '22 - brake + reverse - '23 - accelerate fast - '24 - '25 - brake turning left then when almost stopping it turns left more - '26 - brake turning right then when almost stopping it turns right more - '27 - brake until car stop or until time ends - '28 - brake + strong reverse acceleration - '30 - performs a burnout (brake until stop + brake and accelerate) - '31 - accelerate + handbrake - '32 - accelerate very strong - Seems to be this: - Works on NPCs, but overrides their current task. If inside a task sequence (and not being the last task), "time" will work, otherwise the task will be performed forever until tasked with something else - - - - - Makes ped walk around the area. - set p1 to 10.0f and p2 to 10 if you want the ped to walk anywhere without a duration. - - - - - Seat Numbers - ------------------------------- - Driver = -1 - Any = -2 - Left-Rear = 1 - Right-Front = 0 - Right-Rear = 2 - Extra seats = 3-14(This may differ from vehicle type e.g. Firetruck Rear Stand, Ambulance Rear) - - - - - EX: Function.Call(Ped1, Ped2, Time, 0); - The last parameter is always 0 for some reason I do not know. The first parameter is the pedestrian who will writhe to the pedestrian in the other parameter. The third paremeter is how long until the Writhe task ends. When the task ends, the ped will die. If set to -1, he will not die automatically, and the task will continue until something causes it to end. This can be being touched by an entity, being shot, explosion, going into ragdoll, having task cleared. Anything that ends the current task will kill the ped at this point. - MulleDK19: Third parameter does not appear to be time. The last parameter is not implemented (It's not used, regardless of value). - - - - - For a full list, see here: pastebin.com/yLNWicUi - - - - - I guess p3 is shape test flags? - - - - - Counts up. Every 1000 is 1 real-time second. Use SETTIMERA(int value) to set the timer (e.g.: SETTIMERA(0)). - - - - - Gets the current frame time. - - - - - Toggles: - UNK17 - Turbo - UNK19 - Tire Smoke - UNK21 - Xenon Headlights - - - - - in script hook .net - Vehicle v = ...; - Function.Call(Hash.TRACK_VEHICLE_VISIBILITY, v.Handle); - - - - - Transforms the `stormberg` to it's "road vehicle" variant. If the vehicle is already in that state then the vehicle transformation audio will still play, but the vehicle won't change at all. - - A vehicle handle. - If true, the vehicle will be instantly transformed, when false the transform animation plays normally. - - - - Transforms the `stormberg` to it's "road vehicle" variant. If the vehicle is already in that state then the vehicle transformation audio will still play, but the vehicle won't change at all. - - A vehicle handle. - If true, the vehicle will be instantly transformed, when false the transform animation plays normally. - - - - Transforms the `stormberg` to it's "water vehicle" variant. If the vehicle is already in that state then the vehicle transformation audio will still play, but the vehicle won't change at all. - - A vehicle handle. - If true, the vehicle will be instantly transformed, when false the transform animation plays normally. - - - - Transforms the `stormberg` to it's "water vehicle" variant. If the vehicle is already in that state then the vehicle transformation audio will still play, but the vehicle won't change at all. - - A vehicle handle. - If true, the vehicle will be instantly transformed, when false the transform animation plays normally. - - - - time in ms to transition from fully blurred to normal - - - - - time in ms to transition to fully blurred screen - - - - - The backing function for TriggerEvent. - - - - - List of all usable event names found in b617d used with this native. Sorted alphabetically and identical names removed: pastebin.com/RzDFmB1W - All music event names found in the b617d scripts: pastebin.com/GnYt0R3P - - - - - yis - eventGroup: 0 = CEventGroupScriptAI, 1 = CEventGroupScriptNetwork - ^^ I'm assuming it's like the rest with this parameter. - - - - - The backing function for TriggerServerEvent. - - - - - Returns the interior ID at the given coords, but only if the unknown variable is set to 0, otherwise it will return 0. - - - - - Returns the interior ID at the given coords, but only if the unknown variable is set to 0, otherwise it will return 0. - - - - - I see this as a native that would of been used back in GTA III when you finally unlocked the bridge to the next island and such. - - - - - Does something similar to INTERIOR::DISABLE_INTERIOR. - You don't fall through the floor but everything is invisible inside and looks the same as when INTERIOR::DISABLE_INTERIOR is used. Peds behaves normally inside. - - - - - gtaforums.com/topic/885580-ped-headshotmugshot-txd/ - - - - - **This native does absolutely nothing, just a nullsub** - ``` - On last-gen this just runs blr and this func is called by several other functions other then the native's table. - ``` - - - - - Returns the current status of the onscreen keyboard, and updates the output. - Status Codes: - 0 - User still editing - 1 - User has finished editing - 2 - User has canceled editing - 3 - Keyboard isn't active - - - - - See SET_PED_HEAD_BLEND_DATA(). - - - - - Formerly known as _LOWER_MAP_PROP_DENSITY and wrongly due to idiots as _ENABLE_MP_DLC_MAPS. - Sets the maximum prop density and changes a loading screen flag from 'loading story mode' to 'loading GTA Online'. Does not touch DLC map data at all. - In fact, I doubt this changes the flag whatsoever, that's the OTHER native idiots use together with this that does so, this one only causes a loading screen to show as it reloads map data. - ------------------------ - While you're going on your rant about other "idiots" can you please supply the name of the "other native" for us "idiots" who'd like to actually learn about loading IPL's? Thank, you. - - - - - Formerly known as _LOWER_MAP_PROP_DENSITY and wrongly due to idiots as _ENABLE_MP_DLC_MAPS. - Sets the maximum prop density and changes a loading screen flag from 'loading story mode' to 'loading GTA Online'. Does not touch DLC map data at all. - In fact, I doubt this changes the flag whatsoever, that's the OTHER native idiots use together with this that does so, this one only causes a loading screen to show as it reloads map data. - ------------------------ - While you're going on your rant about other "idiots" can you please supply the name of the "other native" for us "idiots" who'd like to actually learn about loading IPL's? Thank, you. - - - - - From the b678d decompiled scripts: - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("FM_Mission_Controler"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_apartment_mp"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_indep_fireworks"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_mp_cig_plane"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_mp_creator"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_ornate_heist"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_prison_break_heist_station"); - - - - - From the b678d decompiled scripts: - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("FM_Mission_Controler"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_apartment_mp"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_indep_fireworks"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_mp_cig_plane"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_mp_creator"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_ornate_heist"); - GRAPHICS::_SET_PTFX_ASSET_NEXT_CALL("scr_prison_break_heist_station"); - - - - - hash collision? - - - - - Hash collision - If this is a hash collision, it's a very lucky one. It does seem strangely named but it is used to toggle the mission creator mode. - - - - - hash collision? - - - - - Calculates distance between vectors. - - - - - Calculates distance between vectors but does not perform Sqrt operations. (Its way faster) - - - - - calls from vehicle to net. - - - - - Vehicle has landing gear? - - - - - Vehicle has landing gear? - - - - - parachuteModel = 230075693 - - - - - colorIndex = 0 - - - - - Calculates the magnitude of a vector. - - - - - Calculates the magnitude of a vector but does not perform Sqrt operations. (Its way faster) - - - - - Pauses execution of the current script, please note this behavior is only seen when called from one of the game script files(ysc). In order to wait an asi script use - static void WAIT(DWORD time); - found in main.h - -------------------------------------------------------------------- - It does not actually seem to wait the amount of milliseconds stated like the normal WAIT() command does, but it does seem to make task sequences work more smoothly - System native hashes do not change on gameupdate - - - - - Hash collision - - - - - Returns whether or not the currently executing event was canceled. - - A boolean. - - - - Despite this function's name, it simply returns whether the specified handle is a Ped. - - - - - For a full list, see here: pastebin.com/Tp0XpBMN - For a full list of the points, see here: goo.gl/wIH0vn - - - - - For a full list, see here: pastebin.com/Tp0XpBMN - For a full list of the points, see here: goo.gl/wIH0vn - - - - - For a full list, see here: pastebin.com/Tp0XpBMN - For a full list of the points, see here: goo.gl/wIH0vn - - - - - First parameter was previously an Entity but after further research it is definitely a hash. - - - - - Allow copying memory from one IntPtr to another. Required as the implementation does not provide an appropriate override. - - - - - - - - Empty Shared Field - - - - An uninitialized Color Structure - - - - - Equality Operator - - - - Compares two Color objects. The return value is - based on the equivalence of the A,R,G,B properties - of the two Colors. - - - - - Inequality Operator - - - - Compares two Color objects. The return value is - based on the equivalence of the A,R,G,B properties - of the two colors. - - - - - IsEmpty Property - - - - Indicates transparent black. R,G,B = 0; A=0? - - - - - Equals Method - - - - Checks equivalence of this Color and another object. - - - - - GetHashCode Method - - - - Calculates a hashing value. - - - - - ToString Method - - - - Formats the Color as a string in ARGB notation. - - - - - Empty Shared Field - - - - An uninitialized Point Structure. - - - - - Ceiling Shared Method - - - - Produces a Point structure from a PointF structure by - taking the ceiling of the X and Y properties. - - - - - Round Shared Method - - - - Produces a Point structure from a PointF structure by - rounding the X and Y properties. - - - - - Truncate Shared Method - - - - Produces a Point structure from a PointF structure by - truncating the X and Y properties. - - - - - Addition Operator - - - - Translates a Point using the Width and Height - properties of the given Size. - - - - - Equality Operator - - - - Compares two Point objects. The return value is - based on the equivalence of the X and Y properties - of the two points. - - - - - Inequality Operator - - - - Compares two Point objects. The return value is - based on the equivalence of the X and Y properties - of the two points. - - - - - Subtraction Operator - - - - Translates a Point using the negation of the Width - and Height properties of the given Size. - - - - - Point to Size Conversion - - - - Returns a Size based on the Coordinates of a given - Point. Requires explicit cast. - - - - - Point to PointF Conversion - - - - Creates a PointF based on the coordinates of a given - Point. No explicit cast is required. - - - - - Point Constructor - - - - Creates a Point from an integer which holds the Y - coordinate in the high order 16 bits and the X - coordinate in the low order 16 bits. - - - - - Point Constructor - - - - Creates a Point from a Size value. - - - - - Point Constructor - - - - Creates a Point from a specified x,y coordinate pair. - - - - - IsEmpty Property - - - - Indicates if both X and Y are zero. - - - - - X Property - - - - The X coordinate of the Point. - - - - - Y Property - - - - The Y coordinate of the Point. - - - - - Equals Method - - - - Checks equivalence of this Point and another object. - - - - - GetHashCode Method - - - - Calculates a hashing value. - - - - - Offset Method - - - - Moves the Point a specified distance. - - - - - ToString Method - - - - Formats the Point as a string in coordinate notation. - - - - - Empty Shared Field - - - - An uninitialized PointF Structure. - - - - - Addition Operator - - - - Translates a PointF using the Width and Height - properties of the given Size. - - - - - Equality Operator - - - - Compares two PointF objects. The return value is - based on the equivalence of the X and Y properties - of the two points. - - - - - Inequality Operator - - - - Compares two PointF objects. The return value is - based on the equivalence of the X and Y properties - of the two points. - - - - - Subtraction Operator - - - - Translates a PointF using the negation of the Width - and Height properties of the given Size. - - - - - PointF Constructor - - - - Creates a PointF from a specified x,y coordinate pair. - - - - - IsEmpty Property - - - - Indicates if both X and Y are zero. - - - - - X Property - - - - The X coordinate of the PointF. - - - - - Y Property - - - - The Y coordinate of the PointF. - - - - - Equals Method - - - - Checks equivalence of this PointF and another object. - - - - - GetHashCode Method - - - - Calculates a hashing value. - - - - - ToString Method - - - - Formats the PointF as a string in coordinate notation. - - - - - Empty Shared Field - - - - An uninitialized Size Structure. - - - - - Ceiling Shared Method - - - - Produces a Size structure from a SizeF structure by - taking the ceiling of the Width and Height properties. - - - - - Round Shared Method - - - - Produces a Size structure from a SizeF structure by - rounding the Width and Height properties. - - - - - Truncate Shared Method - - - - Produces a Size structure from a SizeF structure by - truncating the Width and Height properties. - - - - - Addition Operator - - - - Addition of two Size structures. - - - - - Equality Operator - - - - Compares two Size objects. The return value is - based on the equivalence of the Width and Height - properties of the two Sizes. - - - - - Inequality Operator - - - - Compares two Size objects. The return value is - based on the equivalence of the Width and Height - properties of the two Sizes. - - - - - Subtraction Operator - - - - Subtracts two Size structures. - - - - - Size to Point Conversion - - - - Returns a Point based on the dimensions of a given - Size. Requires explicit cast. - - - - - Size to SizeF Conversion - - - - Creates a SizeF based on the dimensions of a given - Size. No explicit cast is required. - - - - - Size Constructor - - - - Creates a Size from a Point value. - - - - - Size Constructor - - - - Creates a Size from specified dimensions. - - - - - IsEmpty Property - - - - Indicates if both Width and Height are zero. - - - - - Width Property - - - - The Width coordinate of the Size. - - - - - Height Property - - - - The Height coordinate of the Size. - - - - - Equals Method - - - - Checks equivalence of this Size and another object. - - - - - GetHashCode Method - - - - Calculates a hashing value. - - - - - ToString Method - - - - Formats the Size as a string in coordinate notation. - - - - - Empty Shared Field - - - - An uninitialized SizeF Structure. - - - - - Addition Operator - - - - Addition of two SizeF structures. - - - - - Equality Operator - - - - Compares two SizeF objects. The return value is - based on the equivalence of the Width and Height - properties of the two Sizes. - - - - - Inequality Operator - - - - Compares two SizeF objects. The return value is - based on the equivalence of the Width and Height - properties of the two Sizes. - - - - - Subtraction Operator - - - - Subtracts two SizeF structures. - - - - - SizeF to PointF Conversion - - - - Returns a PointF based on the dimensions of a given - SizeF. Requires explicit cast. - - - - - SizeF Constructor - - - - Creates a SizeF from a PointF value. - - - - - SizeF Constructor - - - - Creates a SizeF from an existing SizeF value. - - - - - SizeF Constructor - - - - Creates a SizeF from specified dimensions. - - - - - IsEmpty Property - - - - Indicates if both Width and Height are zero. - - - - - Width Property - - - - The Width coordinate of the SizeF. - - - - - Height Property - - - - The Height coordinate of the SizeF. - - - - - Equals Method - - - - Checks equivalence of this SizeF and another object. - - - - - GetHashCode Method - - - - Calculates a hashing value. - - - - - ToString Method - - - - Formats the SizeF as a string in coordinate notation. - - - - diff --git a/build/CitizenFX.Core.Server.dll b/build/CitizenFX.Core.Server.dll deleted file mode 100644 index aa03f35f46be40f2601f26be28e3cc0a0bab8c11..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 46080 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 - - - CitizenFX.Core - - - - - An event containing callbacks to attempt to schedule on every game tick. - A callback will only be rescheduled once the associated task completes. - - - - - Returns a task that will delay scheduling of the current interval function by the passed amount of time. - - - await Delay(500); - - The amount of time by which to delay scheduling this interval function. - An awaitable task. - - - - Broadcasts an event to all connected players. - - The name of the event. - Arguments to pass to the event. - - - - Provides fast reading and writing of generic structures to a memory location using IL emitted functions. - - - - - Retrieve a pointer to the passed generic structure type. This is achieved by emitting a to retrieve a pointer to the structure. - - - - A pointer to the provided structure in memory. - - - - - Loads the generic value type from a pointer. This is achieved by emitting a that returns the value in the memory location as a . - The equivalent non-generic C# code: - - unsafe MyStruct ReadFromPointer(byte* pointer) - { - return *(MyStruct*)pointer; - } - - - Any value/structure type - Unsafe pointer to memory to load the value from - The newly loaded value - - - - Writes the generic value type to the location specified by a pointer. This is achieved by emitting a that copies the value from the referenced structure into the specified memory location. - There is no exact equivalent possible in C#, the closest possible (generates the same IL) is the following code: - - unsafe void WriteToPointer(ref SharedHeader dest, ref SharedHeader src) - { - dest = src; - } - - - - - - - - - Retrieve the cached size of a structure - - - - Caches the size by type - - - - - Reads a number of elements from a memory location into the provided buffer starting at the specified index. - - The structure type - The destination buffer. - The source memory location. - The start index within . - The number of elements to read. - - - - Writes a number of elements to a memory location from the provided buffer starting at the specified index. - - The structure type - The destination memory location. - The source buffer. - The start index within . - The number of elements to write. - - - - Emits optimized IL for the reading and writing of structures to/from memory. - For a 32-byte structure with 1 million iterations: - The method performs approx. 20x faster than - (8ms vs 160ms), and about 1.6x slower than the non-generic equivalent (8ms vs 5ms) - The method performs approx. 8x faster than - (4ms vs 34ms). - - - - - - Delegate that returns a pointer to the provided structure. Use with extreme caution. - - - - - - - Delegate for loading a structure from the specified memory address - - - - - - - Delegate for writing a structure to the specified memory address - - - - - - - The delegate for the generated IL to retrieve a pointer to the structure - - - - - The delegate for the generated IL to retrieve a structure from a specified memory address. - - - - - The delegate for the generated IL to store a structure at the specified memory address. - - - - - Cached size of T as determined by . - - - - - Performs once of type compatibility check. - - Thrown if the type T is incompatible - - - - The value for which all absolute numbers smaller than are considered equal to zero. - - - - - A value specifying the approximation of π which is 180 degrees. - - - - - A value specifying the approximation of 2π which is 360 degrees. - - - - - A value specifying the approximation of π/2 which is 90 degrees. - - - - - A value specifying the approximation of π/4 which is 45 degrees. - - - - - Checks if a and b are almost equals, taking into account the magnitude of floating point numbers (unlike method). See Remarks. - See remarks. - - The left value to compare. - The right value to compare. - true if a almost equal to b, false otherwise - - The code is using the technique described by Bruce Dawson in - Comparing Floating point numbers 2012 edition. - - - - - Determines whether the specified value is close to zero (0.0f). - - The floating value. - true if the specified value is close to zero (0.0f); otherwise, false. - - - - Determines whether the specified value is close to one (1.0f). - - The floating value. - true if the specified value is close to one (1.0f); otherwise, false. - - - - Checks if a - b are almost equals within a float epsilon. - - The left value to compare. - The right value to compare. - Epsilon value - true if a almost equal to b within a float epsilon, false otherwise - - - - Converts revolutions to degrees. - - The value to convert. - The converted value. - - - - Converts revolutions to radians. - - The value to convert. - The converted value. - - - - Converts revolutions to gradians. - - The value to convert. - The converted value. - - - - Converts degrees to revolutions. - - The value to convert. - The converted value. - - - - Converts degrees to radians. - - The value to convert. - The converted value. - - - - Converts radians to revolutions. - - The value to convert. - The converted value. - - - - Converts radians to gradians. - - The value to convert. - The converted value. - - - - Converts gradians to revolutions. - - The value to convert. - The converted value. - - - - Converts gradians to degrees. - - The value to convert. - The converted value. - - - - Converts gradians to radians. - - The value to convert. - The converted value. - - - - Converts radians to degrees. - - The value to convert. - The converted value. - - - - Clamps the specified value. - - The value. - The min. - The max. - The result of clamping a value between min and max - - - - Clamps the specified value. - - The value. - The min. - The max. - The result of clamping a value between min and max - - - - Interpolates between two values using a linear function by a given amount. - - - See http://www.encyclopediaofmath.org/index.php/Linear_interpolation and - http://fgiesen.wordpress.com/2012/08/15/linear-interpolation-past-present-and-future/ - - Value to interpolate from. - Value to interpolate to. - Interpolation amount. - The result of linear interpolation of values based on the amount. - - - - Interpolates between two values using a linear function by a given amount. - - - See http://www.encyclopediaofmath.org/index.php/Linear_interpolation and - http://fgiesen.wordpress.com/2012/08/15/linear-interpolation-past-present-and-future/ - - Value to interpolate from. - Value to interpolate to. - Interpolation amount. - The result of linear interpolation of values based on the amount. - - - - Interpolates between two values using a linear function by a given amount. - - - See http://www.encyclopediaofmath.org/index.php/Linear_interpolation and - http://fgiesen.wordpress.com/2012/08/15/linear-interpolation-past-present-and-future/ - - Value to interpolate from. - Value to interpolate to. - Interpolation amount. - The result of linear interpolation of values based on the amount. - - - - Performs smooth (cubic Hermite) interpolation between 0 and 1. - - - See https://en.wikipedia.org/wiki/Smoothstep - - Value between 0 and 1 indicating interpolation amount. - - - - Performs a smooth(er) interpolation between 0 and 1 with 1st and 2nd order derivatives of zero at endpoints. - - - See https://en.wikipedia.org/wiki/Smoothstep - - Value between 0 and 1 indicating interpolation amount. - - - - Calculates the modulo of the specified value. - - The value. - The modulo. - The result of the modulo applied to value - - - - Calculates the modulo 2*PI of the specified value. - - The value. - The result of the modulo applied to value - - - - Wraps the specified value into a range [min, max] - - The value to wrap. - The min. - The max. - Result of the wrapping. - Is thrown when is greater than . - - - - Wraps the specified value into a range [min, max[ - - The value. - The min. - The max. - Result of the wrapping. - Is thrown when is greater than . - - - - Gauss function. - - Curve amplitude. - Position X. - Position Y - Radius X. - Radius Y. - Curve sigma X. - Curve sigma Y. - The result of Gaussian function. - - - - Gauss function. - - Curve amplitude. - Position X. - Position Y - Radius X. - Radius Y. - Curve sigma X. - Curve sigma Y. - The result of Gaussian function. - - - - Represents a 4x4 mathematical matrix. - - - - - A with all of its components set to zero. - - - - - The identity . - - - - - Value at row 1 column 1 of the matrix. - - - - - Value at row 1 column 2 of the matrix. - - - - - Value at row 1 column 3 of the matrix. - - - - - Value at row 1 column 4 of the matrix. - - - - - Value at row 2 column 1 of the matrix. - - - - - Value at row 2 column 2 of the matrix. - - - - - Value at row 2 column 3 of the matrix. - - - - - Value at row 2 column 4 of the matrix. - - - - - Value at row 3 column 1 of the matrix. - - - - - Value at row 3 column 2 of the matrix. - - - - - Value at row 3 column 3 of the matrix. - - - - - Value at row 3 column 4 of the matrix. - - - - - Value at row 4 column 1 of the matrix. - - - - - Value at row 4 column 2 of the matrix. - - - - - Value at row 4 column 3 of the matrix. - - - - - Value at row 4 column 4 of the matrix. - - - - - Gets or sets the up of the matrix; that is M21, M22, and M23. - - - - - Gets or sets the down of the matrix; that is -M21, -M22, and -M23. - - - - - Gets or sets the right of the matrix; that is M11, M12, and M13. - - - - - Gets or sets the left of the matrix; that is -M11, -M12, and -M13. - - - - - Gets or sets the forward of the matrix; that is -M31, -M32, and -M33. - - - - - Gets or sets the backward of the matrix; that is M31, M32, and M33. - - - - - Initializes a new instance of the struct. - - The value that will be assigned to all components. - - - - Initializes a new instance of the struct. - - The value to assign at row 1 column 1 of the matrix. - The value to assign at row 1 column 2 of the matrix. - The value to assign at row 1 column 3 of the matrix. - The value to assign at row 1 column 4 of the matrix. - The value to assign at row 2 column 1 of the matrix. - The value to assign at row 2 column 2 of the matrix. - The value to assign at row 2 column 3 of the matrix. - The value to assign at row 2 column 4 of the matrix. - The value to assign at row 3 column 1 of the matrix. - The value to assign at row 3 column 2 of the matrix. - The value to assign at row 3 column 3 of the matrix. - The value to assign at row 3 column 4 of the matrix. - The value to assign at row 4 column 1 of the matrix. - The value to assign at row 4 column 2 of the matrix. - The value to assign at row 4 column 3 of the matrix. - The value to assign at row 4 column 4 of the matrix. - - - - Initializes a new instance of the struct. - - The values to assign to the components of the matrix. This must be an array with sixteen elements. - Thrown when is null. - Thrown when contains more or less than sixteen elements. - - - - Gets or sets the first row in the matrix; that is M11, M12, M13, and M14. - - - - - Gets or sets the second row in the matrix; that is M21, M22, M23, and M24. - - - - - Gets or sets the third row in the matrix; that is M31, M32, M33, and M34. - - - - - Gets or sets the fourth row in the matrix; that is M41, M42, M43, and M44. - - - - - Gets or sets the first column in the matrix; that is M11, M21, M31, and M41. - - - - - Gets or sets the second column in the matrix; that is M12, M22, M32, and M42. - - - - - Gets or sets the third column in the matrix; that is M13, M23, M33, and M43. - - - - - Gets or sets the fourth column in the matrix; that is M14, M24, M34, and M44. - - - - - Gets or sets the translation of the matrix; that is M41, M42, and M43. - - - - - Gets or sets the scale of the matrix; that is M11, M22, and M33. - - - - - Gets a value indicating whether this instance is an identity matrix. - - - true if this instance is an identity matrix; otherwise, false. - - - - - Gets or sets the component at the specified index. - - The value of the matrix component, depending on the index. - The zero-based index of the component to access. - The value of the component at the specified index. - Thrown when the is out of the range [0, 15]. - - - - Gets or sets the component at the specified index. - - The value of the matrix component, depending on the index. - The row of the matrix to access. - The column of the matrix to access. - The value of the component at the specified index. - Thrown when the or is out of the range [0, 3]. - - - - Calculates the determinant of the matrix. - - The determinant of the matrix. - - - - Inverts the matrix. - - - - - Transposes the matrix. - - - - - Orthogonalizes the specified matrix. - - - Orthogonalization is the process of making all rows orthogonal to each other. This - means that any given row in the matrix will be orthogonal to any other given row in the - matrix. - Because this method uses the modified Gram-Schmidt process, the resulting matrix - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the matrix rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthonormalizes the specified matrix. - - - Orthonormalization is the process of making all rows and columns orthogonal to each - other and making all rows and columns of unit length. This means that any given row will - be orthogonal to any other given row and any given column will be orthogonal to any other - given column. Any given row will not be orthogonal to any given column. Every row and every - column will be of unit length. - Because this method uses the modified Gram-Schmidt process, the resulting matrix - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the matrix rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Decomposes a matrix into an orthonormalized matrix Q and a right triangular matrix R. - - When the method completes, contains the orthonormalized matrix of the decomposition. - When the method completes, contains the right triangular matrix of the decomposition. - - - - Decomposes a matrix into a lower triangular matrix L and an orthonormalized matrix Q. - - When the method completes, contains the lower triangular matrix of the decomposition. - When the method completes, contains the orthonormalized matrix of the decomposition. - - - - Decomposes a matrix into a scale, rotation, and translation. - - When the method completes, contains the scaling component of the decomposed matrix. - When the method completes, contains the rotation component of the decomposed matrix. - When the method completes, contains the translation component of the decomposed matrix. - - This method is designed to decompose an SRT transformation matrix only. - - - - - Decomposes a uniform scale matrix into a scale, rotation, and translation. - A uniform scale matrix has the same scale in every axis. - - When the method completes, contains the scaling component of the decomposed matrix. - When the method completes, contains the rotation component of the decomposed matrix. - When the method completes, contains the translation component of the decomposed matrix. - - This method is designed to decompose only an SRT transformation matrix that has the same scale in every axis. - - - - - Exchanges two rows in the matrix. - - The first row to exchange. This is an index of the row starting at zero. - The second row to exchange. This is an index of the row starting at zero. - - - - Exchanges two columns in the matrix. - - The first column to exchange. This is an index of the column starting at zero. - The second column to exchange. This is an index of the column starting at zero. - - - - Creates an array containing the elements of the matrix. - - A sixteen-element array containing the components of the matrix. - - - - Determines the sum of two matrices. - - The first matrix to add. - The second matrix to add. - When the method completes, contains the sum of the two matrices. - - - - Determines the sum of two matrices. - - The first matrix to add. - The second matrix to add. - The sum of the two matrices. - - - - Determines the difference between two matrices. - - The first matrix to subtract. - The second matrix to subtract. - When the method completes, contains the difference between the two matrices. - - - - Determines the difference between two matrices. - - The first matrix to subtract. - The second matrix to subtract. - The difference between the two matrices. - - - - Scales a matrix by the given value. - - The matrix to scale. - The amount by which to scale. - When the method completes, contains the scaled matrix. - - - - Scales a matrix by the given value. - - The matrix to scale. - The amount by which to scale. - The scaled matrix. - - - - Determines the product of two matrices. - - The first matrix to multiply. - The second matrix to multiply. - The product of the two matrices. - - - - Determines the product of two matrices. - - The first matrix to multiply. - The second matrix to multiply. - The product of the two matrices. - - - - Scales a matrix by the given value. - - The matrix to scale. - The amount by which to scale. - When the method completes, contains the scaled matrix. - - - - Scales a matrix by the given value. - - The matrix to scale. - The amount by which to scale. - The scaled matrix. - - - - Determines the quotient of two matrices. - - The first matrix to divide. - The second matrix to divide. - When the method completes, contains the quotient of the two matrices. - - - - Determines the quotient of two matrices. - - The first matrix to divide. - The second matrix to divide. - The quotient of the two matrices. - - - - Performs the exponential operation on a matrix. - - The matrix to perform the operation on. - The exponent to raise the matrix to. - When the method completes, contains the exponential matrix. - Thrown when the is negative. - - - - Performs the exponential operation on a matrix. - - The matrix to perform the operation on. - The exponent to raise the matrix to. - The exponential matrix. - Thrown when the is negative. - - - - Negates a matrix. - - The matrix to be negated. - When the method completes, contains the negated matrix. - - - - Negates a matrix. - - The matrix to be negated. - The negated matrix. - - - - Performs a linear interpolation between two matrices. - - Start matrix. - End matrix. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the linear interpolation of the two matrices. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a linear interpolation between two matrices. - - Start matrix. - End matrix. - Value between 0 and 1 indicating the weight of . - The linear interpolation of the two matrices. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a cubic interpolation between two matrices. - - Start matrix. - End matrix. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the cubic interpolation of the two matrices. - - - - Performs a cubic interpolation between two matrices. - - Start matrix. - End matrix. - Value between 0 and 1 indicating the weight of . - The cubic interpolation of the two matrices. - - - - Calculates the transpose of the specified matrix. - - The matrix whose transpose is to be calculated. - When the method completes, contains the transpose of the specified matrix. - - - - Calculates the transpose of the specified matrix. - - The matrix whose transpose is to be calculated. - When the method completes, contains the transpose of the specified matrix. - - - - Calculates the transpose of the specified matrix. - - The matrix whose transpose is to be calculated. - The transpose of the specified matrix. - - - - Calculates the inverse of the specified matrix. - - The matrix whose inverse is to be calculated. - When the method completes, contains the inverse of the specified matrix. - - - - Calculates the inverse of the specified matrix. - - The matrix whose inverse is to be calculated. - The inverse of the specified matrix. - - - - Orthogonalizes the specified matrix. - - The matrix to orthogonalize. - When the method completes, contains the orthogonalized matrix. - - Orthogonalization is the process of making all rows orthogonal to each other. This - means that any given row in the matrix will be orthogonal to any other given row in the - matrix. - Because this method uses the modified Gram-Schmidt process, the resulting matrix - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the matrix rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthogonalizes the specified matrix. - - The matrix to orthogonalize. - The orthogonalized matrix. - - Orthogonalization is the process of making all rows orthogonal to each other. This - means that any given row in the matrix will be orthogonal to any other given row in the - matrix. - Because this method uses the modified Gram-Schmidt process, the resulting matrix - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the matrix rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthonormalizes the specified matrix. - - The matrix to orthonormalize. - When the method completes, contains the orthonormalized matrix. - - Orthonormalization is the process of making all rows and columns orthogonal to each - other and making all rows and columns of unit length. This means that any given row will - be orthogonal to any other given row and any given column will be orthogonal to any other - given column. Any given row will not be orthogonal to any given column. Every row and every - column will be of unit length. - Because this method uses the modified Gram-Schmidt process, the resulting matrix - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the matrix rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthonormalizes the specified matrix. - - The matrix to orthonormalize. - The orthonormalized matrix. - - Orthonormalization is the process of making all rows and columns orthogonal to each - other and making all rows and columns of unit length. This means that any given row will - be orthogonal to any other given row and any given column will be orthogonal to any other - given column. Any given row will not be orthogonal to any given column. Every row and every - column will be of unit length. - Because this method uses the modified Gram-Schmidt process, the resulting matrix - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the matrix rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Brings the matrix into upper triangular form using elementary row operations. - - The matrix to put into upper triangular form. - When the method completes, contains the upper triangular matrix. - - If the matrix is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the matrix represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the matrix into upper triangular form using elementary row operations. - - The matrix to put into upper triangular form. - The upper triangular matrix. - - If the matrix is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the matrix represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the matrix into lower triangular form using elementary row operations. - - The matrix to put into lower triangular form. - When the method completes, contains the lower triangular matrix. - - If the matrix is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the matrix represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the matrix into lower triangular form using elementary row operations. - - The matrix to put into lower triangular form. - The lower triangular matrix. - - If the matrix is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the matrix represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the matrix into row echelon form using elementary row operations; - - The matrix to put into row echelon form. - When the method completes, contains the row echelon form of the matrix. - - - - Brings the matrix into row echelon form using elementary row operations; - - The matrix to put into row echelon form. - When the method completes, contains the row echelon form of the matrix. - - - - Brings the matrix into reduced row echelon form using elementary row operations. - - The matrix to put into reduced row echelon form. - The fifth column of the matrix. - When the method completes, contains the resultant matrix after the operation. - When the method completes, contains the resultant fifth column of the matrix. - - The fifth column is often called the augmented part of the matrix. This is because the fifth - column is really just an extension of the matrix so that there is a place to put all of the - non-zero components after the operation is complete. - Often times the resultant matrix will the identity matrix or a matrix similar to the identity - matrix. Sometimes, however, that is not possible and numbers other than zero and one may appear. - This method can be used to solve systems of linear equations. Upon completion of this method, - the will contain the solution for the system. It is up to the user - to analyze both the input and the result to determine if a solution really exists. - - - - - Creates a left-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - When the method completes, contains the created billboard matrix. - - - - Creates a left-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - The created billboard matrix. - - - - Creates a right-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - When the method completes, contains the created billboard matrix. - - - - Creates a right-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - The created billboard matrix. - - - - Creates a left-handed, look-at matrix. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - When the method completes, contains the created look-at matrix. - - - - Creates a left-handed, look-at matrix. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - The created look-at matrix. - - - - Creates a right-handed, look-at matrix. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - When the method completes, contains the created look-at matrix. - - - - Creates a right-handed, look-at matrix. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - The created look-at matrix. - - - - Creates a left-handed, orthographic projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a left-handed, orthographic projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a right-handed, orthographic projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a right-handed, orthographic projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a left-handed, customized orthographic projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a left-handed, customized orthographic projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a right-handed, customized orthographic projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a right-handed, customized orthographic projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a left-handed, perspective projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a left-handed, perspective projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a right-handed, perspective projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a right-handed, perspective projection matrix. - - Width of the viewing volume. - Height of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a left-handed, perspective projection matrix based on a field of view. - - Field of view in the y direction, in radians. - Aspect ratio, defined as view space width divided by height. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a left-handed, perspective projection matrix based on a field of view. - - Field of view in the y direction, in radians. - Aspect ratio, defined as view space width divided by height. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a right-handed, perspective projection matrix based on a field of view. - - Field of view in the y direction, in radians. - Aspect ratio, defined as view space width divided by height. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a right-handed, perspective projection matrix based on a field of view. - - Field of view in the y direction, in radians. - Aspect ratio, defined as view space width divided by height. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a left-handed, customized perspective projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a left-handed, customized perspective projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a right-handed, customized perspective projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - When the method completes, contains the created projection matrix. - - - - Creates a right-handed, customized perspective projection matrix. - - Minimum x-value of the viewing volume. - Maximum x-value of the viewing volume. - Minimum y-value of the viewing volume. - Maximum y-value of the viewing volume. - Minimum z-value of the viewing volume. - Maximum z-value of the viewing volume. - The created projection matrix. - - - - Creates a matrix that scales along the x-axis, y-axis, and y-axis. - - Scaling factor for all three axes. - When the method completes, contains the created scaling matrix. - - - - Creates a matrix that scales along the x-axis, y-axis, and y-axis. - - Scaling factor for all three axes. - The created scaling matrix. - - - - Creates a matrix that scales along the x-axis, y-axis, and y-axis. - - Scaling factor that is applied along the x-axis. - Scaling factor that is applied along the y-axis. - Scaling factor that is applied along the z-axis. - When the method completes, contains the created scaling matrix. - - - - Creates a matrix that scales along the x-axis, y-axis, and y-axis. - - Scaling factor that is applied along the x-axis. - Scaling factor that is applied along the y-axis. - Scaling factor that is applied along the z-axis. - The created scaling matrix. - - - - Creates a matrix that uniformly scales along all three axis. - - The uniform scale that is applied along all axis. - When the method completes, contains the created scaling matrix. - - - - Creates a matrix that uniformly scales along all three axis. - - The uniform scale that is applied along all axis. - The created scaling matrix. - - - - Creates a matrix that rotates around the x-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation matrix. - - - - Creates a matrix that rotates around the x-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation matrix. - - - - Creates a matrix that rotates around the y-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation matrix. - - - - Creates a matrix that rotates around the y-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation matrix. - - - - Creates a matrix that rotates around the z-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation matrix. - - - - Creates a matrix that rotates around the z-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation matrix. - - - - Creates a matrix that rotates around an arbitrary axis. - - The axis around which to rotate. This parameter is assumed to be normalized. - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation matrix. - - - - Creates a matrix that rotates around an arbitrary axis. - - The axis around which to rotate. This parameter is assumed to be normalized. - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation matrix. - - - - Creates a rotation matrix from a quaternion. - - The quaternion to use to build the matrix. - The created rotation matrix. - - - - Creates a rotation matrix from a quaternion. - - The quaternion to use to build the matrix. - The created rotation matrix. - - - - Creates a rotation matrix with a specified yaw, pitch, and roll. - - Yaw around the y-axis, in radians. - Pitch around the x-axis, in radians. - Roll around the z-axis, in radians. - When the method completes, contains the created rotation matrix. - - - - Creates a rotation matrix with a specified yaw, pitch, and roll. - - Yaw around the y-axis, in radians. - Pitch around the x-axis, in radians. - Roll around the z-axis, in radians. - The created rotation matrix. - - - - Creates a translation matrix using the specified offsets. - - The offset for all three coordinate planes. - When the method completes, contains the created translation matrix. - - - - Creates a translation matrix using the specified offsets. - - The offset for all three coordinate planes. - The created translation matrix. - - - - Creates a translation matrix using the specified offsets. - - X-coordinate offset. - Y-coordinate offset. - Z-coordinate offset. - When the method completes, contains the created translation matrix. - - - - Creates a translation matrix using the specified offsets. - - X-coordinate offset. - Y-coordinate offset. - Z-coordinate offset. - The created translation matrix. - - - - Creates a skew/shear matrix by means of a translation vector, a rotation vector, and a rotation angle. - shearing is performed in the direction of translation vector, where translation vector and rotation vector define the shearing plane. - The effect is such that the skewed rotation vector has the specified angle with rotation itself. - - The rotation angle. - The rotation vector - The translation vector - Contains the created skew/shear matrix. - - - - Creates a 3D affine transformation matrix. - - Scaling factor. - The rotation of the transformation. - The translation factor of the transformation. - When the method completes, contains the created affine transformation matrix. - - - - Creates a 3D affine transformation matrix. - - Scaling factor. - The rotation of the transformation. - The translation factor of the transformation. - The created affine transformation matrix. - - - - Creates a 3D affine transformation matrix. - - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - When the method completes, contains the created affine transformation matrix. - - - - Creates a 3D affine transformation matrix. - - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - The created affine transformation matrix. - - - - Creates a 2D affine transformation matrix. - - Scaling factor. - The rotation of the transformation. - The translation factor of the transformation. - When the method completes, contains the created affine transformation matrix. - - - - Creates a 2D affine transformation matrix. - - Scaling factor. - The rotation of the transformation. - The translation factor of the transformation. - The created affine transformation matrix. - - - - Creates a 2D affine transformation matrix. - - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - When the method completes, contains the created affine transformation matrix. - - - - Creates a 2D affine transformation matrix. - - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - The created affine transformation matrix. - - - - Creates a transformation matrix. - - Center point of the scaling operation. - Scaling rotation amount. - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - When the method completes, contains the created transformation matrix. - - - - Creates a transformation matrix. - - Center point of the scaling operation. - Scaling rotation amount. - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - The created transformation matrix. - - - - Creates a 2D transformation matrix. - - Center point of the scaling operation. - Scaling rotation amount. - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - When the method completes, contains the created transformation matrix. - - - - Creates a 2D transformation matrix. - - Center point of the scaling operation. - Scaling rotation amount. - Scaling factor. - The center of the rotation. - The rotation of the transformation. - The translation factor of the transformation. - The created transformation matrix. - - - - Adds two matrices. - - The first matrix to add. - The second matrix to add. - The sum of the two matrices. - - - - Assert a matrix (return it unchanged). - - The matrix to assert (unchanged). - The asserted (unchanged) matrix. - - - - Subtracts two matrices. - - The first matrix to subtract. - The second matrix to subtract. - The difference between the two matrices. - - - - Negates a matrix. - - The matrix to negate. - The negated matrix. - - - - Scales a matrix by a given value. - - The matrix to scale. - The amount by which to scale. - The scaled matrix. - - - - Scales a matrix by a given value. - - The matrix to scale. - The amount by which to scale. - The scaled matrix. - - - - Multiplies two matrices. - - The first matrix to multiply. - The second matrix to multiply. - The product of the two matrices. - - - - Scales a matrix by a given value. - - The matrix to scale. - The amount by which to scale. - The scaled matrix. - - - - Divides two matrices. - - The first matrix to divide. - The second matrix to divide. - The quotient of the two matrices. - - - - Tests for equality between two objects. - - The first value to compare. - The second value to compare. - true if has the same value as ; otherwise, false. - - - - Tests for inequality between two objects. - - The first value to compare. - The second value to compare. - true if has a different value than ; otherwise, false. - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Represents a 3x3 Matrix ( contains only Scale and Rotation ). - - - - - A with all of its components set to zero. - - - - - The identity . - - - - - Value at row 1 column 1 of the Matrix3x3. - - - - - Value at row 1 column 2 of the Matrix3x3. - - - - - Value at row 1 column 3 of the Matrix3x3. - - - - - Value at row 2 column 1 of the Matrix3x3. - - - - - Value at row 2 column 2 of the Matrix3x3. - - - - - Value at row 2 column 3 of the Matrix3x3. - - - - - Value at row 3 column 1 of the Matrix3x3. - - - - - Value at row 3 column 2 of the Matrix3x3. - - - - - Value at row 3 column 3 of the Matrix3x3. - - - - - Initializes a new instance of the struct. - - The value that will be assigned to all components. - - - - Initializes a new instance of the struct. - - The value to assign at row 1 column 1 of the Matrix3x3. - The value to assign at row 1 column 2 of the Matrix3x3. - The value to assign at row 1 column 3 of the Matrix3x3. - The value to assign at row 2 column 1 of the Matrix3x3. - The value to assign at row 2 column 2 of the Matrix3x3. - The value to assign at row 2 column 3 of the Matrix3x3. - The value to assign at row 3 column 1 of the Matrix3x3. - The value to assign at row 3 column 2 of the Matrix3x3. - The value to assign at row 3 column 3 of the Matrix3x3. - - - - Initializes a new instance of the struct. - - The values to assign to the components of the Matrix3x3. This must be an array with sixteen elements. - Thrown when is null. - Thrown when contains more or less than sixteen elements. - - - - Gets or sets the first row in the Matrix3x3; that is M11, M12, M13 - - - - - Gets or sets the second row in the Matrix3x3; that is M21, M22, M23 - - - - - Gets or sets the third row in the Matrix3x3; that is M31, M32, M33 - - - - - Gets or sets the first column in the Matrix3x3; that is M11, M21, M31 - - - - - Gets or sets the second column in the Matrix3x3; that is M12, M22, M32 - - - - - Gets or sets the third column in the Matrix3x3; that is M13, M23, M33 - - - - - Gets or sets the scale of the Matrix3x3; that is M11, M22, and M33. - - - - - Gets a value indicating whether this instance is an identity Matrix3x3. - - - true if this instance is an identity Matrix3x3; otherwise, false. - - - - - Gets or sets the component at the specified index. - - The value of the Matrix3x3 component, depending on the index. - The zero-based index of the component to access. - The value of the component at the specified index. - Thrown when the is out of the range [0, 15]. - - - - Gets or sets the component at the specified index. - - The value of the Matrix3x3 component, depending on the index. - The row of the Matrix3x3 to access. - The column of the Matrix3x3 to access. - The value of the component at the specified index. - Thrown when the or is out of the range [0, 3]. - - - - Calculates the determinant of the Matrix3x3. - - The determinant of the Matrix3x3. - - - - Inverts the Matrix3x3. - - - - - Transposes the Matrix3x3. - - - - - Orthogonalizes the specified Matrix3x3. - - - Orthogonalization is the process of making all rows orthogonal to each other. This - means that any given row in the Matrix3x3 will be orthogonal to any other given row in the - Matrix3x3. - Because this method uses the modified Gram-Schmidt process, the resulting Matrix3x3 - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the Matrix3x3 rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthonormalizes the specified Matrix3x3. - - - Orthonormalization is the process of making all rows and columns orthogonal to each - other and making all rows and columns of unit length. This means that any given row will - be orthogonal to any other given row and any given column will be orthogonal to any other - given column. Any given row will not be orthogonal to any given column. Every row and every - column will be of unit length. - Because this method uses the modified Gram-Schmidt process, the resulting Matrix3x3 - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the Matrix3x3 rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Decomposes a Matrix3x3 into an orthonormalized Matrix3x3 Q and a right triangular Matrix3x3 R. - - When the method completes, contains the orthonormalized Matrix3x3 of the decomposition. - When the method completes, contains the right triangular Matrix3x3 of the decomposition. - - - - Decomposes a Matrix3x3 into a lower triangular Matrix3x3 L and an orthonormalized Matrix3x3 Q. - - When the method completes, contains the lower triangular Matrix3x3 of the decomposition. - When the method completes, contains the orthonormalized Matrix3x3 of the decomposition. - - - - Decomposes a Matrix3x3 into a scale, rotation, and translation. - - When the method completes, contains the scaling component of the decomposed Matrix3x3. - When the method completes, contains the rotation component of the decomposed Matrix3x3. - - This method is designed to decompose an SRT transformation Matrix3x3 only. - - - - - Decomposes a uniform scale matrix into a scale, rotation, and translation. - A uniform scale matrix has the same scale in every axis. - - When the method completes, contains the scaling component of the decomposed matrix. - When the method completes, contains the rotation component of the decomposed matrix. - - This method is designed to decompose only an SRT transformation matrix that has the same scale in every axis. - - - - - Exchanges two rows in the Matrix3x3. - - The first row to exchange. This is an index of the row starting at zero. - The second row to exchange. This is an index of the row starting at zero. - - - - Exchanges two columns in the Matrix3x3. - - The first column to exchange. This is an index of the column starting at zero. - The second column to exchange. This is an index of the column starting at zero. - - - - Creates an array containing the elements of the Matrix3x3. - - A 9-element array containing the components of the Matrix3x3. - - - - Determines the sum of two matrices. - - The first Matrix3x3 to add. - The second Matrix3x3 to add. - When the method completes, contains the sum of the two matrices. - - - - Determines the sum of two matrices. - - The first Matrix3x3 to add. - The second Matrix3x3 to add. - The sum of the two matrices. - - - - Determines the difference between two matrices. - - The first Matrix3x3 to subtract. - The second Matrix3x3 to subtract. - When the method completes, contains the difference between the two matrices. - - - - Determines the difference between two matrices. - - The first Matrix3x3 to subtract. - The second Matrix3x3 to subtract. - The difference between the two matrices. - - - - Scales a Matrix3x3 by the given value. - - The Matrix3x3 to scale. - The amount by which to scale. - When the method completes, contains the scaled Matrix3x3. - - - - Scales a Matrix3x3 by the given value. - - The Matrix3x3 to scale. - The amount by which to scale. - The scaled Matrix3x3. - - - - Determines the product of two matrices. - - The first Matrix3x3 to multiply. - The second Matrix3x3 to multiply. - The product of the two matrices. - - - - Determines the product of two matrices. - - The first Matrix3x3 to multiply. - The second Matrix3x3 to multiply. - The product of the two matrices. - - - - Scales a Matrix3x3 by the given value. - - The Matrix3x3 to scale. - The amount by which to scale. - When the method completes, contains the scaled Matrix3x3. - - - - Scales a Matrix3x3 by the given value. - - The Matrix3x3 to scale. - The amount by which to scale. - The scaled Matrix3x3. - - - - Determines the quotient of two matrices. - - The first Matrix3x3 to divide. - The second Matrix3x3 to divide. - When the method completes, contains the quotient of the two matrices. - - - - Determines the quotient of two matrices. - - The first Matrix3x3 to divide. - The second Matrix3x3 to divide. - The quotient of the two matrices. - - - - Performs the exponential operation on a Matrix3x3. - - The Matrix3x3 to perform the operation on. - The exponent to raise the Matrix3x3 to. - When the method completes, contains the exponential Matrix3x3. - Thrown when the is negative. - - - - Performs the exponential operation on a Matrix3x3. - - The Matrix3x3 to perform the operation on. - The exponent to raise the Matrix3x3 to. - The exponential Matrix3x3. - Thrown when the is negative. - - - - Negates a Matrix3x3. - - The Matrix3x3 to be negated. - When the method completes, contains the negated Matrix3x3. - - - - Negates a Matrix3x3. - - The Matrix3x3 to be negated. - The negated Matrix3x3. - - - - Performs a linear interpolation between two matrices. - - Start Matrix3x3. - End Matrix3x3. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the linear interpolation of the two matrices. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a linear interpolation between two matrices. - - Start Matrix3x3. - End Matrix3x3. - Value between 0 and 1 indicating the weight of . - The linear interpolation of the two matrices. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a cubic interpolation between two matrices. - - Start Matrix3x3. - End Matrix3x3. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the cubic interpolation of the two matrices. - - - - Performs a cubic interpolation between two matrices. - - Start Matrix3x3. - End Matrix3x3. - Value between 0 and 1 indicating the weight of . - The cubic interpolation of the two matrices. - - - - Calculates the transpose of the specified Matrix3x3. - - The Matrix3x3 whose transpose is to be calculated. - When the method completes, contains the transpose of the specified Matrix3x3. - - - - Calculates the transpose of the specified Matrix3x3. - - The Matrix3x3 whose transpose is to be calculated. - When the method completes, contains the transpose of the specified Matrix3x3. - - - - Calculates the transpose of the specified Matrix3x3. - - The Matrix3x3 whose transpose is to be calculated. - The transpose of the specified Matrix3x3. - - - - Calculates the inverse of the specified Matrix3x3. - - The Matrix3x3 whose inverse is to be calculated. - When the method completes, contains the inverse of the specified Matrix3x3. - - - - Calculates the inverse of the specified Matrix3x3. - - The Matrix3x3 whose inverse is to be calculated. - The inverse of the specified Matrix3x3. - - - - Orthogonalizes the specified Matrix3x3. - - The Matrix3x3 to orthogonalize. - When the method completes, contains the orthogonalized Matrix3x3. - - Orthogonalization is the process of making all rows orthogonal to each other. This - means that any given row in the Matrix3x3 will be orthogonal to any other given row in the - Matrix3x3. - Because this method uses the modified Gram-Schmidt process, the resulting Matrix3x3 - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the Matrix3x3 rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthogonalizes the specified Matrix3x3. - - The Matrix3x3 to orthogonalize. - The orthogonalized Matrix3x3. - - Orthogonalization is the process of making all rows orthogonal to each other. This - means that any given row in the Matrix3x3 will be orthogonal to any other given row in the - Matrix3x3. - Because this method uses the modified Gram-Schmidt process, the resulting Matrix3x3 - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the Matrix3x3 rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthonormalizes the specified Matrix3x3. - - The Matrix3x3 to orthonormalize. - When the method completes, contains the orthonormalized Matrix3x3. - - Orthonormalization is the process of making all rows and columns orthogonal to each - other and making all rows and columns of unit length. This means that any given row will - be orthogonal to any other given row and any given column will be orthogonal to any other - given column. Any given row will not be orthogonal to any given column. Every row and every - column will be of unit length. - Because this method uses the modified Gram-Schmidt process, the resulting Matrix3x3 - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the Matrix3x3 rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Orthonormalizes the specified Matrix3x3. - - The Matrix3x3 to orthonormalize. - The orthonormalized Matrix3x3. - - Orthonormalization is the process of making all rows and columns orthogonal to each - other and making all rows and columns of unit length. This means that any given row will - be orthogonal to any other given row and any given column will be orthogonal to any other - given column. Any given row will not be orthogonal to any given column. Every row and every - column will be of unit length. - Because this method uses the modified Gram-Schmidt process, the resulting Matrix3x3 - tends to be numerically unstable. The numeric stability decreases according to the rows - so that the first row is the most stable and the last row is the least stable. - This operation is performed on the rows of the Matrix3x3 rather than the columns. - If you wish for this operation to be performed on the columns, first transpose the - input and than transpose the output. - - - - - Brings the Matrix3x3 into upper triangular form using elementary row operations. - - The Matrix3x3 to put into upper triangular form. - When the method completes, contains the upper triangular Matrix3x3. - - If the Matrix3x3 is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the Matrix3x3 represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the Matrix3x3 into upper triangular form using elementary row operations. - - The Matrix3x3 to put into upper triangular form. - The upper triangular Matrix3x3. - - If the Matrix3x3 is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the Matrix3x3 represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the Matrix3x3 into lower triangular form using elementary row operations. - - The Matrix3x3 to put into lower triangular form. - When the method completes, contains the lower triangular Matrix3x3. - - If the Matrix3x3 is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the Matrix3x3 represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the Matrix3x3 into lower triangular form using elementary row operations. - - The Matrix3x3 to put into lower triangular form. - The lower triangular Matrix3x3. - - If the Matrix3x3 is not invertible (i.e. its determinant is zero) than the result of this - method may produce Single.Nan and Single.Inf values. When the Matrix3x3 represents a system - of linear equations, than this often means that either no solution exists or an infinite - number of solutions exist. - - - - - Brings the Matrix3x3 into row echelon form using elementary row operations; - - The Matrix3x3 to put into row echelon form. - When the method completes, contains the row echelon form of the Matrix3x3. - - - - Brings the Matrix3x3 into row echelon form using elementary row operations; - - The Matrix3x3 to put into row echelon form. - When the method completes, contains the row echelon form of the Matrix3x3. - - - - Creates a left-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - When the method completes, contains the created billboard Matrix3x3. - - - - Creates a left-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - The created billboard Matrix3x3. - - - - Creates a right-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - When the method completes, contains the created billboard Matrix3x3. - - - - Creates a right-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - The created billboard Matrix3x3. - - - - Creates a left-handed, look-at Matrix3x3. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - When the method completes, contains the created look-at Matrix3x3. - - - - Creates a left-handed, look-at Matrix3x3. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - The created look-at Matrix3x3. - - - - Creates a right-handed, look-at Matrix3x3. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - When the method completes, contains the created look-at Matrix3x3. - - - - Creates a right-handed, look-at Matrix3x3. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - The created look-at Matrix3x3. - - - - Creates a Matrix3x3 that scales along the x-axis, y-axis, and y-axis. - - Scaling factor for all three axes. - When the method completes, contains the created scaling Matrix3x3. - - - - Creates a Matrix3x3 that scales along the x-axis, y-axis, and y-axis. - - Scaling factor for all three axes. - The created scaling Matrix3x3. - - - - Creates a Matrix3x3 that scales along the x-axis, y-axis, and y-axis. - - Scaling factor that is applied along the x-axis. - Scaling factor that is applied along the y-axis. - Scaling factor that is applied along the z-axis. - When the method completes, contains the created scaling Matrix3x3. - - - - Creates a Matrix3x3 that scales along the x-axis, y-axis, and y-axis. - - Scaling factor that is applied along the x-axis. - Scaling factor that is applied along the y-axis. - Scaling factor that is applied along the z-axis. - The created scaling Matrix3x3. - - - - Creates a Matrix3x3 that uniformly scales along all three axis. - - The uniform scale that is applied along all axis. - When the method completes, contains the created scaling Matrix3x3. - - - - Creates a Matrix3x3 that uniformly scales along all three axis. - - The uniform scale that is applied along all axis. - The created scaling Matrix3x3. - - - - Creates a Matrix3x3 that rotates around the x-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation Matrix3x3. - - - - Creates a Matrix3x3 that rotates around the x-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation Matrix3x3. - - - - Creates a Matrix3x3 that rotates around the y-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation Matrix3x3. - - - - Creates a Matrix3x3 that rotates around the y-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation Matrix3x3. - - - - Creates a Matrix3x3 that rotates around the z-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation Matrix3x3. - - - - Creates a Matrix3x3 that rotates around the z-axis. - - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation Matrix3x3. - - - - Creates a Matrix3x3 that rotates around an arbitrary axis. - - The axis around which to rotate. This parameter is assumed to be normalized. - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - When the method completes, contains the created rotation Matrix3x3. - - - - Creates a Matrix3x3 that rotates around an arbitrary axis. - - The axis around which to rotate. This parameter is assumed to be normalized. - Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin. - The created rotation Matrix3x3. - - - - Creates a rotation Matrix3x3 from a quaternion. - - The quaternion to use to build the Matrix3x3. - The created rotation Matrix3x3. - - - - Creates a rotation Matrix3x3 from a quaternion. - - The quaternion to use to build the Matrix3x3. - The created rotation Matrix3x3. - - - - Creates a rotation Matrix3x3 with a specified yaw, pitch, and roll. - - Yaw around the y-axis, in radians. - Pitch around the x-axis, in radians. - Roll around the z-axis, in radians. - When the method completes, contains the created rotation Matrix3x3. - - - - Creates a rotation Matrix3x3 with a specified yaw, pitch, and roll. - - Yaw around the y-axis, in radians. - Pitch around the x-axis, in radians. - Roll around the z-axis, in radians. - The created rotation Matrix3x3. - - - - Adds two matrices. - - The first Matrix3x3 to add. - The second Matrix3x3 to add. - The sum of the two matrices. - - - - Assert a Matrix3x3 (return it unchanged). - - The Matrix3x3 to assert (unchanged). - The asserted (unchanged) Matrix3x3. - - - - Subtracts two matrices. - - The first Matrix3x3 to subtract. - The second Matrix3x3 to subtract. - The difference between the two matrices. - - - - Negates a Matrix3x3. - - The Matrix3x3 to negate. - The negated Matrix3x3. - - - - Scales a Matrix3x3 by a given value. - - The Matrix3x3 to scale. - The amount by which to scale. - The scaled Matrix3x3. - - - - Scales a Matrix3x3 by a given value. - - The Matrix3x3 to scale. - The amount by which to scale. - The scaled Matrix3x3. - - - - Multiplies two matrices. - - The first Matrix3x3 to multiply. - The second Matrix3x3 to multiply. - The product of the two matrices. - - - - Scales a Matrix3x3 by a given value. - - The Matrix3x3 to scale. - The amount by which to scale. - The scaled Matrix3x3. - - - - Divides two matrices. - - The first Matrix3x3 to divide. - The second Matrix3x3 to divide. - The quotient of the two matrices. - - - - Tests for equality between two objects. - - The first value to compare. - The second value to compare. - true if has the same value as ; otherwise, false. - - - - Tests for inequality between two objects. - - The first value to compare. - The second value to compare. - true if has a different value than ; otherwise, false. - - - - Convert the 3x3 Matrix to a 4x4 Matrix. - - A 4x4 Matrix with zero translation and M44=1 - - - - Convert the 4x4 Matrix to a 3x3 Matrix. - - A 3x3 Matrix - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified are equal. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Represents a four dimensional mathematical quaternion. - - - - - A with all of its components set to zero. - - - - - A with all of its components set to one. - - - - - The identity (0, 0, 0, 1). - - - - - The X component of the quaternion. - - - - - The Y component of the quaternion. - - - - - The Z component of the quaternion. - - - - - The W component of the quaternion. - - - - - Initializes a new instance of the struct. - - The value that will be assigned to all components. - - - - Initializes a new instance of the struct. - - A vector containing the values with which to initialize the components. - - - - Initializes a new instance of the struct. - - A vector containing the values with which to initialize the X, Y, and Z components. - Initial value for the W component of the quaternion. - - - - Initializes a new instance of the struct. - - A vector containing the values with which to initialize the X and Y components. - Initial value for the Z component of the quaternion. - Initial value for the W component of the quaternion. - - - - Initializes a new instance of the struct. - - Initial value for the X component of the quaternion. - Initial value for the Y component of the quaternion. - Initial value for the Z component of the quaternion. - Initial value for the W component of the quaternion. - - - - Initializes a new instance of the struct. - - The values to assign to the X, Y, Z, and W components of the quaternion. This must be an array with four elements. - Thrown when is null. - Thrown when contains more or less than four elements. - - - - Gets a value indicating whether this instance is equivalent to the identity quaternion. - - - true if this instance is an identity quaternion; otherwise, false. - - - - - Gets a value indicting whether this instance is normalized. - - - - - Gets the angle of the quaternion. - - The quaternion's angle. - - - - Gets the axis components of the quaternion. - - The axis components of the quaternion. - - - - Gets or sets the component at the specified index. - - The value of the X, Y, Z, or W component, depending on the index. - The index of the component to access. Use 0 for the X component, 1 for the Y component, 2 for the Z component, and 3 for the W component. - The value of the component at the specified index. - Thrown when the is out of the range [0, 3]. - - - - Conjugates the quaternion. - - - - - Conjugates and renormalizes the quaternion. - - - - - Calculates the length of the quaternion. - - The length of the quaternion. - - may be preferred when only the relative length is needed - and speed is of the essence. - - - - - Calculates the squared length of the quaternion. - - The squared length of the quaternion. - - This method may be preferred to when only a relative length is needed - and speed is of the essence. - - - - - Converts the quaternion into a unit quaternion. - - - - - Creates an array containing the elements of the quaternion. - - A four-element array containing the components of the quaternion. - - - - Adds two quaternions. - - The first quaternion to add. - The second quaternion to add. - When the method completes, contains the sum of the two quaternions. - - - - Adds two quaternions. - - The first quaternion to add. - The second quaternion to add. - The sum of the two quaternions. - - - - Subtracts two quaternions. - - The first quaternion to subtract. - The second quaternion to subtract. - When the method completes, contains the difference of the two quaternions. - - - - Subtracts two quaternions. - - The first quaternion to subtract. - The second quaternion to subtract. - The difference of the two quaternions. - - - - Scales a quaternion by the given value. - - The quaternion to scale. - The amount by which to scale the quaternion. - When the method completes, contains the scaled quaternion. - - - - Scales a quaternion by the given value. - - The quaternion to scale. - The amount by which to scale the quaternion. - The scaled quaternion. - - - - Multiplies a quaternion by another. - - The first quaternion to multiply. - The second quaternion to multiply. - When the method completes, contains the multiplied quaternion. - - - - Multiplies a quaternion by another. - - The first quaternion to multiply. - The second quaternion to multiply. - The multiplied quaternion. - - - - Reverses the direction of a given quaternion. - - The quaternion to negate. - When the method completes, contains a quaternion facing in the opposite direction. - - - - Reverses the direction of a given quaternion. - - The quaternion to negate. - A quaternion facing in the opposite direction. - - - - Returns a containing the 4D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 2D triangle. - - A containing the 4D Cartesian coordinates of vertex 1 of the triangle. - A containing the 4D Cartesian coordinates of vertex 2 of the triangle. - A containing the 4D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - When the method completes, contains a new containing the 4D Cartesian coordinates of the specified point. - - - - Returns a containing the 4D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 2D triangle. - - A containing the 4D Cartesian coordinates of vertex 1 of the triangle. - A containing the 4D Cartesian coordinates of vertex 2 of the triangle. - A containing the 4D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - A new containing the 4D Cartesian coordinates of the specified point. - - - - Conjugates a quaternion. - - The quaternion to conjugate. - When the method completes, contains the conjugated quaternion. - - - - Conjugates a quaternion. - - The quaternion to conjugate. - The conjugated quaternion. - - - - Calculates the dot product of two quaternions. - - First source quaternion. - Second source quaternion. - When the method completes, contains the dot product of the two quaternions. - - - - Calculates the dot product of two quaternions. - - First source quaternion. - Second source quaternion. - The dot product of the two quaternions. - - - - Exponentiates a quaternion. - - The quaternion to exponentiate. - When the method completes, contains the exponentiated quaternion. - - - - Exponentiates a quaternion. - - The quaternion to exponentiate. - The exponentiated quaternion. - - - - Conjugates and renormalizes the quaternion. - - The quaternion to conjugate and renormalize. - When the method completes, contains the conjugated and renormalized quaternion. - - - - Conjugates and renormalizes the quaternion. - - The quaternion to conjugate and renormalize. - The conjugated and renormalized quaternion. - - - - Performs a linear interpolation between two quaternions. - - Start quaternion. - End quaternion. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the linear interpolation of the two quaternions. - - This method performs the linear interpolation based on the following formula. - start + (end - start) * amount - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a linear interpolation between two quaternion. - - Start quaternion. - End quaternion. - Value between 0 and 1 indicating the weight of . - The linear interpolation of the two quaternions. - - This method performs the linear interpolation based on the following formula. - start + (end - start) * amount - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Calculates the natural logarithm of the specified quaternion. - - The quaternion whose logarithm will be calculated. - When the method completes, contains the natural logarithm of the quaternion. - - - - Calculates the natural logarithm of the specified quaternion. - - The quaternion whose logarithm will be calculated. - The natural logarithm of the quaternion. - - - - Converts the quaternion into a unit quaternion. - - The quaternion to normalize. - When the method completes, contains the normalized quaternion. - - - - Converts the quaternion into a unit quaternion. - - The quaternion to normalize. - The normalized quaternion. - - - - Creates a quaternion given a rotation and an axis. - - The axis of rotation. - The angle of rotation. - When the method completes, contains the newly created quaternion. - - - - Creates a quaternion given a rotation and an axis. - - The axis of rotation. - The angle of rotation. - The newly created quaternion. - - - - Creates a quaternion given a rotation matrix. - - The rotation matrix. - When the method completes, contains the newly created quaternion. - - - - Creates a quaternion given a rotation matrix. - - The rotation matrix. - When the method completes, contains the newly created quaternion. - - - - Creates a left-handed, look-at quaternion. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - When the method completes, contains the created look-at quaternion. - - - - Creates a left-handed, look-at quaternion. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - The created look-at quaternion. - - - - Creates a left-handed, look-at quaternion. - - The camera's forward direction. - The camera's up vector. - When the method completes, contains the created look-at quaternion. - - - - Creates a left-handed, look-at quaternion. - - The camera's forward direction. - The camera's up vector. - The created look-at quaternion. - - - - Creates a right-handed, look-at quaternion. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - When the method completes, contains the created look-at quaternion. - - - - Creates a right-handed, look-at quaternion. - - The position of the viewer's eye. - The camera look-at target. - The camera's up vector. - The created look-at quaternion. - - - - Creates a right-handed, look-at quaternion. - - The camera's forward direction. - The camera's up vector. - When the method completes, contains the created look-at quaternion. - - - - Creates a right-handed, look-at quaternion. - - The camera's forward direction. - The camera's up vector. - The created look-at quaternion. - - - - Creates a left-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - When the method completes, contains the created billboard quaternion. - - - - Creates a left-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - The created billboard quaternion. - - - - Creates a right-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - When the method completes, contains the created billboard quaternion. - - - - Creates a right-handed spherical billboard that rotates around a specified object position. - - The position of the object around which the billboard will rotate. - The position of the camera. - The up vector of the camera. - The forward vector of the camera. - The created billboard quaternion. - - - - Creates a quaternion given a rotation matrix. - - The rotation matrix. - The newly created quaternion. - - - - Creates a quaternion given a yaw, pitch, and roll value. - - The yaw of rotation. - The pitch of rotation. - The roll of rotation. - When the method completes, contains the newly created quaternion. - - - - Creates a quaternion given a yaw, pitch, and roll value. - - The yaw of rotation. - The pitch of rotation. - The roll of rotation. - The newly created quaternion. - - - - Interpolates between two quaternions, using spherical linear interpolation. - - Start quaternion. - End quaternion. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the spherical linear interpolation of the two quaternions. - - - - Interpolates between two quaternions, using spherical linear interpolation. - - Start quaternion. - End quaternion. - Value between 0 and 1 indicating the weight of . - The spherical linear interpolation of the two quaternions. - - - - Interpolates between quaternions, using spherical quadrangle interpolation. - - First source quaternion. - Second source quaternion. - Third source quaternion. - Fourth source quaternion. - Value between 0 and 1 indicating the weight of interpolation. - When the method completes, contains the spherical quadrangle interpolation of the quaternions. - - - - Interpolates between quaternions, using spherical quadrangle interpolation. - - First source quaternion. - Second source quaternion. - Third source quaternion. - Fourth source quaternion. - Value between 0 and 1 indicating the weight of interpolation. - The spherical quadrangle interpolation of the quaternions. - - - - Sets up control points for spherical quadrangle interpolation. - - First source quaternion. - Second source quaternion. - Third source quaternion. - Fourth source quaternion. - An array of three quaternions that represent control points for spherical quadrangle interpolation. - - - - Adds two quaternions. - - The first quaternion to add. - The second quaternion to add. - The sum of the two quaternions. - - - - Subtracts two quaternions. - - The first quaternion to subtract. - The second quaternion to subtract. - The difference of the two quaternions. - - - - Reverses the direction of a given quaternion. - - The quaternion to negate. - A quaternion facing in the opposite direction. - - - - Scales a quaternion by the given value. - - The quaternion to scale. - The amount by which to scale the quaternion. - The scaled quaternion. - - - - Scales a quaternion by the given value. - - The quaternion to scale. - The amount by which to scale the quaternion. - The scaled quaternion. - - - - Multiplies a quaternion by another. - - The first quaternion to multiply. - The second quaternion to multiply. - The multiplied quaternion. - - - - Tests for equality between two objects. - - The first value to compare. - The second value to compare. - true if has the same value as ; otherwise, false. - - - - Tests for inequality between two objects. - - The first value to compare. - The second value to compare. - true if has a different value than ; otherwise, false. - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Represents a two dimensional mathematical vector. - - - - - A with all of its components set to zero. - - - - - The X unit (1, 0). - - - - - The Y unit (0, 1). - - - - - A with all of its components set to one. - - - - - The X component of the vector. - - - - - The Y component of the vector. - - - - - Initializes a new instance of the struct. - - The value that will be assigned to all components. - - - - Initializes a new instance of the struct. - - Initial value for the X component of the vector. - Initial value for the Y component of the vector. - - - - Initializes a new instance of the struct. - - The values to assign to the X and Y components of the vector. This must be an array with two elements. - Thrown when is null. - Thrown when contains more or less than two elements. - - - - Gets a value indicting whether this instance is normalized. - - - - - Gets a value indicting whether this vector is zero - - - - - Gets or sets the component at the specified index. - - The value of the X or Y component, depending on the index. - The index of the component to access. Use 0 for the X component and 1 for the Y component. - The value of the component at the specified index. - Thrown when the is out of the range [0, 1]. - - - - Calculates the length of the vector. - - The length of the vector. - - may be preferred when only the relative length is needed - and speed is of the essence. - - - - - Calculates the squared length of the vector. - - The squared length of the vector. - - This method may be preferred to when only a relative length is needed - and speed is of the essence. - - - - - Converts the vector into a unit vector. - - - - - Creates an array containing the elements of the vector. - - A two-element array containing the components of the vector. - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - When the method completes, contains the sum of the two vectors. - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - The sum of the two vectors. - - - - Perform a component-wise addition - - The input vector - The scalar value to be added to elements - The vector with added scalar for each element. - - - - Perform a component-wise addition - - The input vector - The scalar value to be added to elements - The vector with added scalar for each element. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - When the method completes, contains the difference of the two vectors. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - The difference of the two vectors. - - - - Perform a component-wise subtraction - - The input vector - The scalar value to be subtraced from elements - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The input vector - The scalar value to be subtraced from elements - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The scalar value to be subtraced from elements - The input vector - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The scalar value to be subtraced from elements - The input vector - The vector with subtracted scalar for each element. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Multiplies a vector with another by performing component-wise multiplication. - - The first vector to multiply. - The second vector to multiply. - When the method completes, contains the multiplied vector. - - - - Multiplies a vector with another by performing component-wise multiplication. - - The first vector to multiply. - The second vector to multiply. - The multiplied vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The amount by which to scale the vector. - The vector to scale. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Reverses the direction of a given vector. - - The vector to negate. - When the method completes, contains a vector facing in the opposite direction. - - - - Reverses the direction of a given vector. - - The vector to negate. - A vector facing in the opposite direction. - - - - Returns a containing the 2D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 2D triangle. - - A containing the 2D Cartesian coordinates of vertex 1 of the triangle. - A containing the 2D Cartesian coordinates of vertex 2 of the triangle. - A containing the 2D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - When the method completes, contains the 2D Cartesian coordinates of the specified point. - - - - Returns a containing the 2D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 2D triangle. - - A containing the 2D Cartesian coordinates of vertex 1 of the triangle. - A containing the 2D Cartesian coordinates of vertex 2 of the triangle. - A containing the 2D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - A new containing the 2D Cartesian coordinates of the specified point. - - - - Restricts a value to be within a specified range. - - The value to clamp. - The minimum value. - The maximum value. - When the method completes, contains the clamped value. - - - - Restricts a value to be within a specified range. - - The value to clamp. - The minimum value. - The maximum value. - The clamped value. - - - - Saturates this instance in the range [0,1] - - - - - Calculates the distance between two vectors. - - The first vector. - The second vector. - When the method completes, contains the distance between the two vectors. - - may be preferred when only the relative distance is needed - and speed is of the essence. - - - - - Calculates the distance between two vectors. - - The first vector. - The second vector. - The distance between the two vectors. - - may be preferred when only the relative distance is needed - and speed is of the essence. - - - - - Calculates the squared distance between two vectors. - - The first vector. - The second vector - When the method completes, contains the squared distance between the two vectors. - Distance squared is the value before taking the square root. - Distance squared can often be used in place of distance if relative comparisons are being made. - For example, consider three points A, B, and C. To determine whether B or C is further from A, - compare the distance between A and B to the distance between A and C. Calculating the two distances - involves two square roots, which are computationally expensive. However, using distance squared - provides the same information and avoids calculating two square roots. - - - - - Calculates the squared distance between two vectors. - - The first vector. - The second vector. - The squared distance between the two vectors. - Distance squared is the value before taking the square root. - Distance squared can often be used in place of distance if relative comparisons are being made. - For example, consider three points A, B, and C. To determine whether B or C is further from A, - compare the distance between A and B to the distance between A and C. Calculating the two distances - involves two square roots, which are computationally expensive. However, using distance squared - provides the same information and avoids calculating two square roots. - - - - - Calculates the dot product of two vectors. - - First source vector. - Second source vector. - When the method completes, contains the dot product of the two vectors. - - - - Calculates the dot product of two vectors. - - First source vector. - Second source vector. - The dot product of the two vectors. - - - - Converts the vector into a unit vector. - - The vector to normalize. - When the method completes, contains the normalized vector. - - - - Converts the vector into a unit vector. - - The vector to normalize. - The normalized vector. - - - - Performs a linear interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the linear interpolation of the two vectors. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a linear interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - The linear interpolation of the two vectors. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a cubic interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the cubic interpolation of the two vectors. - - - - Performs a cubic interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - The cubic interpolation of the two vectors. - - - - Performs a Hermite spline interpolation. - - First source position vector. - First source tangent vector. - Second source position vector. - Second source tangent vector. - Weighting factor. - When the method completes, contains the result of the Hermite spline interpolation. - - - - Performs a Hermite spline interpolation. - - First source position vector. - First source tangent vector. - Second source position vector. - Second source tangent vector. - Weighting factor. - The result of the Hermite spline interpolation. - - - - Performs a Catmull-Rom interpolation using the specified positions. - - The first position in the interpolation. - The second position in the interpolation. - The third position in the interpolation. - The fourth position in the interpolation. - Weighting factor. - When the method completes, contains the result of the Catmull-Rom interpolation. - - - - Performs a Catmull-Rom interpolation using the specified positions. - - The first position in the interpolation. - The second position in the interpolation. - The third position in the interpolation. - The fourth position in the interpolation. - Weighting factor. - A vector that is the result of the Catmull-Rom interpolation. - - - - Returns a vector containing the largest components of the specified vectors. - - The first source vector. - The second source vector. - When the method completes, contains an new vector composed of the largest components of the source vectors. - - - - Returns a vector containing the largest components of the specified vectors. - - The first source vector. - The second source vector. - A vector containing the largest components of the source vectors. - - - - Returns a vector containing the smallest components of the specified vectors. - - The first source vector. - The second source vector. - When the method completes, contains an new vector composed of the smallest components of the source vectors. - - - - Returns a vector containing the smallest components of the specified vectors. - - The first source vector. - The second source vector. - A vector containing the smallest components of the source vectors. - - - - Returns the reflection of a vector off a surface that has the specified normal. - - The source vector. - Normal of the surface. - When the method completes, contains the reflected vector. - Reflect only gives the direction of a reflection off a surface, it does not determine - whether the original vector was close enough to the surface to hit it. - - - - Returns the reflection of a vector off a surface that has the specified normal. - - The source vector. - Normal of the surface. - The reflected vector. - Reflect only gives the direction of a reflection off a surface, it does not determine - whether the original vector was close enough to the surface to hit it. - - - - Orthogonalizes a list of vectors. - - The list of orthogonalized vectors. - The list of vectors to orthogonalize. - - Orthogonalization is the process of making all vectors orthogonal to each other. This - means that any given vector in the list will be orthogonal to any other given vector in the - list. - Because this method uses the modified Gram-Schmidt process, the resulting vectors - tend to be numerically unstable. The numeric stability decreases according to the vectors - position in the list so that the first vector is the most stable and the last vector is the - least stable. - - Thrown when or is null. - Thrown when is shorter in length than . - - - - Orthonormalizes a list of vectors. - - The list of orthonormalized vectors. - The list of vectors to orthonormalize. - - Orthonormalization is the process of making all vectors orthogonal to each - other and making all vectors of unit length. This means that any given vector will - be orthogonal to any other given vector in the list. - Because this method uses the modified Gram-Schmidt process, the resulting vectors - tend to be numerically unstable. The numeric stability decreases according to the vectors - position in the list so that the first vector is the most stable and the last vector is the - least stable. - - Thrown when or is null. - Thrown when is shorter in length than . - - - - Transforms a 2D vector by the given rotation. - - The vector to rotate. - The rotation to apply. - When the method completes, contains the transformed . - - - - Transforms a 2D vector by the given rotation. - - The vector to rotate. - The rotation to apply. - The transformed . - - - - Transforms an array of vectors by the given rotation. - - The array of vectors to transform. - The rotation to apply. - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - - - Transforms a 2D vector by the given . - - The source vector. - The transformation . - When the method completes, contains the transformed . - - - - Transforms a 2D vector by the given . - - The source vector. - The transformation . - The transformed . - - - - Transforms an array of 2D vectors by the given . - - The array of vectors to transform. - The transformation . - The array for which the transformed vectors are stored. - Thrown when or is null. - Thrown when is shorter in length than . - - - - Performs a coordinate transformation using the given . - - The coordinate vector to transform. - The transformation . - When the method completes, contains the transformed coordinates. - - A coordinate transform performs the transformation with the assumption that the w component - is one. The four dimensional vector obtained from the transformation operation has each - component in the vector divided by the w component. This forces the w component to be one and - therefore makes the vector homogeneous. The homogeneous vector is often preferred when working - with coordinates as the w component can safely be ignored. - - - - - Performs a coordinate transformation using the given . - - The coordinate vector to transform. - The transformation . - The transformed coordinates. - - A coordinate transform performs the transformation with the assumption that the w component - is one. The four dimensional vector obtained from the transformation operation has each - component in the vector divided by the w component. This forces the w component to be one and - therefore makes the vector homogeneous. The homogeneous vector is often preferred when working - with coordinates as the w component can safely be ignored. - - - - - Performs a coordinate transformation on an array of vectors using the given . - - The array of coordinate vectors to transform. - The transformation . - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - A coordinate transform performs the transformation with the assumption that the w component - is one. The four dimensional vector obtained from the transformation operation has each - component in the vector divided by the w component. This forces the w component to be one and - therefore makes the vector homogeneous. The homogeneous vector is often preferred when working - with coordinates as the w component can safely be ignored. - - - - - Performs a normal transformation using the given . - - The normal vector to transform. - The transformation . - When the method completes, contains the transformed normal. - - A normal transform performs the transformation with the assumption that the w component - is zero. This causes the fourth row and fourth column of the matrix to be unused. The - end result is a vector that is not translated, but all other transformation properties - apply. This is often preferred for normal vectors as normals purely represent direction - rather than location because normal vectors should not be translated. - - - - - Performs a normal transformation using the given . - - The normal vector to transform. - The transformation . - The transformed normal. - - A normal transform performs the transformation with the assumption that the w component - is zero. This causes the fourth row and fourth column of the matrix to be unused. The - end result is a vector that is not translated, but all other transformation properties - apply. This is often preferred for normal vectors as normals purely represent direction - rather than location because normal vectors should not be translated. - - - - - Performs a normal transformation on an array of vectors using the given . - - The array of normal vectors to transform. - The transformation . - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - A normal transform performs the transformation with the assumption that the w component - is zero. This causes the fourth row and fourth column of the matrix to be unused. The - end result is a vector that is not translated, but all other transformation properties - apply. This is often preferred for normal vectors as normals purely represent direction - rather than location because normal vectors should not be translated. - - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - The sum of the two vectors. - - - - Multiplies a vector with another by performing component-wise multiplication equivalent to . - - The first vector to multiply. - The second vector to multiply. - The multiplication of the two vectors. - - - - Assert a vector (return it unchanged). - - The vector to assert (unchanged). - The asserted (unchanged) vector. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - The difference of the two vectors. - - - - Reverses the direction of a given vector. - - The vector to negate. - A vector facing in the opposite direction. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The amount by which to scale the vector. - The vector to scale. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Perform a component-wise addition - - The input vector. - The scalar value to be added on elements - The vector with added scalar for each element. - - - - Perform a component-wise addition - - The input vector. - The scalar value to be added on elements - The vector with added scalar for each element. - - - - Perform a component-wise subtraction - - The input vector. - The scalar value to be subtraced from elements - The vector with subtraced scalar from each element. - - - - Perform a component-wise subtraction - - The input vector. - The scalar value to be subtraced from elements - The vector with subtraced scalar from each element. - - - - Tests for equality between two objects. - - The first value to compare. - The second value to compare. - true if has the same value as ; otherwise, false. - - - - Tests for inequality between two objects. - - The first value to compare. - The second value to compare. - true if has a different value than ; otherwise, false. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Represents a three dimensional mathematical vector. - - - - - A with all of its components set to zero. - - - - - The X unit (1, 0, 0). - - - - - The Y unit (0, 1, 0). - - - - - The Z unit (0, 0, 1). - - - - - A with all of its components set to one. - - - - - A unit designating up (0, 1, 0). - - - - - A unit designating down (0, -1, 0). - - - - - A unit designating left (-1, 0, 0). - - - - - A unit designating right (1, 0, 0). - - - - - A unit designating forward in a right-handed coordinate system (0, 0, -1). - - - - - A unit designating forward in a left-handed coordinate system (0, 0, 1). - - - - - A unit designating backward in a right-handed coordinate system (0, 0, 1). - - - - - A unit designating backward in a left-handed coordinate system (0, 0, -1). - - - - - The X component of the vector. - - - - - The Y component of the vector. - - - - - The Z component of the vector. - - - - - Initializes a new instance of the struct. - - The value that will be assigned to all components. - - - - Initializes a new instance of the struct. - - Initial value for the X component of the vector. - Initial value for the Y component of the vector. - Initial value for the Z component of the vector. - - - - Initializes a new instance of the struct. - - A vector containing the values with which to initialize the X and Y components. - Initial value for the Z component of the vector. - - - - Initializes a new instance of the struct. - - The values to assign to the X, Y, and Z components of the vector. This must be an array with three elements. - Thrown when is null. - Thrown when contains more or less than three elements. - - - - Gets a value indicting whether this instance is normalized. - - - - - Gets a value indicting whether this vector is zero - - - - - Gets or sets the component at the specified index. - - The value of the X, Y, or Z component, depending on the index. - The index of the component to access. Use 0 for the X component, 1 for the Y component, and 2 for the Z component. - The value of the component at the specified index. - Thrown when the is out of the range [0, 2]. - - - - Calculates the length of the vector. - - The length of the vector. - - may be preferred when only the relative length is needed - and speed is of the essence. - - - - - Calculates the squared length of the vector. - - The squared length of the vector. - - This method may be preferred to when only a relative length is needed - and speed is of the essence. - - - - - Converts the vector into a unit vector. - - - - - Creates an array containing the elements of the vector. - - A three-element array containing the components of the vector. - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - When the method completes, contains the sum of the two vectors. - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - The sum of the two vectors. - - - - Perform a component-wise addition - - The input vector - The scalar value to be added to elements - The vector with added scalar for each element. - - - - Perform a component-wise addition - - The input vector - The scalar value to be added to elements - The vector with added scalar for each element. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - When the method completes, contains the difference of the two vectors. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - The difference of the two vectors. - - - - Perform a component-wise subtraction - - The input vector - The scalar value to be subtraced from elements - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The input vector - The scalar value to be subtraced from elements - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The scalar value to be subtraced from elements - The input vector. - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The scalar value to be subtraced from elements - The input vector. - The vector with subtracted scalar for each element. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Multiply a vector with another by performing component-wise multiplication. - - The first vector to multiply. - The second vector to multiply. - When the method completes, contains the multiplied vector. - - - - Multiply a vector with another by performing component-wise multiplication. - - The first vector to Multiply. - The second vector to multiply. - The multiplied vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The amount by which to scale the vector. - The vector to scale. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Reverses the direction of a given vector. - - The vector to negate. - When the method completes, contains a vector facing in the opposite direction. - - - - Reverses the direction of a given vector. - - The vector to negate. - A vector facing in the opposite direction. - - - - Returns a containing the 3D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 3D triangle. - - A containing the 3D Cartesian coordinates of vertex 1 of the triangle. - A containing the 3D Cartesian coordinates of vertex 2 of the triangle. - A containing the 3D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - When the method completes, contains the 3D Cartesian coordinates of the specified point. - - - - Returns a containing the 3D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 3D triangle. - - A containing the 3D Cartesian coordinates of vertex 1 of the triangle. - A containing the 3D Cartesian coordinates of vertex 2 of the triangle. - A containing the 3D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - A new containing the 3D Cartesian coordinates of the specified point. - - - - Restricts a value to be within a specified range. - - The value to clamp. - The minimum value. - The maximum value. - When the method completes, contains the clamped value. - - - - Restricts a value to be within a specified range. - - The value to clamp. - The minimum value. - The maximum value. - The clamped value. - - - - Calculates the cross product of two vectors. - - First source vector. - Second source vector. - When the method completes, contains he cross product of the two vectors. - - - - Calculates the cross product of two vectors. - - First source vector. - Second source vector. - The cross product of the two vectors. - - - - Calculates the distance between two vectors. - - The first vector. - The second vector. - When the method completes, contains the distance between the two vectors. - - may be preferred when only the relative distance is needed - and speed is of the essence. - - - - - Calculates the distance between two vectors. - - The first vector. - The second vector. - The distance between the two vectors. - - may be preferred when only the relative distance is needed - and speed is of the essence. - - - - - Calculates the squared distance between two vectors. - - The first vector. - The second vector. - When the method completes, contains the squared distance between the two vectors. - Distance squared is the value before taking the square root. - Distance squared can often be used in place of distance if relative comparisons are being made. - For example, consider three points A, B, and C. To determine whether B or C is further from A, - compare the distance between A and B to the distance between A and C. Calculating the two distances - involves two square roots, which are computationally expensive. However, using distance squared - provides the same information and avoids calculating two square roots. - - - - - Calculates the squared distance between two vectors. - - The first vector. - The second vector. - The squared distance between the two vectors. - Distance squared is the value before taking the square root. - Distance squared can often be used in place of distance if relative comparisons are being made. - For example, consider three points A, B, and C. To determine whether B or C is further from A, - compare the distance between A and B to the distance between A and C. Calculating the two distances - involves two square roots, which are computationally expensive. However, using distance squared - provides the same information and avoids calculating two square roots. - - - - - Tests whether one 3D vector is near another 3D vector. - - The left vector. - The right vector. - The epsilon. - true if left and right are near another 3D, false otherwise - - - - Tests whether one 3D vector is near another 3D vector. - - The left vector. - The right vector. - The epsilon. - true if left and right are near another 3D, false otherwise - - - - Calculates the dot product of two vectors. - - First source vector. - Second source vector. - When the method completes, contains the dot product of the two vectors. - - - - Calculates the dot product of two vectors. - - First source vector. - Second source vector. - The dot product of the two vectors. - - - - Converts the vector into a unit vector. - - The vector to normalize. - When the method completes, contains the normalized vector. - - - - Converts the vector into a unit vector. - - The vector to normalize. - The normalized vector. - - - - Performs a linear interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the linear interpolation of the two vectors. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a linear interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - The linear interpolation of the two vectors. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a cubic interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the cubic interpolation of the two vectors. - - - - Performs a cubic interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - The cubic interpolation of the two vectors. - - - - Performs a Hermite spline interpolation. - - First source position vector. - First source tangent vector. - Second source position vector. - Second source tangent vector. - Weighting factor. - When the method completes, contains the result of the Hermite spline interpolation. - - - - Performs a Hermite spline interpolation. - - First source position vector. - First source tangent vector. - Second source position vector. - Second source tangent vector. - Weighting factor. - The result of the Hermite spline interpolation. - - - - Performs a Catmull-Rom interpolation using the specified positions. - - The first position in the interpolation. - The second position in the interpolation. - The third position in the interpolation. - The fourth position in the interpolation. - Weighting factor. - When the method completes, contains the result of the Catmull-Rom interpolation. - - - - Performs a Catmull-Rom interpolation using the specified positions. - - The first position in the interpolation. - The second position in the interpolation. - The third position in the interpolation. - The fourth position in the interpolation. - Weighting factor. - A vector that is the result of the Catmull-Rom interpolation. - - - - Returns a vector containing the largest components of the specified vectors. - - The first source vector. - The second source vector. - When the method completes, contains an new vector composed of the largest components of the source vectors. - - - - Returns a vector containing the largest components of the specified vectors. - - The first source vector. - The second source vector. - A vector containing the largest components of the source vectors. - - - - Returns a vector containing the smallest components of the specified vectors. - - The first source vector. - The second source vector. - When the method completes, contains an new vector composed of the smallest components of the source vectors. - - - - Returns a vector containing the smallest components of the specified vectors. - - The first source vector. - The second source vector. - A vector containing the smallest components of the source vectors. - - - - Projects a 3D vector from object space into screen space. - - The vector to project. - The X position of the viewport. - The Y position of the viewport. - The width of the viewport. - The height of the viewport. - The minimum depth of the viewport. - The maximum depth of the viewport. - The combined world-view-projection matrix. - When the method completes, contains the vector in screen space. - - - - Projects a 3D vector from object space into screen space. - - The vector to project. - The X position of the viewport. - The Y position of the viewport. - The width of the viewport. - The height of the viewport. - The minimum depth of the viewport. - The maximum depth of the viewport. - The combined world-view-projection matrix. - The vector in screen space. - - - - Projects a 3D vector from screen space into object space. - - The vector to project. - The X position of the viewport. - The Y position of the viewport. - The width of the viewport. - The height of the viewport. - The minimum depth of the viewport. - The maximum depth of the viewport. - The combined world-view-projection matrix. - When the method completes, contains the vector in object space. - - - - Projects a 3D vector from screen space into object space. - - The vector to project. - The X position of the viewport. - The Y position of the viewport. - The width of the viewport. - The height of the viewport. - The minimum depth of the viewport. - The maximum depth of the viewport. - The combined world-view-projection matrix. - The vector in object space. - - - - Returns the reflection of a vector off a surface that has the specified normal. - - The source vector. - Normal of the surface. - When the method completes, contains the reflected vector. - Reflect only gives the direction of a reflection off a surface, it does not determine - whether the original vector was close enough to the surface to hit it. - - - - Returns the reflection of a vector off a surface that has the specified normal. - - The source vector. - Normal of the surface. - The reflected vector. - Reflect only gives the direction of a reflection off a surface, it does not determine - whether the original vector was close enough to the surface to hit it. - - - - Orthogonalizes a list of vectors. - - The list of orthogonalized vectors. - The list of vectors to orthogonalize. - - Orthogonalization is the process of making all vectors orthogonal to each other. This - means that any given vector in the list will be orthogonal to any other given vector in the - list. - Because this method uses the modified Gram-Schmidt process, the resulting vectors - tend to be numerically unstable. The numeric stability decreases according to the vectors - position in the list so that the first vector is the most stable and the last vector is the - least stable. - - Thrown when or is null. - Thrown when is shorter in length than . - - - - Orthonormalizes a list of vectors. - - The list of orthonormalized vectors. - The list of vectors to orthonormalize. - - Orthonormalization is the process of making all vectors orthogonal to each - other and making all vectors of unit length. This means that any given vector will - be orthogonal to any other given vector in the list. - Because this method uses the modified Gram-Schmidt process, the resulting vectors - tend to be numerically unstable. The numeric stability decreases according to the vectors - position in the list so that the first vector is the most stable and the last vector is the - least stable. - - Thrown when or is null. - Thrown when is shorter in length than . - - - - Transforms a 3D vector by the given rotation. - - The vector to rotate. - The rotation to apply. - When the method completes, contains the transformed . - - - - Transforms a 3D vector by the given rotation. - - The vector to rotate. - The rotation to apply. - The transformed . - - - - Transforms an array of vectors by the given rotation. - - The array of vectors to transform. - The rotation to apply. - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - - - Transforms a 3D vector by the given . - - The source vector. - The transformation . - When the method completes, contains the transformed . - - - - Transforms a 3D vector by the given . - - The source vector. - The transformation . - The transformed . - - - - Transforms a 3D vector by the given . - - The source vector. - The transformation . - When the method completes, contains the transformed . - - - - Transforms a 3D vector by the given . - - The source vector. - The transformation . - When the method completes, contains the transformed . - - - - Transforms a 3D vector by the given . - - The source vector. - The transformation . - The transformed . - - - - Transforms an array of 3D vectors by the given . - - The array of vectors to transform. - The transformation . - The array for which the transformed vectors are stored. - Thrown when or is null. - Thrown when is shorter in length than . - - - - Performs a coordinate transformation using the given . - - The coordinate vector to transform. - The transformation . - When the method completes, contains the transformed coordinates. - - A coordinate transform performs the transformation with the assumption that the w component - is one. The four dimensional vector obtained from the transformation operation has each - component in the vector divided by the w component. This forces the w component to be one and - therefore makes the vector homogeneous. The homogeneous vector is often preferred when working - with coordinates as the w component can safely be ignored. - - - - - Performs a coordinate transformation using the given . - - The coordinate vector to transform. - The transformation . - The transformed coordinates. - - A coordinate transform performs the transformation with the assumption that the w component - is one. The four dimensional vector obtained from the transformation operation has each - component in the vector divided by the w component. This forces the w component to be one and - therefore makes the vector homogeneous. The homogeneous vector is often preferred when working - with coordinates as the w component can safely be ignored. - - - - - Performs a coordinate transformation on an array of vectors using the given . - - The array of coordinate vectors to transform. - The transformation . - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - A coordinate transform performs the transformation with the assumption that the w component - is one. The four dimensional vector obtained from the transformation operation has each - component in the vector divided by the w component. This forces the w component to be one and - therefore makes the vector homogeneous. The homogeneous vector is often preferred when working - with coordinates as the w component can safely be ignored. - - - - - Performs a normal transformation using the given . - - The normal vector to transform. - The transformation . - When the method completes, contains the transformed normal. - - A normal transform performs the transformation with the assumption that the w component - is zero. This causes the fourth row and fourth column of the matrix to be unused. The - end result is a vector that is not translated, but all other transformation properties - apply. This is often preferred for normal vectors as normals purely represent direction - rather than location because normal vectors should not be translated. - - - - - Performs a normal transformation using the given . - - The normal vector to transform. - The transformation . - The transformed normal. - - A normal transform performs the transformation with the assumption that the w component - is zero. This causes the fourth row and fourth column of the matrix to be unused. The - end result is a vector that is not translated, but all other transformation properties - apply. This is often preferred for normal vectors as normals purely represent direction - rather than location because normal vectors should not be translated. - - - - - Performs a normal transformation on an array of vectors using the given . - - The array of normal vectors to transform. - The transformation . - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - A normal transform performs the transformation with the assumption that the w component - is zero. This causes the fourth row and fourth column of the matrix to be unused. The - end result is a vector that is not translated, but all other transformation properties - apply. This is often preferred for normal vectors as normals purely represent direction - rather than location because normal vectors should not be translated. - - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - The sum of the two vectors. - - - - Multiplies a vector with another by performing component-wise multiplication equivalent to . - - The first vector to multiply. - The second vector to multiply. - The multiplication of the two vectors. - - - - Assert a vector (return it unchanged). - - The vector to assert (unchanged). - The asserted (unchanged) vector. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - The difference of the two vectors. - - - - Reverses the direction of a given vector. - - The vector to negate. - A vector facing in the opposite direction. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The amount by which to scale the vector. - The vector to scale. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Perform a component-wise addition - - The input vector. - The scalar value to be added on elements - The vector with added scalar for each element. - - - - Perform a component-wise addition - - The input vector. - The scalar value to be added on elements - The vector with added scalar for each element. - - - - Perform a component-wise subtraction - - The input vector. - The scalar value to be subtraced from elements - The vector with added scalar from each element. - - - - Perform a component-wise subtraction - - The input vector. - The scalar value to be subtraced from elements - The vector with subtraced scalar from each element. - - - - Tests for equality between two objects. - - The first value to compare. - The second value to compare. - true if has the same value as ; otherwise, false. - - - - Tests for inequality between two objects. - - The first value to compare. - The second value to compare. - true if has a different value than ; otherwise, false. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Represents a four dimensional mathematical vector. - - - - - A with all of its components set to zero. - - - - - The X unit (1, 0, 0, 0). - - - - - The Y unit (0, 1, 0, 0). - - - - - The Z unit (0, 0, 1, 0). - - - - - The W unit (0, 0, 0, 1). - - - - - A with all of its components set to one. - - - - - The X component of the vector. - - - - - The Y component of the vector. - - - - - The Z component of the vector. - - - - - The W component of the vector. - - - - - Initializes a new instance of the struct. - - The value that will be assigned to all components. - - - - Initializes a new instance of the struct. - - Initial value for the X component of the vector. - Initial value for the Y component of the vector. - Initial value for the Z component of the vector. - Initial value for the W component of the vector. - - - - Initializes a new instance of the struct. - - A vector containing the values with which to initialize the X, Y, and Z components. - Initial value for the W component of the vector. - - - - Initializes a new instance of the struct. - - A vector containing the values with which to initialize the X and Y components. - Initial value for the Z component of the vector. - Initial value for the W component of the vector. - - - - Initializes a new instance of the struct. - - The values to assign to the X, Y, Z, and W components of the vector. This must be an array with four elements. - Thrown when is null. - Thrown when contains more or less than four elements. - - - - Gets a value indicting whether this instance is normalized. - - - - - Gets a value indicting whether this vector is zero - - - - - Gets or sets the component at the specified index. - - The value of the X, Y, Z, or W component, depending on the index. - The index of the component to access. Use 0 for the X component, 1 for the Y component, 2 for the Z component, and 3 for the W component. - The value of the component at the specified index. - Thrown when the is out of the range [0, 3]. - - - - Calculates the length of the vector. - - The length of the vector. - - may be preferred when only the relative length is needed - and speed is of the essence. - - - - - Calculates the squared length of the vector. - - The squared length of the vector. - - This method may be preferred to when only a relative length is needed - and speed is of the essence. - - - - - Converts the vector into a unit vector. - - - - - Creates an array containing the elements of the vector. - - A four-element array containing the components of the vector. - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - When the method completes, contains the sum of the two vectors. - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - The sum of the two vectors. - - - - Perform a component-wise addition - - The input vector - The scalar value to be added to elements - The vector with added scalar for each element. - - - - Perform a component-wise addition - - The input vector - The scalar value to be added to elements - The vector with added scalar for each element. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - When the method completes, contains the difference of the two vectors. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - The difference of the two vectors. - - - - Perform a component-wise subtraction - - The input vector - The scalar value to be subtraced from elements - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The input vector - The scalar value to be subtraced from elements - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The scalar value to be subtraced from elements - The input vector. - The vector with subtracted scalar for each element. - - - - Perform a component-wise subtraction - - The scalar value to be subtraced from elements - The input vector. - The vector with subtracted scalar for each element. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Multiplies a vector with another by performing component-wise multiplication. - - The first vector to multiply. - The second vector to multiply. - When the method completes, contains the multiplied vector. - - - - Multiplies a vector with another by performing component-wise multiplication. - - The first vector to multiply. - The second vector to multiply. - The multiplied vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The amount by which to scale the vector. - The vector to scale. - When the method completes, contains the scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Reverses the direction of a given vector. - - The vector to negate. - When the method completes, contains a vector facing in the opposite direction. - - - - Reverses the direction of a given vector. - - The vector to negate. - A vector facing in the opposite direction. - - - - Returns a containing the 4D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 4D triangle. - - A containing the 4D Cartesian coordinates of vertex 1 of the triangle. - A containing the 4D Cartesian coordinates of vertex 2 of the triangle. - A containing the 4D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - When the method completes, contains the 4D Cartesian coordinates of the specified point. - - - - Returns a containing the 4D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 4D triangle. - - A containing the 4D Cartesian coordinates of vertex 1 of the triangle. - A containing the 4D Cartesian coordinates of vertex 2 of the triangle. - A containing the 4D Cartesian coordinates of vertex 3 of the triangle. - Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in ). - Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in ). - A new containing the 4D Cartesian coordinates of the specified point. - - - - Restricts a value to be within a specified range. - - The value to clamp. - The minimum value. - The maximum value. - When the method completes, contains the clamped value. - - - - Restricts a value to be within a specified range. - - The value to clamp. - The minimum value. - The maximum value. - The clamped value. - - - - Calculates the distance between two vectors. - - The first vector. - The second vector. - When the method completes, contains the distance between the two vectors. - - may be preferred when only the relative distance is needed - and speed is of the essence. - - - - - Calculates the distance between two vectors. - - The first vector. - The second vector. - The distance between the two vectors. - - may be preferred when only the relative distance is needed - and speed is of the essence. - - - - - Calculates the squared distance between two vectors. - - The first vector. - The second vector. - When the method completes, contains the squared distance between the two vectors. - Distance squared is the value before taking the square root. - Distance squared can often be used in place of distance if relative comparisons are being made. - For example, consider three points A, B, and C. To determine whether B or C is further from A, - compare the distance between A and B to the distance between A and C. Calculating the two distances - involves two square roots, which are computationally expensive. However, using distance squared - provides the same information and avoids calculating two square roots. - - - - - Calculates the squared distance between two vectors. - - The first vector. - The second vector. - The squared distance between the two vectors. - Distance squared is the value before taking the square root. - Distance squared can often be used in place of distance if relative comparisons are being made. - For example, consider three points A, B, and C. To determine whether B or C is further from A, - compare the distance between A and B to the distance between A and C. Calculating the two distances - involves two square roots, which are computationally expensive. However, using distance squared - provides the same information and avoids calculating two square roots. - - - - - Calculates the dot product of two vectors. - - First source vector - Second source vector. - When the method completes, contains the dot product of the two vectors. - - - - Calculates the dot product of two vectors. - - First source vector. - Second source vector. - The dot product of the two vectors. - - - - Converts the vector into a unit vector. - - The vector to normalize. - When the method completes, contains the normalized vector. - - - - Converts the vector into a unit vector. - - The vector to normalize. - The normalized vector. - - - - Performs a linear interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the linear interpolation of the two vectors. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a linear interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - The linear interpolation of the two vectors. - - Passing a value of 0 will cause to be returned; a value of 1 will cause to be returned. - - - - - Performs a cubic interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - When the method completes, contains the cubic interpolation of the two vectors. - - - - Performs a cubic interpolation between two vectors. - - Start vector. - End vector. - Value between 0 and 1 indicating the weight of . - The cubic interpolation of the two vectors. - - - - Performs a Hermite spline interpolation. - - First source position vector. - First source tangent vector. - Second source position vector. - Second source tangent vector. - Weighting factor. - When the method completes, contains the result of the Hermite spline interpolation. - - - - Performs a Hermite spline interpolation. - - First source position vector. - First source tangent vector. - Second source position vector. - Second source tangent vector. - Weighting factor. - The result of the Hermite spline interpolation. - - - - Performs a Catmull-Rom interpolation using the specified positions. - - The first position in the interpolation. - The second position in the interpolation. - The third position in the interpolation. - The fourth position in the interpolation. - Weighting factor. - When the method completes, contains the result of the Catmull-Rom interpolation. - - - - Performs a Catmull-Rom interpolation using the specified positions. - - The first position in the interpolation. - The second position in the interpolation. - The third position in the interpolation. - The fourth position in the interpolation. - Weighting factor. - A vector that is the result of the Catmull-Rom interpolation. - - - - Returns a vector containing the largest components of the specified vectors. - - The first source vector. - The second source vector. - When the method completes, contains an new vector composed of the largest components of the source vectors. - - - - Returns a vector containing the largest components of the specified vectors. - - The first source vector. - The second source vector. - A vector containing the largest components of the source vectors. - - - - Returns a vector containing the smallest components of the specified vectors. - - The first source vector. - The second source vector. - When the method completes, contains an new vector composed of the smallest components of the source vectors. - - - - Returns a vector containing the smallest components of the specified vectors. - - The first source vector. - The second source vector. - A vector containing the smallest components of the source vectors. - - - - Orthogonalizes a list of vectors. - - The list of orthogonalized vectors. - The list of vectors to orthogonalize. - - Orthogonalization is the process of making all vectors orthogonal to each other. This - means that any given vector in the list will be orthogonal to any other given vector in the - list. - Because this method uses the modified Gram-Schmidt process, the resulting vectors - tend to be numerically unstable. The numeric stability decreases according to the vectors - position in the list so that the first vector is the most stable and the last vector is the - least stable. - - Thrown when or is null. - Thrown when is shorter in length than . - - - - Orthonormalizes a list of vectors. - - The list of orthonormalized vectors. - The list of vectors to orthonormalize. - - Orthonormalization is the process of making all vectors orthogonal to each - other and making all vectors of unit length. This means that any given vector will - be orthogonal to any other given vector in the list. - Because this method uses the modified Gram-Schmidt process, the resulting vectors - tend to be numerically unstable. The numeric stability decreases according to the vectors - position in the list so that the first vector is the most stable and the last vector is the - least stable. - - Thrown when or is null. - Thrown when is shorter in length than . - - - - Transforms a 4D vector by the given rotation. - - The vector to rotate. - The rotation to apply. - When the method completes, contains the transformed . - - - - Transforms a 4D vector by the given rotation. - - The vector to rotate. - The rotation to apply. - The transformed . - - - - Transforms an array of vectors by the given rotation. - - The array of vectors to transform. - The rotation to apply. - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - - - Transforms a 4D vector by the given . - - The source vector. - The transformation . - When the method completes, contains the transformed . - - - - Transforms a 4D vector by the given . - - The source vector. - The transformation . - The transformed . - - - - Transforms an array of 4D vectors by the given . - - The array of vectors to transform. - The transformation . - The array for which the transformed vectors are stored. - This array may be the same array as . - Thrown when or is null. - Thrown when is shorter in length than . - - - - Adds two vectors. - - The first vector to add. - The second vector to add. - The sum of the two vectors. - - - - Multiplies a vector with another by performing component-wise multiplication equivalent to . - - The first vector to multiply. - The second vector to multiply. - The multiplication of the two vectors. - - - - Assert a vector (return it unchanged). - - The vector to assert (unchanged). - The asserted (unchanged) vector. - - - - Subtracts two vectors. - - The first vector to subtract. - The second vector to subtract. - The difference of the two vectors. - - - - Reverses the direction of a given vector. - - The vector to negate. - A vector facing in the opposite direction. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Scales a vector by the given value. - - The amount by which to scale the vector. - The vector to scale. - The scaled vector. - - - - Scales a vector by the given value. - - The vector to scale. - The amount by which to scale the vector. - The scaled vector. - - - - Perform a component-wise addition - - The input vector. - The scalar value to be added on elements - The vector with added scalar for each element. - - - - Perform a component-wise addition - - The input vector. - The scalar value to be added on elements - The vector with added scalar for each element. - - - - Perform a component-wise subtraction - - The input vector. - The scalar value to be subtraced from elements - The vector with subtraced scalar from each element. - - - - Perform a component-wise subtraction - - The input vector. - The scalar value to be subtraced from elements - The vector with subtraced scalar from each element. - - - - Tests for equality between two objects. - - The first value to compare. - The second value to compare. - true if has the same value as ; otherwise, false. - - - - Tests for inequality between two objects. - - The first value to compare. - The second value to compare. - true if has a different value than ; otherwise, false. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Cancels the currently executing event. - - - - - Returns whether or not the specified player has enough information to start a commerce session for. - - - - - thisScriptCheck - can be destroyed if it belongs to the calling script. - - - - - Requests whether or not the player owns the specified SKU. - - - - - No, this should be called SET_ENTITY_KINEMATIC. It does more than just "freeze" it's position. - ^Rockstar Devs named it like that, Now cry about it. - - - - - Returns the name of the currently executing resource. - - - - - Gets the current game timer in milliseconds. - - - - - This native converts the passed string to a hash. - - - - - Gets the amount of metadata values with the specified key existing in the specified resource's manifest. - See also: [Resource manifest](https://docs.fivem.net/resources/manifest/) - - - - - Returns all commands that are registered in the command system. - The data returned adheres to the following layout: - - ``` - [ - { - "name": "cmdlist" - }, - { - "name": "command1" - } - ] - ``` - - - - - Gets the metadata value at a specified key/index from a resource's manifest. - See also: [Resource manifest](https://docs.fivem.net/resources/manifest/) - - - - - Returns the physical on-disk path of the specified resource. - - - - - Returns the current state of the specified resource. - - - - - Gets whether or not this is the CitizenFX server. - - - - - Requests whether or not the commerce data for the specified player has loaded. - - - - - Requests the commerce data for the specified player, including the owned SKUs. Use `IS_PLAYER_COMMERCE_INFO_LOADED` to check if it has loaded. - - - - - Reads the contents of a text file in a specified resource. - If executed on the client, this file has to be included in `files` in the resource manifest. - Example: `local data = LoadResourceFile("devtools", "data.json")` - - - - - Returns the owner ID of the specified entity. - - - - - Registered commands can be executed by entering them in the client console (this works for client side and server side registered commands). Or by entering them in the server console/through an RCON client (only works for server side registered commands). Or if you use a supported chat resource, like the default one provided in the cfx-server-data repository, then you can enter the command in chat by prefixing it with a `/`. - - Commands registered using this function can also be executed by resources, using the [`ExecuteCommand` native](#_0x561C060B). - - The restricted bool is not used on the client side. Permissions can only be checked on the server side, so if you want to limit your command with an ace permission automatically, make it a server command (by registering it in a server script). - - **Example result**: - - ![](https://i.imgur.com/TaCnG09.png) - - - - - **Experimental**: This native may be altered or removed in future versions of CitizenFX without warning. - - Registers a cached resource asset with the resource system, similar to the automatic scanning of the `stream/` folder. - - - - - An internal function which allows the current resource's HLL script runtimes to receive state for the specified event. - - - - - Registers a build task factory for resources. - The function should return an object (msgpack map) with the following fields: - - ``` - { - // returns whether the specific resource should be built - shouldBuild = func(resourceName: string): bool, - - // asynchronously start building the specific resource. - // call cb when completed - build = func(resourceName: string, cb: func(success: bool, status: string): void): void - } - ``` - - - - - Requests the specified player to buy the passed SKU. This'll pop up a prompt on the client, which upon acceptance - will open the browser prompting further purchase details. - - - - - Writes the specified data to a file in the specified resource. - Using a length of `-1` will automatically detect the length assuming the data is a C string. - - - - - p7 is always 1 in the scripts. Set to 1, an area around the destination coords for the moved entity is cleared from other entities. - Often ends with 1, 0, 0, 1); in the scripts. It works. - Axis - Invert Axis Flags - - - - - rotationOrder refers to the order yaw pitch roll is applied - value ranges from 0 to 5. What you use for rotationOrder when setting must be the same as rotationOrder when getting the rotation. - Unsure what value corresponds to what rotation order, more testing will be needed for that. - For the most part R* uses 1 or 2 as the order. - p5 is usually set as true - - - - - Note that the third parameter(denoted as z) is "up and down" with positive ment. - - - - - Ped: The ped to warp. - vehicle: The vehicle to warp the ped into. - Seat_Index: [-1 is driver seat, -2 first free passenger seat] - Moreinfo of Seat Index - DriverSeat = -1 - Passenger = 0 - Left Rear = 1 - RightRear = 2 - - - - - Call SET_PLAYER_WANTED_LEVEL_NOW for immediate effect - wantedLevel is an integer value representing 0 to 5 stars even though the game supports the 6th wanted level but no police will appear since no definitions are present for it in the game files - disableNoMission- Disables When Off Mission- appears to always be false - - - - - colorPrimary & colorSecondary are the paint index for the vehicle. - For a list of valid paint indexes, view: pastebin.com/pwHci0xK - ------------------------------------------------------------------------- - Use this to get the number of color indices: pastebin.com/RQEeqTSM - Note: minimum color index is 0, maximum color index is (numColorIndices - 1) - - - - - The backing function for TriggerClientEvent. - - - - - The backing function for TriggerEvent. - - - - - Returns whether or not the currently executing event was canceled. - - - - - Returns whether or not the specified player has enough information to start a commerce session for. - - The player handle - True or false. - - - - Cancels the currently executing event. - - - - - thisScriptCheck - can be destroyed if it belongs to the calling script. - - - - - Requests whether or not the player owns the specified SKU. - - The player handle - The ID of the SKU. - A boolean. - - - - No, this should be called SET_ENTITY_KINEMATIC. It does more than just "freeze" it's position. - ^Rockstar Devs named it like that, Now cry about it. - - - - - Returns the name of the currently executing resource. - - The name of the resource. - - - - Gets the current game timer in milliseconds. - - The game time. - - - - This native converts the passed string to a hash. - - - - - Gets the amount of metadata values with the specified key existing in the specified resource's manifest. - See also: [Resource manifest](https://docs.fivem.net/resources/manifest/) - - The resource name. - The key to look up in the resource manifest. - - - - Returns all commands that are registered in the command system. - The data returned adheres to the following layout: - ``` - [ - { - "name": "cmdlist" - }, - { - "name": "command1" - } - ] - ``` - - An object containing registered commands. - - - - Gets the metadata value at a specified key/index from a resource's manifest. - See also: [Resource manifest](https://docs.fivem.net/resources/manifest/) - - The resource name. - The key in the resource manifest. - The value index, in a range from [0..GET_NUM_RESOURCE_METDATA-1]. - - - - Returns the physical on-disk path of the specified resource. - - The name of the resource. - The resource directory name, possibly without trailing slash. - - - - Returns the current state of the specified resource. - - The name of the resource. - The resource state. One of `"missing", "started", "starting", "stopped", "stopping", "uninitialized" or "unknown"`. - - - - Gets whether or not this is the CitizenFX server. - - A boolean value. - - - - Requests whether or not the commerce data for the specified player has loaded. - - The player handle - A boolean. - - - - Requests the commerce data for the specified player, including the owned SKUs. Use `IS_PLAYER_COMMERCE_INFO_LOADED` to check if it has loaded. - - The player handle - - - - Reads the contents of a text file in a specified resource. - If executed on the client, this file has to be included in `files` in the resource manifest. - Example: `local data = LoadResourceFile("devtools", "data.json")` - - The resource name. - The file in the resource. - The file contents - - - - Returns the owner ID of the specified entity. - - The entity to get the owner for. - On the server, the server ID of the entity owner. On the client, returns the player/slot ID of the entity owner. - - - - Registered commands can be executed by entering them in the client console (this works for client side and server side registered commands). Or by entering them in the server console/through an RCON client (only works for server side registered commands). Or if you use a supported chat resource, like the default one provided in the cfx-server-data repository, then you can enter the command in chat by prefixing it with a `/`. - Commands registered using this function can also be executed by resources, using the [`ExecuteCommand` native](#_0x561C060B). - The restricted bool is not used on the client side. Permissions can only be checked on the server side, so if you want to limit your command with an ace permission automatically, make it a server command (by registering it in a server script). - **Example result**: - ![](https://i.imgur.com/TaCnG09.png) - - The command you want to register. - A handler function that gets called whenever the command is executed. - If this is a server command and you set this to true, then players will need the command.yourCommandName ace permission to execute this command. - - - - An internal function which allows the current resource's HLL script runtimes to receive state for the specified event. - - An event name, or "\*" to disable HLL event filtering for this resource. - - - - **Experimental**: This native may be altered or removed in future versions of CitizenFX without warning. - Registers a cached resource asset with the resource system, similar to the automatic scanning of the `stream/` folder. - - The resource to add the asset to. - A file name in the resource. - A cache string to pass to `REGISTER_STREAMING_FILE_FROM_CACHE` on the client. - - - - Registers a build task factory for resources. - The function should return an object (msgpack map) with the following fields: - ``` - { - // returns whether the specific resource should be built - shouldBuild = func(resourceName: string): bool, - // asynchronously start building the specific resource. - // call cb when completed - build = func(resourceName: string, cb: func(success: bool, status: string): void): void - } - ``` - - The identifier for the build task. - The factory function. - - - - Requests the specified player to buy the passed SKU. This'll pop up a prompt on the client, which upon acceptance - will open the browser prompting further purchase details. - - The player handle - The ID of the SKU. - - - - Writes the specified data to a file in the specified resource. - Using a length of `-1` will automatically detect the length assuming the data is a C string. - - The name of the resource. - The name of the file. - The data to write to the file. - The length of the written data. - A value indicating if the write succeeded. - - - - p7 is always 1 in the scripts. Set to 1, an area around the destination coords for the moved entity is cleared from other entities. - Often ends with 1, 0, 0, 1); in the scripts. It works. - Axis - Invert Axis Flags - - - - - rotationOrder refers to the order yaw pitch roll is applied - value ranges from 0 to 5. What you use for rotationOrder when setting must be the same as rotationOrder when getting the rotation. - Unsure what value corresponds to what rotation order, more testing will be needed for that. - For the most part R* uses 1 or 2 as the order. - p5 is usually set as true - - - - - Note that the third parameter(denoted as z) is "up and down" with positive ment. - - - - - Ped: The ped to warp. - vehicle: The vehicle to warp the ped into. - Seat_Index: [-1 is driver seat, -2 first free passenger seat] - Moreinfo of Seat Index - DriverSeat = -1 - Passenger = 0 - Left Rear = 1 - RightRear = 2 - - - - - Call SET_PLAYER_WANTED_LEVEL_NOW for immediate effect - wantedLevel is an integer value representing 0 to 5 stars even though the game supports the 6th wanted level but no police will appear since no definitions are present for it in the game files - disableNoMission- Disables When Off Mission- appears to always be false - - - - - colorPrimary & colorSecondary are the paint index for the vehicle. - For a list of valid paint indexes, view: pastebin.com/pwHci0xK - ------------------------------------------------------------------------- - Use this to get the number of color indices: pastebin.com/RQEeqTSM - Note: minimum color index is 0, maximum color index is (numColorIndices - 1) - - - - - The backing function for TriggerClientEvent. - - - - - The backing function for TriggerEvent. - - - - - Returns whether or not the currently executing event was canceled. - - A boolean. - - - - Gets or sets the position of this . - - - The position in world space. - - - - - Gets or sets the rotation of this . - - - The yaw, pitch, roll rotation values. - - - - - Gets or sets the heading of this . - - - The heading in degrees. - - - - - Sets a value indicating whether this should be frozen. - - - true if this position should be frozen; otherwise, false. - - - - - Gets or sets the velocity of this . - - - - - Gets the rotation velocity of this . - - - - - Gets the model of the this . - - - - - Gets the network owner of the this . - - Returns the of the network owner. - - - - Gets the network ID of the this . - - - - - Gets the type of this . - - Returns 1 if this is a Ped. - Returns 2 if this is a Vehicle. - Returns 3 if this is a Prop. - - - - Creates a new instance of an from the given handle. - - The entity handle. - Returns a if this handle corresponds to a Ped. - Returns a if this handle corresponds to a Vehicle. - Returns a if this handle corresponds to a Prop. - Returns null if no exists this the specified - - - - Creates a new instance of an from the given network ID. - - The entity network ID. - Returns a if this network ID corresponds to a Ped. - Returns a if this network ID corresponds to a Vehicle. - Returns a if this network ID corresponds to a Prop. - Returns null if no exists this the specified - - - - Checks if two s refer to the same - - The other . - true if they are the same ; otherwise, false - - - - Creates a new instance of an from the given player handle. - - The players handle. - Returns the of the player. - Returns null if no exists for the specified player - - - - - - - - - - Gets the identifier value of a particular type. - - - string steamId = player.Identifiers["steam"]; - - The identifier type to return. - The identifier value (without prefix), or null if it could not be found. - - - - Empty Shared Field - - - - An uninitialized Color Structure - - - - - Equality Operator - - - - Compares two Color objects. The return value is - based on the equivalence of the A,R,G,B properties - of the two Colors. - - - - - Inequality Operator - - - - Compares two Color objects. The return value is - based on the equivalence of the A,R,G,B properties - of the two colors. - - - - - IsEmpty Property - - - - Indicates transparent black. R,G,B = 0; A=0? - - - - - Equals Method - - - - Checks equivalence of this Color and another object. - - - - - GetHashCode Method - - - - Calculates a hashing value. - - - - - ToString Method - - - - Formats the Color as a string in ARGB notation. - - - - - Empty Shared Field - - - - An uninitialized Point Structure. - - - - - Ceiling Shared Method - - - - Produces a Point structure from a PointF structure by - taking the ceiling of the X and Y properties. - - - - - Round Shared Method - - - - Produces a Point structure from a PointF structure by - rounding the X and Y properties. - - - - - Truncate Shared Method - - - - Produces a Point structure from a PointF structure by - truncating the X and Y properties. - - - - - Addition Operator - - - - Translates a Point using the Width and Height - properties of the given Size. - - - - - Equality Operator - - - - Compares two Point objects. The return value is - based on the equivalence of the X and Y properties - of the two points. - - - - - Inequality Operator - - - - Compares two Point objects. The return value is - based on the equivalence of the X and Y properties - of the two points. - - - - - Subtraction Operator - - - - Translates a Point using the negation of the Width - and Height properties of the given Size. - - - - - Point to Size Conversion - - - - Returns a Size based on the Coordinates of a given - Point. Requires explicit cast. - - - - - Point to PointF Conversion - - - - Creates a PointF based on the coordinates of a given - Point. No explicit cast is required. - - - - - Point Constructor - - - - Creates a Point from an integer which holds the Y - coordinate in the high order 16 bits and the X - coordinate in the low order 16 bits. - - - - - Point Constructor - - - - Creates a Point from a Size value. - - - - - Point Constructor - - - - Creates a Point from a specified x,y coordinate pair. - - - - - IsEmpty Property - - - - Indicates if both X and Y are zero. - - - - - X Property - - - - The X coordinate of the Point. - - - - - Y Property - - - - The Y coordinate of the Point. - - - - - Equals Method - - - - Checks equivalence of this Point and another object. - - - - - GetHashCode Method - - - - Calculates a hashing value. - - - - - Offset Method - - - - Moves the Point a specified distance. - - - - - ToString Method - - - - Formats the Point as a string in coordinate notation. - - - - - Empty Shared Field - - - - An uninitialized PointF Structure. - - - - - Addition Operator - - - - Translates a PointF using the Width and Height - properties of the given Size. - - - - - Equality Operator - - - - Compares two PointF objects. The return value is - based on the equivalence of the X and Y properties - of the two points. - - - - - Inequality Operator - - - - Compares two PointF objects. The return value is - based on the equivalence of the X and Y properties - of the two points. - - - - - Subtraction Operator - - - - Translates a PointF using the negation of the Width - and Height properties of the given Size. - - - - - PointF Constructor - - - - Creates a PointF from a specified x,y coordinate pair. - - - - - IsEmpty Property - - - - Indicates if both X and Y are zero. - - - - - X Property - - - - The X coordinate of the PointF. - - - - - Y Property - - - - The Y coordinate of the PointF. - - - - - Equals Method - - - - Checks equivalence of this PointF and another object. - - - - - GetHashCode Method - - - - Calculates a hashing value. - - - - - ToString Method - - - - Formats the PointF as a string in coordinate notation. - - - - - Empty Shared Field - - - - An uninitialized Size Structure. - - - - - Ceiling Shared Method - - - - Produces a Size structure from a SizeF structure by - taking the ceiling of the Width and Height properties. - - - - - Round Shared Method - - - - Produces a Size structure from a SizeF structure by - rounding the Width and Height properties. - - - - - Truncate Shared Method - - - - Produces a Size structure from a SizeF structure by - truncating the Width and Height properties. - - - - - Addition Operator - - - - Addition of two Size structures. - - - - - Equality Operator - - - - Compares two Size objects. The return value is - based on the equivalence of the Width and Height - properties of the two Sizes. - - - - - Inequality Operator - - - - Compares two Size objects. The return value is - based on the equivalence of the Width and Height - properties of the two Sizes. - - - - - Subtraction Operator - - - - Subtracts two Size structures. - - - - - Size to Point Conversion - - - - Returns a Point based on the dimensions of a given - Size. Requires explicit cast. - - - - - Size to SizeF Conversion - - - - Creates a SizeF based on the dimensions of a given - Size. No explicit cast is required. - - - - - Size Constructor - - - - Creates a Size from a Point value. - - - - - Size Constructor - - - - Creates a Size from specified dimensions. - - - - - IsEmpty Property - - - - Indicates if both Width and Height are zero. - - - - - Width Property - - - - The Width coordinate of the Size. - - - - - Height Property - - - - The Height coordinate of the Size. - - - - - Equals Method - - - - Checks equivalence of this Size and another object. - - - - - GetHashCode Method - - - - Calculates a hashing value. - - - - - ToString Method - - - - Formats the Size as a string in coordinate notation. - - - - - Empty Shared Field - - - - An uninitialized SizeF Structure. - - - - - Addition Operator - - - - Addition of two SizeF structures. - - - - - Equality Operator - - - - Compares two SizeF objects. The return value is - based on the equivalence of the Width and Height - properties of the two Sizes. - - - - - Inequality Operator - - - - Compares two SizeF objects. The return value is - based on the equivalence of the Width and Height - properties of the two Sizes. - - - - - Subtraction Operator - - - - Subtracts two SizeF structures. - - - - - SizeF to PointF Conversion - - - - Returns a PointF based on the dimensions of a given - SizeF. Requires explicit cast. - - - - - SizeF Constructor - - - - Creates a SizeF from a PointF value. - - - - - SizeF Constructor - - - - Creates a SizeF from an existing SizeF value. - - - - - SizeF Constructor - - - - Creates a SizeF from specified dimensions. - - - - - IsEmpty Property - - - - Indicates if both Width and Height are zero. - - - - - Width Property - - - - The Width coordinate of the SizeF. - - - - - Height Property - - - - The Height coordinate of the SizeF. - - - - - Equals Method - - - - Checks equivalence of this SizeF and another object. - - - - - GetHashCode Method - - - - Calculates a hashing value. - - - - - ToString Method - - - - Formats the SizeF as a string in coordinate notation. - - - - diff --git a/build/Client.net.dll b/build/Client.net.dll index 27dfa88cccbaf4ceb66d6e1f5c73f9ca3f79e258..411616cb1aadf36858368b47a55825103d0b5df1 100644 GIT binary patch delta 2778 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 CxN)ff diff --git a/build/Server.net.dll b/build/Server.net.dll index 5083ced2473004c828c48b71c0aabc8bc839c898..37100d524763cd8d2b28cce953266d1729064628 100644 GIT binary patch delta 689 zcmXw0T}YEr7=F(AHn)A7Yje6NqrPq8X6hOUQ9TNd$ws%7~Dni!dU*5h94XiRk_2df`0pbDr=0o^#&!=rq z&-^fB5BzYThp--J2|Y*=He-UYt&Htu>?-ShjaQ5ciG!+`z<& z@dOKsZqseu^r6~^;-e|hIS`FRd)r@^K7`J6U+;J>8z00+XtwAI#UkpsnoOlHsH54~ zfz*JS9f>E^SX9l7tC?78_#71sUrfZrZuyf4n+?H=&97G#8#-glOzF*A{8+r?+!8 JzO#J5@DFV*mSX?_ delta 1092 zcmX|A4@?th6o21c4`{Eetwp4rgM(J6l>bFx=mr8AHUw5cbOKRUyP63Bq;Uq_pbXg< z3x@Kkv>8FBW^`s7)G{KIrJB_s9hod68Egw7nk|_lbJ?89OcwVJVJ~^V_ulV*_wL>M z@;UWRLtl4%hxcJEtl2We3p_~&kRuWHlzh?Xy0TBPk_7OwNaO=Fv#vO`yzZ%LE)ifa zjboDO0g@;y;!z@?%V`fW5(S+giDV;PBJmo*h&0+BbOtzZ3ILXH075%t*{Ly%K?NX7 z>SvoaVr(J!8G{BG<=y9Zvx7*DRdV*!M`GiYzJ(HEc!3&XxGArkO?v1 zfqRS|^w0@rk_tTJLMo`C5b;^CBI=+X(Fi9HO{=(b6$@AS5_k*w%2lRj6%WHXWa=S+ z=ztLJ^AtoAiBp^iM_ji^SilJ->m^1bC~)nPQl$M_u8}o-|4;aI{nU*Dk7MS(Rv|qJ z5`mBiRsh0bqEd;a0)dW4lrjuZR(gSfZ&p$3nw_T4IPiM zqOz#+wUzSTXzye}k9{d+c;ZsMI3TslexQA_B%05Mx33AVt_!fU;ntg;JQ$c;kj^i~ zms*MnBsj4{_Nc{btFr-#5fshGDh#H16Y%L{8S`M?EbLS4F*EONfxB{L;7rGE*4xVk z6{*`ovn6R^Gr!#k7IbRl&IV5T;|ud@+e^?F;DRSYGvS)^?T-`2_FHe2jeItK>I;4% z<(tOt)+xsJ&UFLJCiaC*%5K~0-nJ?aNxHe=hJ;7-8~v`c=vY#FZZYAFq@wHUIzs diff --git a/build/__resource.lua b/build/__resource.lua deleted file mode 100644 index ad02fea..0000000 --- a/build/__resource.lua +++ /dev/null @@ -1,9 +0,0 @@ -resource_manifest_version '44febabe-d386-4d18-afbe-5e627f4af937' - -client_scripts { - 'Client.net.dll', -} - -server_script { - 'Server.net.dll', -} \ No newline at end of file From 83c3ebe9b7cba83d94f3547a4b85497eea019b6f Mon Sep 17 00:00:00 2001 From: ToastinYou Date: Thu, 19 Nov 2020 17:44:09 -0500 Subject: [PATCH 2/6] remove build folder.. --- .gitignore | 2 +- build/Client.net.dll | Bin 7168 -> 0 bytes build/Server.net.dll | Bin 4608 -> 0 bytes 3 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 build/Client.net.dll delete mode 100644 build/Server.net.dll diff --git a/.gitignore b/.gitignore index 8480127..21a0868 100644 --- a/.gitignore +++ b/.gitignore @@ -23,7 +23,7 @@ bld/ [Bb]in/ [Oo]bj/ [Ll]og/ -build/ +build/* # Visual Studio 2015/2017 cache/options directory .vs/ diff --git a/build/Client.net.dll b/build/Client.net.dll deleted file mode 100644 index 411616cb1aadf36858368b47a55825103d0b5df1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7168 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 diff --git a/build/Server.net.dll b/build/Server.net.dll deleted file mode 100644 index 37100d524763cd8d2b28cce953266d1729064628..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4608 zcmeHKU2Ggz75--Z6UU*OI&sn;LOP8NByBu68|TL^4ZHUGkHpU6b=?4#oY~#$&7`wC z%goq`i$IAYDk4!qrB+qdO8mU#jR!=lQc%@M@RR~V2qa!2@xV*Ok5uu15aBy_X4Y#v zL;?w^LY(!Sd++(X=bn4-xyLhK_!im#wDY@r7kG=UKvv`Xqbp>mAA38EA8fz%_*=%A zTaV9Qa00X8dsW}AnPt0P_d>IzOn;?rI(0LDwrJM8in1Pfpu0adT^I+>7;X5&ogXeG zv)#r4bB8eqbd%BIpp}=?L_41wZ?vPq`?HvTYlh| zInusm*^!MBhgu*@?=4@s9tAb)JegukubXWQSzt8jC++JJSAzJKLI++pfpgmcLx}$Y zd?IzQM=$0HVE14f*odtjw0XNo_t|e8+|6Eh=iy$o`4n#KeQ^(kyxv4_wD{RkBlbYn zvpQrAT1N+u9vK#gI^YtUTwmW;fp4(=yY!2p@6@Y-NPN8mTBh%rB0gYW!q7MQ%ygb@ zI}ge{o#-2Ny^;tMsBTQ|NkO&(e>09^Z?t}TrNcTM`@jgbwUaNncK2+4x?n z6Ti^-DjKPsc#k5TxPf8P2MxhJ8o#OWHI3iU_+2gY3a(LRN#hSR<#%XLb>q*e0uRWH zA-D#?WlibEAB|4@GBu!GiTser8T4}~wV2B3e!&#~UU>K-Z5vqBqpNs`=Q&!*>C|>y zJ#UzG0#_+TyZM7 zkVm()5-LpiUajb@_%zm}m>r?HVazN+eB z6bOIaB3ILJTy1Agx%Oq<3)cC`j0K-NQ4Y5<#=ORw?^G|`lT~Zj^|f`Kxs`h8)RfH0 zc}kA!ge}~SyJO8#WL2TK7KEy1#i~{u5@s6|mA|TdtFA(;;<~XQW^AY4R8q^XDoYs9 z*tGdpq>bpfz$%BHpQz;>yIS`Go~WQw0H zU8FxPo@1V|t14e_4o2-j74^>XGVGj#Ldd&aWzQ{ffSIce=9fOTYfrnODE_&h68$52ev=8b()}38RCZo*o&d z1*O`y@iUR`Kq{3^cbX|9{jq&rZ$7`c@W{~Z>mt2trpt&Q-~Eyc=Tm#1_3g&2S0BGz zR{BiNU+}$4fkC-#I&1DQ&>3$BIyB`W1G}0B%Y5&KX=VoH0Xk%$-##&+C& z%L7Blm(@UNcxZ57@YwO;6DL)sVh>ZY+dxOg%2A4{c6`2h*$&5t=xM%f$E*x} zO!qdKc_(Nvxyem+I6MsVV=v#l^>h5?{p)+b zGV+se#$}eQ`-b#Q>1~Ci9E&(hd?WI%tMiF|dX&<6Msx3eoJKZPcv}trdlab~fQO?h zxhR9i9K3F0iXBH@8nw9n}$J4|UQPqtfxBuxM zVkdc{llC)Wm>@5;oYhvyb70V_&FnJ4+#|VZn)zp$8AYI9Yt55ulN#t;Bw5VkD1z^| zhcs%?r;t((>D7B!l1pN6)yZ!NC5ZtZCDmZw^H_`3IJaazU3ijrpoQ1a^RIEWww8-0 z$8l_wZcu^|7k4=pJS*xvsaM=|PKphP97;;^Qgoq^v|G)N*zD z;I??uYTKfeWNnMNSn{&K6n0Vn4Cz&^DXVQTql=eST%a`X{}!6bTG!++Lm!Sn%JnB` zrPWTfD;3(U(XP*mEr}c$5%KwKJcsOx_?*N^MiOo4HztY8y?nQHd<(SWaYZYPZP>E% zjruf4UnQ;^U9 I|8fNW34iamNdN!< From 83638468b22fde872cdb230155ba6a232b57414a Mon Sep 17 00:00:00 2001 From: ToastinYou Date: Thu, 19 Nov 2020 19:09:20 -0500 Subject: [PATCH 3/6] updated code to better incorporate future weapon additions --- Client/Main.cs | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/Client/Main.cs b/Client/Main.cs index 8472f41..7c1486a 100644 --- a/Client/Main.cs +++ b/Client/Main.cs @@ -1,8 +1,6 @@ using CitizenFX.Core; using CitizenFX.Core.Native; -using CitizenFX.Core.UI; using System; -using System.Collections.Generic; using System.Threading.Tasks; namespace Client @@ -11,12 +9,6 @@ public class Main : BaseScript { private bool _reticleAllowed; - private List _overrideDisable = new List() - { - WeaponHash.Unarmed, WeaponHash.StunGun, WeaponHash.SniperRifle, WeaponHash.HeavySniper, - WeaponHash.HeavySniperMk2, WeaponHash.MarksmanRifle, WeaponHash.MarksmanRifleMk2, - }; - public Main() { Log("Resource loaded."); @@ -38,9 +30,8 @@ private async Task ProcessTask() if (w != null) { - WeaponHash wHash = w.Hash; - - if (!_overrideDisable.Contains(wHash)) + // disable reticle for musket and all weapons EXCEPT snipers, unarmed, stungun, and aircraft (w.Group == 0). + if (w.Hash == WeaponHash.Musket || !(w.Group == WeaponGroup.Sniper || w.Group == WeaponGroup.Unarmed || w.Group == WeaponGroup.Stungun || w.Group == 0)) { // if ace perm "Reticle" is not allowed (cannot have reticle) then.. if (!_reticleAllowed) From 8aa6b297143ea811b255017f1b251b896416b788 Mon Sep 17 00:00:00 2001 From: ToastinYou Date: Thu, 19 Nov 2020 19:10:11 -0500 Subject: [PATCH 4/6] add new line to end of logs. --- Client/Main.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Client/Main.cs b/Client/Main.cs index 7c1486a..7640522 100644 --- a/Client/Main.cs +++ b/Client/Main.cs @@ -49,7 +49,7 @@ private async Task ProcessTask() /// Message to display. private void Log(string msg) { - Debug.Write($"[NoReticle]: {msg}"); + Debug.Write($"[NoReticle]: {msg}\n"); } } } From 40c1ec5424bd14bd24bed2e779a43f9654e8f563 Mon Sep 17 00:00:00 2001 From: ToastinYou Date: Thu, 19 Nov 2020 19:21:24 -0500 Subject: [PATCH 5/6] add ace permission to enable stun gun reticle. --- Client/Main.cs | 15 +++++++++++---- Server/Main.cs | 9 +++++++-- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/Client/Main.cs b/Client/Main.cs index 7640522..bb8a122 100644 --- a/Client/Main.cs +++ b/Client/Main.cs @@ -7,12 +7,12 @@ namespace Client { public class Main : BaseScript { - private bool _reticleAllowed; + private bool _reticleAllowed, _stunGunReticleAllowed; public Main() { Log("Resource loaded."); - TriggerServerEvent("NoReticle:Server:GetPlayerReticleAceAllowed", Game.Player.Handle); + TriggerServerEvent("NoReticle:Server:GetAcePermissions", Game.Player.Handle); } [EventHandler("NoReticle:Client:SetPlayerReticleAceAllowed")] @@ -22,6 +22,13 @@ private void SetPlayerReticleAceAllowed() _reticleAllowed = true; } + [EventHandler("NoReticle:Client:SetStunGunReticleAllowed")] + private void SetStunGunReticleAllowed() + { + Log("Allowing stun gun reticle."); + _stunGunReticleAllowed = true; + } + [Tick] private async Task ProcessTask() { @@ -30,8 +37,8 @@ private async Task ProcessTask() if (w != null) { - // disable reticle for musket and all weapons EXCEPT snipers, unarmed, stungun, and aircraft (w.Group == 0). - if (w.Hash == WeaponHash.Musket || !(w.Group == WeaponGroup.Sniper || w.Group == WeaponGroup.Unarmed || w.Group == WeaponGroup.Stungun || w.Group == 0)) + // disable reticle for musket and all weapons EXCEPT snipers, unarmed, stungun (if permissions allowed), and aircraft (w.Group == 0). + if (w.Hash == WeaponHash.Musket || !(w.Group == WeaponGroup.Sniper || w.Group == WeaponGroup.Unarmed || (_stunGunReticleAllowed && w.Group == WeaponGroup.Stungun) || w.Group == 0)) { // if ace perm "Reticle" is not allowed (cannot have reticle) then.. if (!_reticleAllowed) diff --git a/Server/Main.cs b/Server/Main.cs index 73e4b58..ccfce73 100644 --- a/Server/Main.cs +++ b/Server/Main.cs @@ -7,14 +7,19 @@ public class Main : BaseScript { public Main() { } - [EventHandler("NoReticle:Server:GetPlayerReticleAceAllowed")] - private void GetPlayerReticleAceAllowed([FromSource] Player p) + [EventHandler("NoReticle:Server:GetAcePermissions")] + private void GetAcePermissions([FromSource] Player p) { // if ace permission 'Reticle' is allowed for the player then show the reticle.. if (API.IsPlayerAceAllowed(p.Handle, "Reticle")) { p.TriggerEvent("NoReticle:Client:SetPlayerReticleAceAllowed"); } + // if ace permission 'ReticleStunGun' is allowed for the player then show the reticle.. + if (API.IsPlayerAceAllowed(p.Handle, "ReticleStunGun")) + { + p.TriggerEvent("NoReticle:Client:SetStunGunReticleAllowed"); + } } } } \ No newline at end of file From c51e30b31c0a447f1e41faed8ca21a0a062956f7 Mon Sep 17 00:00:00 2001 From: ToastinYou Date: Thu, 19 Nov 2020 19:22:50 -0500 Subject: [PATCH 6/6] update debugging info on server-side for release build. --- Server/Server.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/Server.csproj b/Server/Server.csproj index 260b8b1..11262c2 100644 --- a/Server/Server.csproj +++ b/Server/Server.csproj @@ -22,7 +22,7 @@ 4 - embedded + portable true ..\build\ TRACE