Recent Posts

Pages: [1] 2 3 ... 10
1
Paintball 2 Discussion / you know what be be cool?
« Last post by paint my balls on September 06, 2024, 11:07:28 PM »
man, start this off i havent played this gsme in like 4 years or so. long story short ive been locked up on and off for the past 10 years? i dont have a laptop or computer. i dont know the player base on this game now.. i know as of like 4-5 years ago very few played it and one or even maybe two people played it, that has been playing it for a long time... i miss this game lol. maybe make a mobile version if possible?? that would be so bad ass and would bring more players!!
2
Help and Support / Re: Windows Defender blocking Installation
« Last post by Rockyar_96 on July 25, 2024, 11:11:41 AM »
Ah, I see! Perfectly understandable
3
I have occasionally seen people ask about this, and it turns out it's actually doable and somewhat simple.
The usual answer would be that it's impossible because the game is built only for x86 but the Raspberry Pi has an ARM CPU. But with the help of qemu we can emulate an x86 CPU on ARM! To avoid a lot of manual work we will use my docker image to run a dp2 server https://hub.docker.com/r/nukla/paintball2.
So first we have to install the necessary tools on Raspberry Pi OS:
Code: [Select]
sudo apt install qemu-user-static qemu-user docker.io
This will install docker and qemu. Qemu will be registered to run x86 binary files without any additional steps.
Then we create a folder that will hold the pball directory (maps/configs/etc.). Do it as a local user and not as root!
Code: [Select]
mkdir /some/random/path/to/a/folder/
Then we just run the docker image like this
Code: [Select]
docker run -p 27910:27910/udp -v  /some/random/path/to/a/folder/:/paintball2/pball/ -it nukla/paintball2
Be sure to replace /some/random/path/to/a/folder/ with your own path to your directory.
The server should be running now.

If you want to have the server auto-start and run in the background, run the docker command like this instead
Code: [Select]
docker run --restart=always -d -p 27910:27910/udp -v /home/pi/dp2serv/:/paintball2/pball/ nukla/paintball2

If you need custom launch arguments for the server have a look at the example in the docker hub readme.
4
Other Stuff / Re: First post of 2024
« Last post by P!nk on May 31, 2024, 05:05:45 PM »
Can't wait! :D
5
Help and Support / Re: Windows Defender blocking Installation
« Last post by jitspoe on May 29, 2024, 04:02:16 PM »
I don't really want to pay hundreds of dollars every year to maintain a certificate for a free game. 😬

Hopefully people are aware they can just accept the risk and continue installing.
6
Paintball 2 Discussion / Re: Paintball 2 Video Devlog
« Last post by Clipz on May 06, 2024, 06:39:08 PM »
The siege castle looks nice, maybe I'll remember some Saturday to jump on.
7
Server Discussion / Re: Unable to get a headless ubuntu server up
« Last post by jsnotlout on April 13, 2024, 12:21:34 PM »
Thanks, I got the port changed, I forgot to mention that. And the server is showing up.
I didnt know where to get the updated build link
8
Help and Support / Re: Windows Defender blocking Installation
« Last post by ic3y on April 13, 2024, 05:16:51 AM »
You dont need to disable the Windows Defender, just click on "Weitere Informationen" and accept the warning.
9
Server Discussion / Re: Unable to get a headless ubuntu server up
« Last post by ic3y on April 13, 2024, 05:15:06 AM »
It's an old thread, but you are starting your server with port 11111 and not 27910 (if you use the commands provided here).

The wget command is working fine, it's just an old link. Use build046 instead of build041.

Or you use the paintball docker image: https://forums.digitalpaint.org/index.php?topic=28768.0
10
Help and Support / Windows Defender blocking Installation
« Last post by Rockyar_96 on April 09, 2024, 12:53:53 PM »
Hey, I just wanted to let you know that currently windows (I'm on Win10) is blocking the installation. It seems the latest build from sourceforge is not signed.

I'm aware it's possible to disable Windows Defender and install nonetheless, but I figured it's good to post here anyway.
Cheers
Pages: [1] 2 3 ... 10