Hnxml Standard
    Preparing search index...

    Type Alias Fileupload

    Task to upload the file on server bitMission00 at bin/target_filename.txt to server with ID "destComp" to folder bin The folder name Dest/Uploads is the folder that files are uploaded to when using an Upload server daemon, so it's the most useful location normally

    <goal type="fileupload" target="advExamplePC" file="asdf.txt" path="home" destTarget="introFactionHomeNode" destPath="Drop/Uploads"/>
    

    For upload tasks, adding the flag decrypt=true requires the player the decypher the file before uploading it. If that file is password protected, you must include the password in the goal with decryptPass="password"

    For uploading encrypted files - put the encrypted name here (ending with .dec usually). It doesn't matter what the filename of the decrypted one becomes The code will check for the right content.

    <goal type="fileupload" target="advExamplePC" file="asdf2.dec" path="home" destTarget="introFactionHomeNode" destPath="home" decrypt="true" decryptPass="password"/>
    
    type Fileupload = {
        decrypt?: string;
        decryptPass?: string;
        destPath: string;
        destTarget: string;
        file: string;
        path: string;
        target: string;
        type: "fileupload";
    }
    Index

    Properties

    decrypt?: string
    decryptPass?: string
    destPath: string
    destTarget: string
    file: string
    path: string
    target: string
    type: "fileupload"