Jump to content

Search the Community

Showing results for tags 'hack'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • BOHEMIA INTERACTIVE
    • BOHEMIA INTERACTIVE - NEWS
    • BOHEMIA INTERACTIVE - JOBS
    • BOHEMIA INTERACTIVE - GENERAL
  • FEATURED GAMES
    • Arma Reforger
    • Vigor
    • DAYZ
    • ARMA 3
    • ARMA 2
    • YLANDS
  • MOBILE GAMES
    • ARMA MOBILE OPS
    • MINIDAYZ
    • ARMA TACTICS
    • ARMA 2 FIRING RANGE
  • BI MILITARY GAMES FORUMS
  • BOHEMIA INCUBATOR
    • PROJECT LUCIE
  • OTHER BOHEMIA GAMES
    • ARGO
    • TAKE ON MARS
    • TAKE ON HELICOPTERS
    • CARRIER COMMAND: GAEA MISSION
    • ARMA: ARMED ASSAULT / COMBAT OPERATIONS
    • ARMA: COLD WAR ASSAULT / OPERATION FLASHPOINT
    • IRON FRONT: LIBERATION 1944
    • BACK CATALOGUE
  • OFFTOPIC
    • OFFTOPIC
  • Die Hard OFP Lovers' Club's Topics
  • ArmA Toolmakers's Releases
  • ArmA Toolmakers's General
  • Japan in Arma's Topics
  • Arma 3 Photography Club's Discussions
  • The Order Of the Wolfs- Unit's Topics
  • 4th Infantry Brigade's Recruitment
  • 11th Marine Expeditionary Unit OFFICIAL | 11th MEU(SOC)'s 11th MEU(SOC) Recruitment Status - OPEN
  • Legion latina semper fi's New Server Legion latina next wick
  • Legion latina semper fi's https://www.facebook.com/groups/legionlatinasemperfidelis/
  • Legion latina semper fi's Server VPN LEGION LATINA SEMPER FI
  • Team Nederland's Welkom bij ons club
  • Team Nederland's Facebook
  • [H.S.O.] Hellenic Special Operations's Infos
  • BI Forum Ravage Club's Forum Topics
  • Exilemod (Unofficial)'s General Discussion
  • Exilemod (Unofficial)'s Scripts
  • Exilemod (Unofficial)'s Addons
  • Exilemod (Unofficial)'s Problems & Bugs
  • Exilemod (Unofficial)'s Exilemod Tweaks
  • Exilemod (Unofficial)'s Promotion
  • Exilemod (Unofficial)'s Maps - Mission Files
  • TKO's Weferlingen
  • TKO's Green Sea
  • TKO's Rules
  • TKO's Changelog
  • TKO's Help
  • TKO's What we Need
  • TKO's Cam Lao Nam
  • MSOF A3 Wasteland's Server Game Play Features
  • MSOF A3 Wasteland's Problems & Bugs
  • MSOF A3 Wasteland's Maps in Rotation
  • SOS GAMING's Server
  • SOS GAMING's News on Server
  • SOS GAMING's Regeln / Rules
  • SOS GAMING's Ghost-Town-Team
  • SOS GAMING's Steuerung / Keys
  • SOS GAMING's Div. Infos
  • SOS GAMING's Small Talk
  • NAMC's Topics
  • NTC's New Members
  • NTC's Enlisted Members
  • The STATE's Topics
  • CREATEANDGENERATION's Intoduction
  • CREATEANDGENERATION's HAVEN EMPIRE (NEW CREATORS COMMUNITY)
  • HavenEmpire Gaming community's HavenEmpire Gaming community
  • Polska_Rodzina's Polska_Rodzina-ARGO
  • Carrier command tips and tricks's Tips and tricks
  • Carrier command tips and tricks's Talk about carrier command
  • ItzChaos's Community's Socials
  • Photography club of Arma 3's Epic photos
  • Photography club of Arma 3's Team pics
  • Photography club of Arma 3's Vehicle pics
  • Photography club of Arma 3's Other
  • Spartan Gamers DayZ's Baneados del Servidor
  • Warriors Waging War's Vigor
  • Tales of the Republic's Republic News
  • Operazioni Arma Italia's CHI SIAMO
  • [GER] HUSKY-GAMING.CC / Roleplay at its best!'s Starte deine Reise noch heute!
  • empire brotherhood occult +2349082603448's empire money +2349082603448
  • NET88's Twitter

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber (xmpp)


Skype


Biography


Twitter


Google+


Youtube


Vimeo


Xfire


Steam url id


Raptr


MySpace


Linkedin


Tumblr


Flickr


XBOX Live


PlayStation PSN


Origin


PlayFire


SoundCloud


Pinterest


Reddit


Twitch.Tv


Ustream.Tv


Duxter


Instagram


Location


Interests


Interests


Occupation

Found 2 results

  1. Hey all, I am relatively new to the forums so please cut me some slack if I do something wrong :) Apologies if this has been answered already, but I have not been able to find it anywhere on he interwebs.. I am working on a mission where a team accompanied by a hacker moves into a building where the hacker hacks into a data terminal. With the help of some YouTube videos I managed to come up with a script for hacking the terminal and failing the hack (intended). However, I would like to allow the hacker to have the ability to input a previously found code to unlock the access to the terminal - obviously, without the code the terminal would have to remain unresponsive. The problem I see here is twofold: a) how to give the player the addaction to input digits by himself which would then trigger the automatic hacking script b) how to make the hack addaction appear only after the code has been found To add to it, I would like the hacker to be the only player who can do that procedure and the only player seeing the hints appearing during the procedure - I managed to get the hacking part to appear only for the hacker. This is the intended flow (green are bits I got working): 1. The terminal is inactive/non interactive/not working 2. The team finds the code on a nearby tablet - the terminal becomes interactive 3. The hacker uses an action on the terminal and inputs the code manually - In case of the hacker using a wrong code, the terminal hints the player with "Incorrect code", shuts down and triggers an alarm 4. The terminal accepts the code 5. The terminal starts the automatic hacking script when the hacker uses the "Hack" action 6. The terminal recognizes the login is unathorized and shuts down triggering an alarm This is the script that I have so far: The terminal itself has this in its init: if (isPlayer hacker) then { this addAction ["Hack", "DataTerminal.sqf"]}; DataTerminal.sqf _object = _this select 0; _caller = _this select 1; _id = _this select 2; _object removeaction _id; [_object,3] call BIS_fnc_dataTerminalAnimate; if (name z == name z) then {hint "Logging into the system..."}; sleep 10; if (name z == name z) then {hint "Hacking in progress: 0%"}; sleep 2; if (name z == name z) then {hint "Hacking in progress: 1%"}; sleep 0.5; if (name z == name z) then {hint "Hacking in progress: 2%"}; sleep 0.5; if (name z == name z) then {hint "Hacking in progress: 3%"}; sleep 0.5; if (name z == name z) then {hint "Hacking in progress: 4%"}; sleep 0.5; if (name z == name z) then {hint "Hacking in progress: 5%"}; sleep 0.5; if (name z == name z) then {hint "Hacking in progress: 6%"}; sleep 0.5; if (name z == name z) then {hint "Hacking in progress: 7%"}; sleep 0.5; if (name z == name z) then {hint "Hacking in progress: 8%"}; sleep 0.5; if (name z == name z) then {hint "Hacking in progress: 9%"}; sleep 0.5; if (name z == name z) then {hint "Hacking in progress: 10%"}; sleep 0.5; if (name z == name z) then {hint "Unauthorized login detected..."}; sleep 2.5; if (name z == name z) then {hint "Shutting down..."}; [_object,0] call BIS_fnc_dataTerminalAnimate; deleteVehicle box1; in the above example, box1 is just an invisible helipad which acts as a criteria for a trigger launching an alarm sound. Thanks a lot for your help in advance. I appreciate this may be a bit mind boggling (if possible to acheive even) but I do appreciate anyone who takes a minute and thinks he may be able to provide any help. Cheers, Adam
  2. Capt Gav

    AAIIMMWWAARREE..NNEETT

    Wow, can anyone tell me how to get hold of the cheat AAIIMMWWAARREE..NNEETT is using? It's really impressive! Meantime I'd advise anyone who sees that name (pretty distinctive) to log out of that particular game
×