Recent Posts

Pages: [1] 2 3 ... 10
1
Help and Support / Re: Lost account - New Email
« Last post by P!nk on March 05, 2025, 04:56:15 PM »
We're all on Discord now, join us here:
https://discord.digitalpaint.org/
2
Help and Support / Lost account - New Email
« Last post by Slash on February 19, 2025, 08:54:56 PM »
Hello, It's been a long time since I have played this game. I had an account with the user name CONDOR and have since forgotten the password. The Email associated with the account no longer exists. Is there any way you can change the email on file to my current email or reset my password and send me the new password? I would love to get my account back.

Thank you.
Condor.
3
Beta / In-Progress Maps / Re: New Map: Lost in the Jungle
« Last post by jitspoe on February 19, 2025, 04:14:10 AM »
We played this a couple times during the Social Saturday events and it seems pretty solid.  The one thing that was bothering me was the lighting, as it's very flat using _sun_ambient and _sun_diffuse.  Using _sun_surface 300 really helped define the map a lot more, so I made a b8 version with the lighting update.  I think we could call it done if nobody has any other suggestions for changes.

lost_b8 can be downloaded here: http://dplogin.com/files/maps/beta/lost_b8.bsp

Screenshots showing the difference in lighting attached.
4
Paintball 2 Discussion / Re: you know what be be cool?
« Last post by jitspoe on December 14, 2024, 12:58:48 PM »
I think it'd be very difficult to play on mobile unless you could somehow hook up a keyboard and mouse.  Strafe jumping on a touch screen just sounds brutal.
5
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!!
6
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
7
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.
8
Other Stuff / Re: First post of 2024
« Last post by P!nk on May 31, 2024, 05:05:45 PM »
Can't wait! :D
9
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.
10
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.
Pages: [1] 2 3 ... 10