![]() |
![]() ![]() |
![]() |
wump |
![]()
Post
#191
|
Newbie ![]() Group: Members Posts: 1 Joined: 12-June 06 Member No.: 745 ![]() |
{ deleted }
|
RR99i |
![]()
Post
#192
|
![]() Member ![]() ![]() Group: Members Posts: 25 Joined: 28-July 05 From: Indiana, USA Member No.: 608 ![]() |
![]() I just wanted to make sure that I downloaded the right files. I downloaded both "RCBot BETA (win32 DLL files only) *LATEST DLLS*" and "RCBot BETA (Files only - no DLLs)" from RCBot Files. Both have a date added from 2004. Just making sure I downloaded the right ones. About the bots for NS. They seem to kill you very fast, which is very good. Some will follow, other's will stay at base. But some of them just run against the walls, and in a circle patterns. I must say, this is one of the best and maybe only bots for Natural Selection. When saying that, having bots for both teams. My brother loves playing, but I just wish the bots were better. It's been almost a year since I last installed RCBots and play NS. I'm downloading the latest patch for NS. I'm hoping it will let my brother and I play together. Seems we're not able to play offline on a LAN. It's good to see Cheeseh is working hard. I hope the bots can get better. Last, I'm also hoping that I installed everything right. My just using the DLL from RCBot, not Metamod. |
Cheeseh |
![]()
Post
#193
|
![]() Admin ![]() ![]() ![]() ![]() ![]() Group: Admin Posts: 3,066 Joined: 11-September 03 From: uk Member No.: 1 ![]() |
I think you will be using the latest version... (they were added sometime 2004 but modified a few days ago!) but you probably dont have the latest waypoints, the waypoints in the filebase.bots-united.com from the rcbot files link are outdated.
get the latest NS 3.1 waypoints from skitchys post here http://rcbot.bots-united.com/forums/index.php?showtopic=807 |
anonym001 |
![]()
Post
#194
|
Member ![]() ![]() Group: Members Posts: 11 Joined: 22-December 04 Member No.: 461 ![]() |
Why are you ignoring the offer to use someones Linux Box?
I am waiting for the Linux compile for months now.. The real server are all running on linux.. --Ano |
Cheeseh |
![]()
Post
#195
|
![]() Admin ![]() ![]() ![]() ![]() ![]() Group: Admin Posts: 3,066 Joined: 11-September 03 From: uk Member No.: 1 ![]() |
The source is available, if any programmer wants to build on linux they can. I don't have access to a linux machine at home, I do at university but I never tried it, and it will probably only work on the machine, i think it uses sun solaris. You need to build for your own machine but there still exists some errors building in linux which seems to be the problem, and I've not got the time right now to look through them all.
|
RR99i |
![]()
Post
#196
|
![]() Member ![]() ![]() Group: Members Posts: 25 Joined: 28-July 05 From: Indiana, USA Member No.: 608 ![]() |
Thanks for the reply Cheeseh.
![]() |
IHQ-Reima[DWMH] |
![]()
Post
#197
|
Advanced Member ![]() ![]() ![]() Group: Members Posts: 67 Joined: 7-June 06 From: Finland Member No.: 737 ![]() |
Gotta test the new vers. today...hopefully it will correct the problem in some co_maps that some of the aliens/rines just stay in base and look around. Pretty frustrating in co_outpost that the rines in one point of the waypoints get the idea: "HEY let's go back!" and the aliens then a**r**e them
![]() ![]() And this gives me an bridge to a question. Could there be different waypoints for onoses? In some maps onos-waypoints would be a great help ![]() ![]() |
anonym001 |
![]()
Post
#198
|
||||
Member ![]() ![]() Group: Members Posts: 11 Joined: 22-December 04 Member No.: 461 ![]() |
Ok. I tryed to fix every error i got on compiling it using gcc (atm i use msys for that) I had to use the only available sourcecode version http://filebase.bots-united.com/index.php?action=file&id=204 So i have several question to your code: file dlls/basemonster.h lines 57-64
What the hell is a typedef without type? i had no idea what to do with this.. I just tryed to change it to typedef int .. well it worked , but if this was a good idea is an other question. Which compiler allows this ? the second: file dlls/generic_class.h lines 974-980
My Vector-Erase Function does not take a pointer as parameter. Neither does the one of msvc .. I just don'T get it.. Maybee you could send me the newest sourcecode? there were some other errors, but nothing big.. --Ano |
||||
Cheeseh |
![]()
Post
#199
|
||
![]() Admin ![]() ![]() ![]() ![]() ![]() Group: Admin Posts: 3,066 Joined: 11-September 03 From: uk Member No.: 1 ![]() |
use this for removeByPointer
the base monster stuff is half-life code not bot code. a typedef with nothing is simply a declaration that is updated elsewhere in the code, it is required where there is a two-way dependency on the identifier and can save including lots of header files. This would only work if they are declared by pointer as a pointer is always a 32bit integer (on 32bit machines) it will compile under MSVC fine. you should use g++ and try looking for flags that can allow such things ps: updated the source |
||
anonym001 |
![]()
Post
#200
|
||
Member ![]() ![]() Group: Members Posts: 11 Joined: 22-December 04 Member No.: 461 ![]() |
Ok i can compile it know. This are the changes i've made: file:lines OLD => NEW
here you can download the compiled metamod version: http://uhrwerk.ath.cx/~suprano/rcbot_mm_i486.so I have no idea if this works, i could not test it yet. Write your experiences plz. Cheeseh: i don'T understand the following error: bot_client.h:652 CBotStateNetMessage(); => CBotStatedNetMessage(); and i still have no idea how ot solve this typedef thing. there was nowhere any code that defined the types later.. --Ano |
||
Cheeseh |
![]()
Post
#201
|
![]() Admin ![]() ![]() ![]() ![]() ![]() Group: Admin Posts: 3,066 Joined: 11-September 03 From: uk Member No.: 1 ![]() |
i would just replace the unknown typedefs to void*
about the CBotStateNetMessage thing ,wheres that? (what line is it saying and any more details it gives) |
anonym001 |
![]()
Post
#202
|
||
Member ![]() ![]() Group: Members Posts: 11 Joined: 22-December 04 Member No.: 461 ![]() |
It is bot_client.h , line 652 This is the original code , unchanged
ther error is: bot_client.h:652: error: ISO C++ forbids declaration of `CBotStateNetMessage' with no type I updated the compiled version (included the *void changes for the typedefs) (the format in which i showed my changes in the previos post: file:lines OLD => NEW ) --Ano |
||
Cheeseh |
![]()
Post
#203
|
![]() Admin ![]() ![]() ![]() ![]() ![]() Group: Admin Posts: 3,066 Joined: 11-September 03 From: uk Member No.: 1 ![]() |
all you have to do there is rename CBotStateMessage() constructor function to CBotStatedMessage() (Note the extra d) thats a typo on my part... although the class is never used, it was a prototype
![]() |
anonym001 |
![]()
Post
#204
|
Member ![]() ![]() Group: Members Posts: 11 Joined: 22-December 04 Member No.: 461 ![]() |
Yes, thats what i ve done. I was just wondering, why such an error does not influence the whole bot
![]() But if its never used, ok , hehe well, lets wait for the answeres if this thing works.. cant wait for it O_o --Ano |
Cheeseh |
![]()
Post
#205
|
![]() Admin ![]() ![]() ![]() ![]() ![]() Group: Admin Posts: 3,066 Joined: 11-September 03 From: uk Member No.: 1 ![]() |
i'd like to see if its working
![]() |
RR99i |
![]()
Post
#206
|
![]() Member ![]() ![]() Group: Members Posts: 25 Joined: 28-July 05 From: Indiana, USA Member No.: 608 ![]() |
![]() |
MarD |
![]()
Post
#207
|
![]() RCBot Fan ![]() ![]() ![]() ![]() Group: Waypointers Posts: 139 Joined: 30-September 04 From: Canada EH? Member No.: 419 ![]() |
Heyyo,
Sadly, bots will never be able to command well until they add bot commanding support in NS... from what we've been told? never gonna happen. They don't care about us who love bots... we're neglected like Valve is neglecting us for HL2 bots. ![]() |
RR99i |
![]()
Post
#208
|
||
![]() Member ![]() ![]() Group: Members Posts: 25 Joined: 28-July 05 From: Indiana, USA Member No.: 608 ![]() |
Man... that stinks. I was hoping for that to happen. Seeing that the developers are having trouble right now. Your right, we may never see that happen. |
||
Cheeseh |
![]()
Post
#209
|
![]() Admin ![]() ![]() ![]() ![]() ![]() Group: Admin Posts: 3,066 Joined: 11-September 03 From: uk Member No.: 1 ![]() |
yeah.. I need something from the NS developers to incorporate some API into the NS mod to create upgrades/buildings etc through a command chair so that the proper resources etc are used.
Whenenevr it can be done. ... I've been thinking of making a whole new bot to do commander, as a metamod plugin and have both running, so I can keep my code tidy. |
anonym001 |
![]()
Post
#210
|
Member ![]() ![]() Group: Members Posts: 11 Joined: 22-December 04 Member No.: 461 ![]() |
i just tested my rcbot-linux built, and it works !!!!
--Ano |
![]() ![]() |
![]() |
Lo-Fi Version | Time is now: 21st June 2025 - 05:32 PM |