1 (edited by xush 2016-04-02 11:39:45)

Topic: [MOD] EXPlorer (0.6)

So yeah, here we go again.

Today I had some time, so I also did a remake of EXPlorer for 0.6.

You will find all the info you need about the mod here: https://www.teeworlds.com/forum/viewtopic.php?id=6427

Downloads
- Source Code
- Entities
- Maps I found (send me more!)
- Linux x64 binary
- Example Config

Enjoy! And please someone host a server or two, I really wanna play right now smile



Planned Updates:

  • Saved score / ranking (SQLite) [DONE]

  • Fix windows compilation (help wanted!)


Greets, xush -

Real programmers don't comment their code - it was hard to write, it should be hard to understand.
Proudly verkeckt since 2010.

2

Re: [MOD] EXPlorer (0.6)

Wow, nice! Nobody would have played the 0.7 version so far, so very nice that you ported it to 0.6! Thanks alot, I'm looking forward to be playing this relict from good old 0.5 times on full servers ^-^

3

Re: [MOD] EXPlorer (0.6)

YaaaaY!!!

4

Re: [MOD] EXPlorer (0.6)

Thanks for the mod. smile I really enjoyed playing it in 0.5.

Where did you find these maps? Some of those weren't in my map collection. smile

5 (edited by xush 2016-03-31 22:55:24)

Re: [MOD] EXPlorer (0.6)

I have my own mapdatabase (I use a crawler to collect). But it is smaller then yours, I diffed them once and I got almost no map that you don't have sad I even think the ones you don't have were sent to me by players...

Real programmers don't comment their code - it was hard to write, it should be hard to understand.
Proudly verkeckt since 2010.

6

Re: [MOD] EXPlorer (0.6)

I tried hosting a server; but it crashed when I tested a little. I think the trigger was that I killed a zombie with a neutral weapon. Do you want to have the core dump? I don't have it right now, but I can look for it. Last messages before crashing:

Apr 01 00:41:12.729515 [...] teeworlds_srv[22837]: [56fda788][game]: kill killer='0:heinrich5991' victim='0:heinrich5991' weapon=-1 special=0
Apr 01 00:41:34.811141 [...] teeworlds_srv[22837]: [56fda79e][game]: kill killer='-1:(invalid)' victim='7:(invalid)' weapon=3 special=0
Apr 01 00:41:35.122220 [...] systemd[1]: teeworlds-exp-server@exp.service: Main process exited, code=dumped, status=11/SEGV

7 (edited by xush 2016-04-01 10:06:42)

Re: [MOD] EXPlorer (0.6)

I *think* it could be this one, but I really thought I fixed it. Trying to reproduce it again for a up-to-date backtrace.

EDIT: https://github.com/xushWT/EXPRemake/com … 3c72eea21a that should fix it.
EDIT 2: Okay, not actually fixing it, but at least its not crashing for now. Im working on the actual issue right now.
EDIT 3: Should be fixed.

Real programmers don't comment their code - it was hard to write, it should be hard to understand.
Proudly verkeckt since 2010.

8

Re: [MOD] EXPlorer (0.6)

xush wrote:

I *think* it could be this one, but I really thought I fixed it. Trying to reproduce it again for a up-to-date backtrace.

EDIT: https://github.com/xushWT/EXPRemake/com … 3c72eea21a that should fix it.
EDIT 2: Okay, not actually fixing it, but at least its not crashing for now. Im working on the actual issue right now.
EDIT 3: Should be fixed.

OK, I'm hosting an EXP server now.

Let's see if it crashes again.

9

Re: [MOD] EXPlorer (0.6)

5.230.10.216:8303
5.230.10.216:8304
Compiled with GLIBC_2.12: https://www.dropbox.com/s/vuq7yutgg4oh11a/explorer?dl=0

10

Re: [MOD] EXPlorer (0.6)

Marcely99 wrote:

Compiled with GLIBC_2.12: https://www.dropbox.com/s/vuq7yutgg4oh11a/explorer?dl=0

An x86_64 binary, like in the original post. What makes compiling with glibc 2.12 special? smile

11 (edited by Marcely99 2016-04-01 14:28:34)

Re: [MOD] EXPlorer (0.6)

heinrich5991 wrote:
Marcely99 wrote:

Compiled with GLIBC_2.12: https://www.dropbox.com/s/vuq7yutgg4oh11a/explorer?dl=0

An x86_64 binary, like in the original post. What makes compiling with glibc 2.12 special? smile

I had problems using centos 7 /lib64/libc.so.6: version `GLIBC_2.14' not found

12 (edited by Deepfinder 2016-04-01 15:34:57)

Re: [MOD] EXPlorer (0.6)

Marcely99 wrote:
heinrich5991 wrote:
Marcely99 wrote:

Compiled with GLIBC_2.12: https://www.dropbox.com/s/vuq7yutgg4oh11a/explorer?dl=0

An x86_64 binary, like in the original post. What makes compiling with glibc 2.12 special? smile

I had problems using centos 7 /lib64/libc.so.6: version `GLIBC_2.14' not found

You just have to update this

I will be banned if I troll again ...

13 (edited by Marcely99 2016-04-01 16:46:36)

Re: [MOD] EXPlorer (0.6)

Deepfinder wrote:
Marcely99 wrote:
heinrich5991 wrote:

An x86_64 binary, like in the original post. What makes compiling with glibc 2.12 special? smile

I had problems using centos 7 /lib64/libc.so.6: version `GLIBC_2.14' not found

You just have to update this

"Package glibc-2.12-1.166.el6_7.7.x86_64 already installed and latest version
Nothing to do"

14

Re: [MOD] EXPlorer (0.6)

Okay, update your servers smile Saved scores are done!

Real programmers don't comment their code - it was hard to write, it should be hard to understand.
Proudly verkeckt since 2010.

15

Re: [MOD] EXPlorer (0.6)

xush wrote:

Okay, update your servers smile Saved scores are done!

src/game/server/db_sqlite3.cpp: In destructor ‘CSql::~CSql()’:
src/game/server/db_sqlite3.cpp:130:16: warning: deleting object of polymorphic class type ‘CQuery’ which has non-virtual destructor might cause undefined behaviour [-Wdelete-non-virtual-dtor]
         delete pQuery;
                ^

You probably want to declare the destructor as virtual.

16

Re: [MOD] EXPlorer (0.6)

@xush: Since you asked on IRC, no, the server hasn't crashed again.

17

Re: [MOD] EXPlorer (0.6)

As the EXPlorer 0.6 compiling from Linux to Windows, this code

18

Re: [MOD] EXPlorer (0.6)

Not sure what you are trying zu say, sorry.

Real programmers don't comment their code - it was hard to write, it should be hard to understand.
Proudly verkeckt since 2010.

19 (edited by Slinack 2016-12-18 15:50:14)

Re: [MOD] EXPlorer (0.6)

This is nice... the best (vani-like) singleplayer/co-op experience ever since Rajh's Zomb Mod I think.
Choupom did a great job, and so did you, xush smile

I just wish there were more than 2 servers running it smile

check out these maps: infiltrate - choco - dustycloud

20

Re: [MOD] EXPlorer (0.6)

are you still working on the windows binaries? Love it that someone took the time to update this sweet mod.