1

Topic: [CLIENT] Best client 2!

Now even better!

http://ninslash.com/bestclient.png

Windows:
Download

For those who want unix build, how do I include -std=c++11 to circleci? And after migrating to SDL2 circleci fails to #include "SDL.h"

/Siile

2

Re: [CLIENT] Best client 2!

The animation looks good, but the size of the tee seems not appropriate to the gameplay. The head can easily go under map layers.
It think also that blood is too much present. With just one hit, it's like you explode and you are dead tongue

3

Re: [CLIENT] Best client 2!

Siile wrote:

Now even better!
For those who want unix build, how do I include -std=c++11 to circleci? And after migrating to SDL2 circleci fails to #include "SDL.h"
/Siile

How about making it Open-Source and let the User compile it himself?

There are three kinds of lies: lies, damned lies, and benchmarks.

4

Re: [CLIENT] Best client 2!

There blood amount slider in custom tab in settings. I'll publish the source once I get unix build working. tongue

Gameplay clip: https://youtu.be/wTVH7NHOVVc

/Siile

5 (edited by unsigned char* 2016-04-25 20:24:24)

Re: [CLIENT] Best client 2!

you don't need add -std=c++11 to circleCI, this need be added in bam project configuration...

P.S: You need github for use CircleCI... is this the source? https://github.com/Siile/Tw-test and the CircleCI: https://circleci.com/gh/Siile/Tw-test/tree/master

6

Re: [CLIENT] Best client 2!

unsigned char* wrote:

you don't need add -std=c++11 to circleCI, this need be added in bam project configuration...

P.S: You need github for use CircleCI... is this the source? https://github.com/Siile/Tw-test and the CircleCI: https://circleci.com/gh/Siile/Tw-test/tree/master

this part? configure.lua, 365

            elseif ExecuteSilent("g++ -v") == 0 then
                option.driver = "gcc"

And yes, but a bit outdated. One more "after migrating to SDL2 circleci fails to #include "SDL.h""

7 (edited by unsigned char* 2016-04-25 21:51:43)

Re: [CLIENT] Best client 2!

See "https://github.com/CytraL/MineTee/blob/ … m.lua#L147" but here it's wrong.. move the line to "gcc" driver.. not for all tongue

Ummm you can try add the param "-I" and search the "SDL.h" file in ''/usr/include" or ''/usr/local/include" ...
best use: ''pkg-config --cflags-only-I sdl2"

Edit:
Or try change "#include "SDL.h"" to "#include <SDL2/SDL.h>"