PBO Tools
  • 👋Welcome to PBO Tools!
  • 📍Accounts & Registration
    • Downloading PBO Tools
    • System Requirements
    • Purchasing a Subscription
    • Creating an Account
    • Logging In
    • Misc
      • Reset Hardware ID
      • Reset Password
      • Upgrade Subscription
  • 📍Application Setup & Configuration
    • Global Settings
    • Code Obfuscation
  • 📍Packing Mods
    • Packing a PBO
    • Command-Line Support
    • Signing PBOs
    • Log Files
  • 📍Support & Status
    • Support
    • API Status
  • 📍Troubleshooting
    • Known Issues
      • Mod Scripts Folder Requirement
    • Common Errors
      • No Mod Provided
      • Invalid Path
      • Invalid Input
      • Invalid Config Syntax
      • Unknown Type, Incompatible Parameter
      • Password Doesn't Meet Security Requirements
      • Signature Validation Timeout
      • Formula too complex
Powered by GitBook
On this page
  1. Troubleshooting
  2. Common Errors

Unknown Type, Incompatible Parameter

PreviousInvalid Config SyntaxNextPassword Doesn't Meet Security Requirements

Last updated 1 day ago

These errors typically occur during code obfuscation when vectors like "0 0 0" are included in function parameters or assignments. These formats are not compatible with string obfuscation in Enforce and may be misinterpreted by DayZ. The error is usually triggered when vectors are passed as strings in function definitions or calls, such as:

override void OnPlacementComplete(Man player, vector position = "0 0 0", vector orientation = "0 0 0")

DayZ does not recognize the obfuscated string format for vectors and throws an error as a result.

How to Resolve the Error:

To prevent this error, use the //dontobf comment directive to exclude the affected line from the string obfuscation process.

  • Locate the problem line:

    Identify where the vector (e.g., "0 0 0") is being used in your code.

  • Apply the directive:

    Add //dontobf at the end of the line to instruct PBO Tools to skip obfuscation for that specific line.

  • override void OnPlacementComplete(Man player, vector position = "0 0 0", vector orientation = "0 0 0") //dontobf

Need help? For any questions or assistance, please or email us at .

📍
contact our support team
hello@pbo.tools