Page 1 of 1

Tickets stuck to "0" in local co op w/bots

Posted: 2020-05-03 00:15
by tomato101
offline mod in co op don't work it got stuk at 0 tickets in all maps

Re: Tickets stuck to "0" in local co op w/bots

Posted: 2020-05-03 08:31
by Arab
Hi.

It's a common problem when restarting or shutting down the computer while the game is running, same with BF2. It resets the code inside __init__.py, preventing the game logic from starting properly.

To fix, go to c:/program files (x86)/project reality/project reality bf2/mods/pr/python/game and open __init_.py with Notepad.

Copy and Paste the code below in and save:

Code: Select all

# ------------------------------------------------------------------
#
# PROJECT REALITY SERVER INIT
#
# This file can be edited by any server (public or private).
#
import realityinit

realityinit.init(False)  # Switch to True if using debugger executables (PRLauncher.exe will automatically modify this value accordingly)

# ------------------------------------------------------------------
# Add your custom script's initilization below