Hi there, i just manage to make cp work and stuff like that, but the there is some sort of a anti singleplayer thing on this as you could see on the imgur link i must have 3 players in lobby, before i could add computer and it worked. now it dont. Thanks and appricate all help and tips.
download link :https://www.pumpkintd.com/#download
https://imgur.com/a/DcOQnLF
Strange Anti singleplayer,need help please. Pumpkintd
Moderator: Cheaters
-
kattpess
- Junior Member
- Posts: 29
- Joined: August 31st, 2024, 9:50 pm
- Has thanked: 4 times
- Been thanked: 3 times
Strange Anti singleplayer,need help please. Pumpkintd
You do not have the required permissions to view the files attached to this post.
-
kattpess
- Junior Member
- Posts: 29
- Joined: August 31st, 2024, 9:50 pm
- Has thanked: 4 times
- Been thanked: 3 times
Re: Strange Anti singleplayer,need help please. Pumpkintd
Could anyone give me some tips onw how to change that "must have at Least 3 Players ?"
-
haxorico
- Super Moderator
- Posts: 3204
- Joined: February 24th, 2009, 1:31 pm
- Location: JEW LAND
- Been thanked: 2 times
Re: Strange Anti singleplayer,need help please. Pumpkintd
Quick check seems to be a global variable called Vo
It only shows in 2 places. first is counting players
And second part is checking if the couted players are less than 3
The way to overcome it is either change Vo to 3 instead of 0 in line 107
Or remove that if statement and its contents or make sure the if never triggers, example would be chagne "Vo<3" to "false"
It only shows in 2 places. first is counting players
Code: Select all
//Line 24544
elseif GetPlayerSlotState(BB)==PLAYER_SLOT_STATE_PLAYING then
set Vo=Vo+1
Code: Select all
//Line 25412
if Zjj==5 and Vo<3 then
Code: Select all
integer Vo=0