Skip to main content

Players Stuck in Arena

Solutions:
  1. Use the leave command:
    /ffaleave
    
  2. Check command is configured:
    R.Commands = {
        leave = "ffaleave",
    }
    
  3. Restart the resource:
    ensure r_ffa
    

Wager System Issues

Solutions:
  • Check server console for errors
  • Verify framework money functions work
  • Check if player was eliminated before winning

Weapon Issues

Solutions:
  1. Verify weapon names are correct:
    Weapons = {
        "weapon_pistol", -- Check exact spawn name
        "weapon_combatpistol",
    }
    
  2. Ensure ox_inventory is running
  3. Test weapon spawn manually via /ffaweapons
Solutions:
  • Use /ffacomp command
  • Verify component images exist
  • Ensure weapons support the components
Solutions:
  • Enable radial menu:
    UseRadialMenu = true
    
  • Or disable for context menu:
    UseRadialMenu = false
    
  • Update ox_lib to latest version

Spawn Issues

Solutions:
  • Verify spawn points in config:
    SpawnPoints = {
        vec3(x, y, z), -- Check coordinates
        vec3(x, y, z),
    }
    
  • Ensure coordinates are valid
  • Add more spawn points to avoid overlap
  • Check if using correct arena MapId
Solutions:
  1. Enable 1v1 mode:
    Is1v1Map = true
    
  2. Configure both spawns:
    P1Spawn = vector3(x, y, z),
    P2Spawn = vector3(x, y, z),
    
  3. Ensure spawns are in the arena zone

Admin Issues

Solutions:
  1. Verify admin permission:
    R.AdminGroupd = "group.mod"
    
  2. Ensure you have the needed permissions
  3. Try the command:
    /ffaadmin
    

General Quick Fixes

Check general troubleshooting guide