CS2D Bug Reports
1,993 replies15.04.18 11:17:57 am
I found bug on transfer files, when someone download the data, other people cant download the tiles of the map. Please fix it

Web |
File does not exist (15501) |
File does not exist (15463) |
[JAF] Adventure (19) |
File does not exist (15919)






https://imgur.com/a/ODSoK
--------------------------------
https://imgur.com/a/xRfis


--------------------------------
Command 'setmvp,setassists' work but console can't show you this commands
https://imgur.com/a/qiwrx , https://imgur.com/a/DcvrV
sys/core/cmd.lst Add setmvp:player:mvp -- setassists:player:assists
https://imgur.com/a/RGBw5
--------------------------------
Command 'close' in console (No Effect)
--------------------------------
@

VTA Community Discord: https://discord.gg/6rHKWvJ
After 1.0.0.7 update I have cursor lags when moving cursor around edges of screen to throw grenades or flares...it cause massive huge fps drops and lags when moving at the end of screen...
Previously I used antergos linux rolling with intel gpu open source graphics stack and gma3150 or intel HD3000+ gpus
But now I am using fresh installation of Ubuntu Linux 16.04.4 LTS and use radeon r600 open source graphics driver for my caicos sapphire r5 230 1Gb AMD GPU card....and ubuntu hwe LTS graphics mesa + drivers for amd gpu chips stack...
I think it could be an AMD gpu problem but when I am asking on discord on zombie Apocalypse 2D or cs2d network they say that they do not experience the same problems so I decided to write here, cause on discord I have not found any person interested in talking about beside one guy who pointed me to these topic
Previously I used antergos linux rolling with intel gpu open source graphics stack and gma3150 or intel HD3000+ gpus
But now I am using fresh installation of Ubuntu Linux 16.04.4 LTS and use radeon r600 open source graphics driver for my caicos sapphire r5 230 1Gb AMD GPU card....and ubuntu hwe LTS graphics mesa + drivers for amd gpu chips stack...
I think it could be an AMD gpu problem but when I am asking on discord on zombie Apocalypse 2D or cs2d network they say that they do not experience the same problems so I decided to write here, cause on discord I have not found any person interested in talking about beside one guy who pointed me to these topic

@
zor1984qq: Unfortunately I don't have a AMD GPU and can't reproduce the issue. One common way would be to try other video card drivers or to try windowed/fullscreen mode. Maybe the VSync setting also makes a difference.
@
mrc: That's intended. Spectators can't be idle (they are not playing) so they never get kicked by the idle system. Also the vote system is designed for actual players only as well.

@

Reiterating what others reported, though inappropriately.
The console outputs messages similar to the image below whenever you use your knife.
The console outputs messages similar to the image below whenever you use your knife.



@
Cure Pikachu: DC knows, he forgot to removed them after fixing sound bug. He'll probably do silent patch for steam.

still i cant load the "HD skins" into online servers, i can only load them in my own server. any help would be appreciated
Why I cant download tiles from other server?
Its bug i think,
DC: please fix it
Its bug i think,

Web |
File does not exist (15501) |
File does not exist (15463) |
[JAF] Adventure (19) |
File does not exist (15919)





When enabling/disabling off scren damage: http://prntscr.com/j8d8qe
Changing resolution by clicking small arrow in the corner leading to fullscreen, but when I changing it back to window mode window spawning out of screen making it impossible to close or move.
edited 1×, last 24.04.18 05:53:04 am
CS2d for ANDROID Discord server is here: https://discord.gg/ww59nvf
@
DC: Another bug I've found:
Mods aren't working properly, downloading files possible only when joining local server, not the online one. When trying to get mod from the online server it downloads only empty folders.
Tested with @
SQ:

Mods aren't working properly, downloading files possible only when joining local server, not the online one. When trying to get mod from the online server it downloads only empty folders.
Tested with @

edited 1×, last 25.04.18 02:44:15 am
CS2d for ANDROID Discord server is here: https://discord.gg/ww59nvf
addhook("say","tutorialsay")
function tutorialsay(player, text)
if (text == "bla")then
msg("Player "..player(player, "name").." said: bla")
end
end
I copy pasted it from CS2D tutorial. Why doesn't this work?
function tutorialsay(player, text)
if (text == "bla")then
msg("Player "..player(player, "name").." said: bla")
end
end
I copy pasted it from CS2D tutorial. Why doesn't this work?
Best match: https://www.youtube.com/watch?v=je2Q2XR2Zys
@
Quattro: Because of this
Btw, dude this is lua question, not a bug report.
Would make no sense because if there is "player" function, you would be doing recursive calls.

Code:
1
player(player, "name")
Btw, dude this is lua question, not a bug report.
Would make no sense because if there is "player" function, you would be doing recursive calls.
Code:
1
2
3
4
5
6
7
2
3
4
5
6
7
addhook("say","tutorialsay")
function tutorialsay(p, text)
if (text == "bla")then
msg("Player "..player(p, "name").." said: bla")
end
end
function tutorialsay(p, text)
if (text == "bla")then
msg("Player "..player(p, "name").." said: bla")
end
end
Sorry, I thought since it's official tutorial(http://www.cs2d.com/tut/tkdlua/luatut.html) I would post it here because it needs fixing.
It's working after changing the name of function like you did
It's working after changing the name of function like you did

Best match: https://www.youtube.com/watch?v=je2Q2XR2Zys