Security HUD
System Watchdog
×
Threads Scanned
-- / --
SYS. LOAD --%
AI SHIELD ACTIVE
DMCA Policy
×

📋 DMCA Compliance

This platform and community fully complies with the Digital Millennium Copyright Act (DMCA) and international copyright laws. We take all copyright protection seriously.

🛡️ Copyright Protection

If you believe a posted item belongs to you or violates your copyright, you may file a DMCA takedown request through our official channels. Upon receiving a valid claim, the infringing content will be removed within 24 hours.

What's new
×
Fiveguard

Script Voltlab Hacking Minigame | Cayo Perico Mission

Ares

VAG
Admin
Joined
May 6, 2021
Messages
547
Reaction score
97,402
Points
411
Location
root
Website
vag.gg


Been a while since my last public release huh. Well I didn’t want to release same random thing so it took a little bit of time.

Voltlab hacking is one of the missions on the latest Cayo Perico DLC. Player has to match the randomly generated numbers on left with the icons on right to achieve the target voltage to successfuly hack. Each pattern is randomly generated to prevent any repetition.

Here are some screenshots:















This isn’t a drag-n-drop resource and developers need to intergrate the resource in thier own scripts.

Usage:



Code:
   TriggerEvent('ultra-voltlab', time, function(outcome ,reason)

    -- time: Time in seconds which player has. Min is 10, Max is 60

    -- result: Reason is the reason of result. Result is an integer code which represents result.

    --        0: Hack failed by player

    --        1: Hack successful

    --        2: Time ran out and hack failed

    --       -1: Error occured i.e. passed input or contents in config is wrong

        if outcome == 0 then

            print('Hack failed', reason)

        elseif outcome == 1 then

            print('Hack successful')

        elseif outcome == 2 then

            print('Timed out')

        elseif outcome == -1 then

            print('Error occured',reason)

        end

    end)

Controls: Up or down key to move left selection. Left or right key to move right selection. Enter to confirm the selection/connection which is non-revertible. Backspace to cancel the hack. Green bars at bottom left represent the time left.

EDIT: Forgot to mention, you need build 2189 or audio effects won’t work since they are requested from the game files only

EDIT 2: Build 2189 is no more a dependency and resource can be used on any game build


Let me know below if you encounter any bugs. I’ll try to fix it ASAP.

You are not allowed to redistribute, re-release or sell the resource.

Added a NOTICE file in the repo. Please read it and follow it if you intend to use the script



 

Samsun

Bronze Elite
Joined
Jun 5, 2022
Messages
11
Reaction score
4
Points
166
Location
India


Been a while since my last public release huh. Well I didn’t want to release same random thing so it took a little bit of time.

Voltlab hacking is one of the missions on the latest Cayo Perico DLC. Player has to match the randomly generated numbers on left with the icons on right to achieve the target voltage to successfuly hack. Each pattern is randomly generated to prevent any repetition.

Here are some screenshots:















This isn’t a drag-n-drop resource and developers need to intergrate the resource in thier own scripts.

Usage:



Code:
   TriggerEvent('ultra-voltlab', time, function(outcome ,reason)

    -- time: Time in seconds which player has. Min is 10, Max is 60

    -- result: Reason is the reason of result. Result is an integer code which represents result.

    --        0: Hack failed by player

    --        1: Hack successful

    --        2: Time ran out and hack failed

    --       -1: Error occured i.e. passed input or contents in config is wrong

        if outcome == 0 then

            print('Hack failed', reason)

        elseif outcome == 1 then

            print('Hack successful')

        elseif outcome == 2 then

            print('Timed out')

        elseif outcome == -1 then

            print('Error occured',reason)

        end

    end)

Controls: Up or down key to move left selection. Left or right key to move right selection. Enter to confirm the selection/connection which is non-revertible. Backspace to cancel the hack. Green bars at bottom left represent the time left.

EDIT: Forgot to mention, you need build 2189 or audio effects won’t work since they are requested from the game files only

EDIT 2: Build 2189 is no more a dependency and resource can be used on any game build


Let me know below if you encounter any bugs. I’ll try to fix it ASAP.

You are not allowed to redistribute, re-release or sell the resource.

Added a NOTICE file in the repo. Please read it and follow it if you intend to use the script


*** Hidden text: cannot be quoted. ***

nice br
 

amir1200

Silver Elite
Joined
Dec 5, 2021
Messages
54
Reaction score
17
Points
166
Location
talaviv


Been a while since my last public release huh. Well I didn’t want to release same random thing so it took a little bit of time.

Voltlab hacking is one of the missions on the latest Cayo Perico DLC. Player has to match the randomly generated numbers on left with the icons on right to achieve the target voltage to successfuly hack. Each pattern is randomly generated to prevent any repetition.

Here are some screenshots:















This isn’t a drag-n-drop resource and developers need to intergrate the resource in thier own scripts.

Usage:



Code:
   TriggerEvent('ultra-voltlab', time, function(outcome ,reason)

    -- time: Time in seconds which player has. Min is 10, Max is 60

    -- result: Reason is the reason of result. Result is an integer code which represents result.

    --        0: Hack failed by player

    --        1: Hack successful

    --        2: Time ran out and hack failed

    --       -1: Error occured i.e. passed input or contents in config is wrong

        if outcome == 0 then

            print('Hack failed', reason)

        elseif outcome == 1 then

            print('Hack successful')

        elseif outcome == 2 then

            print('Timed out')

        elseif outcome == -1 then

            print('Error occured',reason)

        end

    end)

Controls: Up or down key to move left selection. Left or right key to move right selection. Enter to confirm the selection/connection which is non-revertible. Backspace to cancel the hack. Green bars at bottom left represent the time left.

EDIT: Forgot to mention, you need build 2189 or audio effects won’t work since they are requested from the game files only

EDIT 2: Build 2189 is no more a dependency and resource can be used on any game build


Let me know below if you encounter any bugs. I’ll try to fix it ASAP.

You are not allowed to redistribute, re-release or sell the resource.

Added a NOTICE file in the repo. Please read it and follow it if you intend to use the script


*** Hidden text: cannot be quoted. ***

ty
 
Top