Documentation

Complete Bison Lua API reference and guides

Contents

Getting Started with Bison

Welcome to Bison! This guide will help you get started with the Bison Lua API.

Installation

1. Download the loader from your dashboard 2. Run BisonLoader.exe 3. Wait for "Injection Successful" message 4. Press INSERT to open the menu

Your First Script

-- Simple notification example
BisonShowNotification("Hello from Bison!", 3)

-- Get player position
local coords = BisonGetPlayerCoords()
print("X: " .. coords.x .. " Y: " .. coords.y .. " Z: " .. coords.z)