Tickets stuck to "0" in local co op w/bots
-
tomato101
- Posts: 2
- Joined: 2020-05-03 00:12
Tickets stuck to "0" in local co op w/bots
offline mod in co op don't work it got stuk at 0 tickets in all maps
-
Arab
- PR:BF2 Developer
- Posts: 2898
- Joined: 2012-05-18 03:37
Re: Tickets stuck to "0" in local co op w/bots
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:
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
Last edited by Arab on 2020-05-03 08:43, edited 1 time in total.

