mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Remove some redundant PV and SV value BE filters
- Fixed some "say", "switch" and "call" exceptions were broken
- Anything containing call is covered by 5 "call"
- Anything containing spawn is covered by 5 "spawn"
- Anything containing { or ( is covered by the first line
- Anything containing setDi is covered by 5 "setDi"
- Anything containing bis_ is covered by 5 bis_
- Anything containing bis_fnc is covered by 5 "BIS_fnc"
- Anything containing server_ is covered by 5 server_
- Anything containing fnc_ is covered by 5 fnc_
- Anything containing count is covered by 5 "count"
- Anything containing onPlayer is covered by 5 "onPlayer"
- Anything containing this is logged by 1 "this"
- Anything containing for is logged by 1 "for"
- Anything containing ' is covered by 5 "'"
- Anything containing terminate is covered by 5 "terminate"
- removed duplicate getVariable filter
- createDialog is covered by 5 "createD"
- set, exec and str with two single spaces are covered by the same with
one single space
- removed some set, exec and str that were already covered by the line
directly above or below them
- removed some old dayz function names that aren't used anymore.
- made first line in setvariableval.txt stricter (no exceptions) by
moving "+" to a separate line
This commit is contained in:
@@ -1,22 +1,22 @@
|
|||||||
//new
|
//new
|
||||||
5 "[;{&%]"
|
5 "[;{(&%]"
|
||||||
5 "\+" !"e\+0"
|
5 "\+" !"e\+0"
|
||||||
1 "wrong side" // group hack, ban the first in a row
|
1 "wrong side" // group hack, ban the first in a row
|
||||||
1 "(init|set|add|action|all|attach|ATL|ASL|eye|exec|group|unit|clear|create|menu|ctrl|display|text|hint|drop)" !"\"(SetFuel|dayzSetDate|titleText|(|with )MeleeBaseball(|Bat(|Barbed|Nails))|StashSmall|smallboat_[12])\"" !"_Ball " !Attachement !Attachment_ !aslo
|
1 "(init|set|add|action|all|attach|ATL|ASL|eye|exec|group|unit|clear|create|menu|ctrl|display|text|hint|drop)" !"\"(SetFuel|dayzSetDate|titleText|(|with )MeleeBaseball(|Bat(|Barbed|Nails))|StashSmall|smallboat_[12])\"" !"_Ball " !Attachement !Attachment_ !aslo
|
||||||
1 "(entit|exit|able|find|fuel|join|frame|move|team|throw)" !"\"(switchmove|ItemFuelcan(|Empty)|PartFueltank|SetFuel|z_refuel_0|ItemSodaRocketFuel|cable_tie)\""
|
1 "(entit|exit|able|find|fuel|join|frame|move|team|throw)" !"\"(switchmove|ItemFuelcan(|Empty)|PartFueltank|SetFuel|z_refuel_0|ItemSodaRocketFuel|cable_tie)\""
|
||||||
1 "\"say\"" !"say\",\[\"z_[^"]+\",[0-9]+\]\]$"
|
1 "\"say\"" !"say\",\[\"z_"
|
||||||
1 "\"titleText\""
|
1 "\"titleText\""
|
||||||
1 "draw"
|
1 "draw"
|
||||||
1 "delete"
|
1 "delete"
|
||||||
1 "copy"
|
1 "copy"
|
||||||
1 "switch" !="\"switchmove\"" !="\"remExField\" = \[,<NULL-object>,\"switchmove\",\"ActsPercMrunSlowWrflDf_FlipFlopPara\"\]" !="\[<NULL-object>,<NULL-object>,\"switchmove\",\"amovpercmstpsnonwnondnon_zevl\"\]" !="\[<NULL-object>,<NULL-object>,\"switchmove\",\"amovpercmstpslowwrfldnon_gear\"\]" !="\[<NULL-object>,<NULL-object>,\"switchmove\",\"aidlpercmstpsnonwnondnon_player_idlesteady03\"\]" !="\[<NULL-object>,<NULL-object>,\"switchmove\",\"aidlpercmstpsraswpstdnon_player_idlesteady02\"\]" !="\[<NULL-object>,<NULL-object>,\"switchmove\",\"aidlpercmstpsraswpstdnon_player_idlesteady03\"\]" !="\[<NULL-object>,<NULL-object>,\"switchmove\",\"aswmpercmstpsnonwnondnon\"\]" !="\[<NULL-object>,<NULL-object>,\"switchmove",\"aidlpercmstpslowwrfldnon_player_idlesteady04\"\]"
|
1 "switch" !="\"switchmove\"" !="\"remExField\" = \[,<NULL-object>,\"switchmove\",\"ActsPercMrunSlowWrflDf_FlipFlopPara\"\]" !="\[<NULL-object>,<NULL-object>,\"switchmove\",\"amovpercmstpsnonwnondnon_zevl\"\]" !="\[<NULL-object>,<NULL-object>,\"switchmove\",\"amovpercmstpslowwrfldnon_gear\"\]" !="\[<NULL-object>,<NULL-object>,\"switchmove\",\"aidlpercmstpsnonwnondnon_player_idlesteady03\"\]" !="\[<NULL-object>,<NULL-object>,\"switchmove\",\"aidlpercmstpsraswpstdnon_player_idlesteady02\"\]" !="\[<NULL-object>,<NULL-object>,\"switchmove\",\"aidlpercmstpsraswpstdnon_player_idlesteady03\"\]" !="\[<NULL-object>,<NULL-object>,\"switchmove\",\"aswmpercmstpsnonwnondnon\"\]" !="\[<NULL-object>,<NULL-object>,\"switchmove\",\"aidlpercmstpslowwrfldnon_player_idlesteady04\"\]"
|
||||||
1 "hide" !"hideObject"
|
1 "hide" !"hideObject"
|
||||||
1 "icon"
|
1 "icon"
|
||||||
1 "marker"
|
1 "marker"
|
||||||
1 "server"
|
1 "server"
|
||||||
5 "compile"
|
5 "compile"
|
||||||
5 "loadFile"
|
5 "loadFile"
|
||||||
5 "call" !="dog_callBack" !="remExField" = \[,,"say",\["dog_callBack",120\]\]"
|
5 "call" !="dog_callBack" !="\[,<NULL-object>,\"say\",\[\"dog_callBack\",120\]\]"
|
||||||
1 "chat"
|
1 "chat"
|
||||||
1 "fade"
|
1 "fade"
|
||||||
5 "mission"
|
5 "mission"
|
||||||
@@ -39,8 +39,6 @@
|
|||||||
5 "hintC"
|
5 "hintC"
|
||||||
5 "hintS"
|
5 "hintS"
|
||||||
5 "loading"
|
5 "loading"
|
||||||
5 "\"call\""
|
|
||||||
5 "call compile"
|
|
||||||
1 "jiprequest" !="<NULL-object>,,\"JIPrequest\"" !="\[<NULL-object>,,\"JIPrequest\"\]"
|
1 "jiprequest" !="<NULL-object>,,\"JIPrequest\"" !="\[<NULL-object>,,\"JIPrequest\"\]"
|
||||||
1 "jipexec" //1 "rjipexec"
|
1 "jipexec" //1 "rjipexec"
|
||||||
5 "toString"
|
5 "toString"
|
||||||
@@ -48,17 +46,8 @@
|
|||||||
5 "ctrlset"
|
5 "ctrlset"
|
||||||
5 "rsay"
|
5 "rsay"
|
||||||
5 "rland"
|
5 "rland"
|
||||||
5 "rsetDir"
|
|
||||||
5 "_YakB"
|
5 "_YakB"
|
||||||
1 "BIS_"
|
|
||||||
5 "local_sefFuel"
|
|
||||||
1 "object_delLocal"
|
|
||||||
1 "fnc_vehicleEventHandler"
|
|
||||||
1 "player_medInject"
|
1 "player_medInject"
|
||||||
1 "fnc_usec_damageVehicle"
|
|
||||||
1 "dayzplayermorph"
|
|
||||||
1 "server_playerMorph"
|
|
||||||
5 "getVariable"
|
|
||||||
5 "hiveupdateresu"
|
5 "hiveupdateresu"
|
||||||
5 "isServer"
|
5 "isServer"
|
||||||
5 "isDedicated"
|
5 "isDedicated"
|
||||||
@@ -70,7 +59,6 @@
|
|||||||
5 "while"
|
5 "while"
|
||||||
5 "count"
|
5 "count"
|
||||||
5 "markerText"
|
5 "markerText"
|
||||||
5 "BIS_fnc"
|
|
||||||
5 "_bis"
|
5 "_bis"
|
||||||
5 "markerType"
|
5 "markerType"
|
||||||
5 "teamtype"
|
5 "teamtype"
|
||||||
@@ -81,10 +69,6 @@
|
|||||||
5 "processInitCommands"
|
5 "processInitCommands"
|
||||||
5 "promptRName\.sqf"
|
5 "promptRName\.sqf"
|
||||||
5 "\.sqf\"\]" !="init\.sqf\"\]"
|
5 "\.sqf\"\]" !="init\.sqf\"\]"
|
||||||
5 "rpcCodeVarName"
|
|
||||||
5 "rpcDirectCall"
|
|
||||||
5 "broadcastRpcCallAll"
|
|
||||||
5 "broadcastRpcCallIfLocal"
|
|
||||||
5 "norrnRACarUp"
|
5 "norrnRACarUp"
|
||||||
5 "norrnRAPicUp"
|
5 "norrnRAPicUp"
|
||||||
5 "markerBrush"
|
5 "markerBrush"
|
||||||
@@ -170,21 +154,9 @@
|
|||||||
5 "onTeamS"
|
5 "onTeamS"
|
||||||
5 "onShowNew"
|
5 "onShowNew"
|
||||||
5 "setUnconscious"
|
5 "setUnconscious"
|
||||||
5 " exec "
|
|
||||||
5 " set "
|
|
||||||
5 " str "
|
|
||||||
5 "exec\("
|
|
||||||
5 "set\("
|
|
||||||
5 "str\("
|
|
||||||
5 "exec\["
|
5 "exec\["
|
||||||
5 "set\["
|
5 "set\["
|
||||||
5 "str\["
|
5 "str\["
|
||||||
5 "exec\{"
|
|
||||||
5 "set\{"
|
|
||||||
5 "str\{"
|
|
||||||
5 "exec'"
|
|
||||||
5 "set'"
|
|
||||||
5 "str'"
|
|
||||||
5 "exec\""
|
5 "exec\""
|
||||||
5 "set\""
|
5 "set\""
|
||||||
5 "str\""
|
5 "str\""
|
||||||
@@ -197,39 +169,26 @@
|
|||||||
5 "\}exec"
|
5 "\}exec"
|
||||||
5 "\}set"
|
5 "\}set"
|
||||||
5 "\}str"
|
5 "\}str"
|
||||||
5 "'exec"
|
|
||||||
5 "'set"
|
|
||||||
5 "'str"
|
|
||||||
5 "str "
|
5 "str "
|
||||||
5 " \nstr"
|
|
||||||
5 "\nstr"
|
5 "\nstr"
|
||||||
5 "str\n"
|
5 "str\n"
|
||||||
5 "str\n "
|
|
||||||
5 ",str"
|
5 ",str"
|
||||||
5 "str,"
|
5 "str,"
|
||||||
5 "str "
|
5 "str "
|
||||||
5 "set "
|
5 "set "
|
||||||
5 " \nset"
|
|
||||||
5 "\nset"
|
5 "\nset"
|
||||||
5 "set\n"
|
5 "set\n"
|
||||||
5 "set\n "
|
|
||||||
5 ",set"
|
5 ",set"
|
||||||
5 "set,"
|
5 "set,"
|
||||||
5 "set "
|
5 "set "
|
||||||
5 "exec "
|
5 "exec "
|
||||||
5 " \nexec"
|
|
||||||
5 "\nexec"
|
5 "\nexec"
|
||||||
5 "exec\n"
|
5 "exec\n"
|
||||||
5 "exec\n "
|
|
||||||
5 ",exec"
|
5 ",exec"
|
||||||
5 "exec,"
|
5 "exec,"
|
||||||
5 "exec "
|
5 "exec "
|
||||||
5 "isNil"
|
5 "isNil"
|
||||||
5 "object_setFixServer"
|
|
||||||
5 "modify"
|
5 "modify"
|
||||||
5 "BIS_Alice_fnc_CivilianHit"
|
|
||||||
5 "BIS_Alice_mainscope"
|
|
||||||
5 "BIS_fnc_getFactions"
|
|
||||||
5 "allowConnection"
|
5 "allowConnection"
|
||||||
5 "check_publishobject"
|
5 "check_publishobject"
|
||||||
5 "dayz_disco"
|
5 "dayz_disco"
|
||||||
@@ -244,27 +203,14 @@
|
|||||||
5 "dayzPlayerLogin2"
|
5 "dayzPlayerLogin2"
|
||||||
5 "isSinglePlayer"
|
5 "isSinglePlayer"
|
||||||
5 "needUpdate_objects"
|
5 "needUpdate_objects"
|
||||||
5 "server_characterSync"
|
|
||||||
5 "server_getDiff"
|
|
||||||
5 "server_getDiff2"
|
|
||||||
5 "server_hiveReadWrite"
|
|
||||||
5 "server_hiveWrite"
|
|
||||||
5 "server_onPlayerDisconnect"
|
|
||||||
5 "server_spawnCrashSite"
|
|
||||||
5 "server_updateNearbyObjects"
|
|
||||||
5 "vehicle_handleInteract"
|
5 "vehicle_handleInteract"
|
||||||
5 "vehicle_handleServerKilled"
|
5 "vehicle_handleServerKilled"
|
||||||
5 "allunits"
|
5 "allunits"
|
||||||
5 "preprocess"
|
5 "preprocess"
|
||||||
5 "runinitscript"
|
5 "runinitscript"
|
||||||
5 "createdialog"
|
|
||||||
5 "\(" !"TELEPORT REVERT"
|
|
||||||
5 "'"
|
5 "'"
|
||||||
5 actionmonitor
|
5 actionmonitor
|
||||||
5 bis_
|
5 bis_
|
||||||
5 building_spawnloot
|
|
||||||
5 building_spawnzombies
|
|
||||||
5 camp_spawnzombies
|
|
||||||
5 dayz !"dayzSetDate"
|
5 dayz !"dayzSetDate"
|
||||||
5 drn_
|
5 drn_
|
||||||
5 eh_localcleanup
|
5 eh_localcleanup
|
||||||
@@ -272,7 +218,6 @@
|
|||||||
5 fn_nicespot
|
5 fn_nicespot
|
||||||
5 gear_ui_init
|
5 gear_ui_init
|
||||||
5 horde_epeen_determine_humanity_fnc
|
5 horde_epeen_determine_humanity_fnc
|
||||||
5 horde_epeen_fnc_fill_page
|
|
||||||
5 infectedcamps
|
5 infectedcamps
|
||||||
5 local_eventkill
|
5 local_eventkill
|
||||||
5 local_gutobject
|
5 local_gutobject
|
||||||
@@ -283,7 +228,6 @@
|
|||||||
5 player_animalcheck
|
5 player_animalcheck
|
||||||
5 player_checkstealth
|
5 player_checkstealth
|
||||||
5 player_combatroll
|
5 player_combatroll
|
||||||
5 player_countmagazines
|
|
||||||
5 player_crossbowbolt
|
5 player_crossbowbolt
|
||||||
5 player_death
|
5 player_death
|
||||||
5 player_fired
|
5 player_fired
|
||||||
@@ -301,9 +245,6 @@
|
|||||||
5 player_music
|
5 player_music
|
||||||
5 player_packtent
|
5 player_packtent
|
||||||
5 player_projectilenear
|
5 player_projectilenear
|
||||||
5 player_spawn_1
|
|
||||||
5 player_spawn_2
|
|
||||||
5 player_spawncheck
|
|
||||||
5 player_summedical
|
5 player_summedical
|
||||||
5 player_switchmodel
|
5 player_switchmodel
|
||||||
5 player_temp_calculation
|
5 player_temp_calculation
|
||||||
@@ -325,4 +266,3 @@
|
|||||||
5 world_sunrise
|
5 world_sunrise
|
||||||
5 world_surfacenoise
|
5 world_surfacenoise
|
||||||
5 zombie_
|
5 zombie_
|
||||||
1 _this
|
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
//new
|
//new
|
||||||
5 "[+;{(&%]" !"e\+00"
|
5 "[;{(&%]"
|
||||||
|
5 "\+" !"e\+0"
|
||||||
1 "(init|set|add|action|all|attach|ATL|ASL|eye|exec|cam|group|unit|clear|create|menu|ctrl|display|text|hint|drop)"
|
1 "(init|set|add|action|all|attach|ATL|ASL|eye|exec|cam|group|unit|clear|create|menu|ctrl|display|text|hint|drop)"
|
||||||
1 "(entit|exit|able|find|fuel|damage|join|frame|move|team|terminate|throw)"
|
1 "(entit|exit|able|find|fuel|damage|join|frame|move|team|throw)"
|
||||||
1 "draw"
|
1 "draw"
|
||||||
1 "delete"
|
1 "delete"
|
||||||
1 "copy"
|
1 "copy"
|
||||||
@@ -20,7 +21,6 @@
|
|||||||
1 "side"
|
1 "side"
|
||||||
1 "show"
|
1 "show"
|
||||||
1 "task" !"taskHint"
|
1 "task" !"taskHint"
|
||||||
1 "allow"
|
|
||||||
5 "enable"
|
5 "enable"
|
||||||
5 "spawn"
|
5 "spawn"
|
||||||
1 "for"
|
1 "for"
|
||||||
@@ -28,7 +28,6 @@
|
|||||||
5 "format"
|
5 "format"
|
||||||
1 "skip" !"skipTime"
|
1 "skip" !"skipTime"
|
||||||
1 "fail"
|
1 "fail"
|
||||||
1 "force"
|
|
||||||
5 "parse"
|
5 "parse"
|
||||||
5 "terminate"
|
5 "terminate"
|
||||||
1 "start"
|
1 "start"
|
||||||
@@ -37,8 +36,6 @@
|
|||||||
5 "hintS"
|
5 "hintS"
|
||||||
5 "loading"
|
5 "loading"
|
||||||
5 "removeAll"
|
5 "removeAll"
|
||||||
5 "\"call\""
|
|
||||||
5 "call compile"
|
|
||||||
1 "jiprequest" !="<NULL-object>,,\"JIPrequest\""
|
1 "jiprequest" !="<NULL-object>,,\"JIPrequest\""
|
||||||
1 "remExField" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack1\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack2\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack3\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack4\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack5\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack6\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack7\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack8\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack9\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack10\"\]" !="\"remExField\" = \[<NULL-object>,,\"JIPrequest\"\]"
|
1 "remExField" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack1\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack2\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack3\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack4\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack5\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack6\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack7\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack8\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack9\"\]" !="\"remExField\" = \[<NULL-object>,<NULL-object>,\"playmove\",\"ZombieStandingAttack10\"\]" !="\"remExField\" = \[<NULL-object>,,\"JIPrequest\"\]"
|
||||||
1 "remExFP"
|
1 "remExFP"
|
||||||
@@ -48,13 +45,9 @@
|
|||||||
5 "ctrlset"
|
5 "ctrlset"
|
||||||
5 "rsay"
|
5 "rsay"
|
||||||
5 "rland"
|
5 "rland"
|
||||||
5 "rsetDir"
|
|
||||||
5 "_YakB"
|
5 "_YakB"
|
||||||
1 "BIS_"
|
1 "BIS_"
|
||||||
5 "local_sefFuel"
|
|
||||||
5 "local_gutObject"
|
5 "local_gutObject"
|
||||||
1 "object_delLocal"
|
|
||||||
1 "fnc_vehicleEventHandler"
|
|
||||||
1 "player_humanityChange"
|
1 "player_humanityChange"
|
||||||
1 "player_medBandage"
|
1 "player_medBandage"
|
||||||
1 "player_medInject"
|
1 "player_medInject"
|
||||||
@@ -62,9 +55,6 @@
|
|||||||
1 "player_medTransfuse"
|
1 "player_medTransfuse"
|
||||||
1 "player_medMorphine"
|
1 "player_medMorphine"
|
||||||
1 "player_medPainkiller"
|
1 "player_medPainkiller"
|
||||||
1 "dayzplayermorph"
|
|
||||||
1 "server_playerMorph"
|
|
||||||
5 "getVariable"
|
|
||||||
5 "hiveupdateresu"
|
5 "hiveupdateresu"
|
||||||
5 "isServer"
|
5 "isServer"
|
||||||
5 "isDedicated"
|
5 "isDedicated"
|
||||||
@@ -77,7 +67,6 @@
|
|||||||
1 "count"
|
1 "count"
|
||||||
5 "markerText"
|
5 "markerText"
|
||||||
5 "BIS_fnc"
|
5 "BIS_fnc"
|
||||||
5 "\+" !"e\+00"
|
|
||||||
5 "_bis"
|
5 "_bis"
|
||||||
5 "markertype"
|
5 "markertype"
|
||||||
5 "teamtype"
|
5 "teamtype"
|
||||||
@@ -88,13 +77,7 @@
|
|||||||
5 "processInitCommands"
|
5 "processInitCommands"
|
||||||
5 "remotecmd"
|
5 "remotecmd"
|
||||||
5 "promptRName\.sqf"
|
5 "promptRName\.sqf"
|
||||||
5 "%"
|
|
||||||
5 "\.sqf\"\]" !="init\.sqf\"\]"
|
5 "\.sqf\"\]" !="init\.sqf\"\]"
|
||||||
5 "rpcCodeVarName"
|
|
||||||
5 "rpcDirectCall"
|
|
||||||
5 "broadcastRpcCallAll"
|
|
||||||
5 "broadcastRpcCallIfLocal"
|
|
||||||
5 "callRpcProcedure"
|
|
||||||
5 "registerBroadcastRpc"
|
5 "registerBroadcastRpc"
|
||||||
5 "norrnRACarUp"
|
5 "norrnRACarUp"
|
||||||
5 "norrnRAPicUp"
|
5 "norrnRAPicUp"
|
||||||
@@ -178,18 +161,9 @@
|
|||||||
5 "onTeamS"
|
5 "onTeamS"
|
||||||
5 "onShowNew"
|
5 "onShowNew"
|
||||||
5 "setUnconscious"
|
5 "setUnconscious"
|
||||||
5 " exec "
|
|
||||||
5 " set "
|
|
||||||
5 " str "
|
|
||||||
5 "exec\("
|
|
||||||
5 "set\("
|
|
||||||
5 "str\("
|
|
||||||
5 "exec\["
|
5 "exec\["
|
||||||
5 "set\["
|
5 "set\["
|
||||||
5 "str\["
|
5 "str\["
|
||||||
5 "exec\{"
|
|
||||||
5 "set\{"
|
|
||||||
5 "str\{"
|
|
||||||
5 "exec'"
|
5 "exec'"
|
||||||
5 "set'"
|
5 "set'"
|
||||||
5 "str'"
|
5 "str'"
|
||||||
@@ -209,35 +183,27 @@
|
|||||||
5 "'set"
|
5 "'set"
|
||||||
5 "'str"
|
5 "'str"
|
||||||
5 "str "
|
5 "str "
|
||||||
5 " \nstr"
|
|
||||||
5 "\nstr"
|
5 "\nstr"
|
||||||
5 "str\n"
|
5 "str\n"
|
||||||
5 "str\n "
|
|
||||||
5 ",str"
|
5 ",str"
|
||||||
5 "str,"
|
5 "str,"
|
||||||
5 "str "
|
5 "str "
|
||||||
5 "set "
|
5 "set "
|
||||||
5 " \nset"
|
|
||||||
5 "\nset"
|
5 "\nset"
|
||||||
5 "set\n"
|
5 "set\n"
|
||||||
5 "set\n "
|
|
||||||
5 ",set"
|
5 ",set"
|
||||||
5 "set,"
|
5 "set,"
|
||||||
5 "set "
|
5 "set "
|
||||||
5 "exec "
|
5 "exec "
|
||||||
5 " \nexec"
|
|
||||||
5 "\nexec"
|
5 "\nexec"
|
||||||
5 "exec\n"
|
5 "exec\n"
|
||||||
5 "exec\n "
|
|
||||||
5 ",exec"
|
5 ",exec"
|
||||||
5 "exec,"
|
5 "exec,"
|
||||||
5 "exec "
|
5 "exec "
|
||||||
5 "isNil"
|
5 "isNil"
|
||||||
5 "object_setFixServer"
|
|
||||||
5 "modify"
|
5 "modify"
|
||||||
5 "BIS_Alice_fnc_CivilianHit"
|
5 "BIS_Alice_fnc_CivilianHit"
|
||||||
5 "BIS_Alice_mainscope"
|
5 "BIS_Alice_mainscope"
|
||||||
5 "BIS_fnc_getFactions"
|
|
||||||
5 "object_processHit"
|
5 "object_processHit"
|
||||||
5 "object_getHit"
|
5 "object_getHit"
|
||||||
5 "allowConnection"
|
5 "allowConnection"
|
||||||
@@ -264,13 +230,11 @@
|
|||||||
5 "server_getDiff2"
|
5 "server_getDiff2"
|
||||||
5 "server_hiveReadWrite"
|
5 "server_hiveReadWrite"
|
||||||
5 "server_hiveWrite"
|
5 "server_hiveWrite"
|
||||||
5 "server_onPlayerDisconnect"
|
|
||||||
5 "server_playerDied"
|
5 "server_playerDied"
|
||||||
5 "server_playerLogin"
|
5 "server_playerLogin"
|
||||||
5 "server_playerSetup"
|
5 "server_playerSetup"
|
||||||
5 "server_playerSync"
|
5 "server_playerSync"
|
||||||
5 "server_publishObj"
|
5 "server_publishObj"
|
||||||
5 "server_spawnCrashSite"
|
|
||||||
5 "server_updateNearbyObjects"
|
5 "server_updateNearbyObjects"
|
||||||
5 "server_updateObject"
|
5 "server_updateObject"
|
||||||
5 "vehicle_handleInteract"
|
5 "vehicle_handleInteract"
|
||||||
@@ -290,5 +254,3 @@
|
|||||||
5 "allunits"
|
5 "allunits"
|
||||||
5 "preprocess"
|
5 "preprocess"
|
||||||
5 "runinitscript"
|
5 "runinitscript"
|
||||||
5 "createdialog"
|
|
||||||
1 _this
|
|
||||||
|
|||||||
Reference in New Issue
Block a user