View topic - Springie the AutoHost



All times are UTC + 1 hour


Post new topic Reply to topic  [ 656 posts ]  Go to page Previous  1 ... 28, 29, 30, 31, 32, 33  Next
Author Message
PostPosted: 22 May 2009, 23:09 
Server Owner & Developer
User avatar

Joined: 19 May 2006, 18:13
Location: Brno, Czech rep., EU, Terra, Sol, Orion arm, Milky way, Virgo supercluster
1.37.1 fixes compatibility with spring 0.79


Top
 Offline Profile  
 
PostPosted: 22 May 2009, 23:36 
Moderator

Joined: 15 Jul 2007, 21:02
Licho wrote:
Imo it will be inaccurate due to yet measured skill levels and skill fluctuations.

Such test can be easilly done on the server, springie is not needed at all..

Effectivity of its predictions is also inversly proportional to elo points distributed after each match.

Well this way we can programatically test whether elo rankings make sense even when they're confident - if games were decided by coin flips, then you'd see no evidence of higher ELO -> more real win chance


Top
 Offline Profile  
 
PostPosted: 08 Jun 2009, 11:16 
User avatar

Joined: 29 Apr 2008, 15:50
I've got some issues with modoptions.. they don't all seem to be listed:

this is the ModOptions.lua file:
Code:
local options = {
  {
       key="nota",
       name="NOTA Options",
       desc="NOTA Options",
       type="section",
  },
  {
       key="spacebugs",
       name="Spacebug Options",
       desc="Spacebug Options",
       type="section",
  },
  {
    key    = "stupid",
    name   = "Stupid Shit",
    desc   = "Peewee vulcans!  Long Range DGUN cannons!  The Pyro Delivery System!",
    type   = "bool",
    section= "nota",
    def = false,
  },
  {
    key="startoptions",
    name="Game Modes",
    desc="Change the game mode",
    type="list",
    def="normal",
    section="nota",
    items={
      {key="normal", name="Normal", desc="Normal game mode"},
      {key="comstart", name="Commander and Base", desc="Start with a Base and Commander"},
      {key="koth", name="King of the Hill", desc="Control the hill for a set amount of time to win"},
      {key="spacebugs", name="Spacebugs", desc="Bugs from space!"},
    }
  },
  {
    key="hilltime",
    name="Hill control time",
    desc="Set how long a team has to control the hill for (in minutes)",
    type="number",
    def=8,
    min=3,
    max=30,
    step=1.0,
    section="nota",
  },
  {
    key    = 'mo_queentime',
    name   = 'Queen Arrival Time',
    desc   = 'In minutes. Queen will spawn after given time.',
    type   = 'number',
    def    = 45,
    min    = 1,
    max    = 100,
    step   = 1, -- quantization is aligned to the def value
    section="spacebugs",
  },
  {
    key    = 'mo_maxchicken',
    name   = 'Max. Chickens',
    desc   = 'Maximum number of chickens on map.',
    type   = 'number',
    def    = 1000,
    min    = 50,
    max    = 2000,
    step   = 50,    -- quantization is aligned to the def value
    section="spacebugs",
  },
  {
    key    = 'mo_maxburrows',
    name   = 'Max. Burrows',
    desc   = 'Maximum number of burrows on map.',
    type   = 'number',
    def    = 20,
    min    = 1,
    max    = 50,
    step   = 1, -- quantization is aligned to the def value
    section="spacebugs",
  },
}

return options


and here's springie:
Code:
[11:09:55] <[BBC]momfreeek> !listoptions
[11:09:55] * mombot gamemode=0|1|2|3|  (Determines what condition triggers the defeat of a player = 0-The player will lose only after all units of the player will be killed | 1-The player will lose when his commander will be dead | 2-This is a stricter form of commander ends
[11:09:55] * mombot every unit will inherit the lineage from the player whom built it
[11:09:55] * mombot even if shared, when the commander dies the unit will still die | 3-Game will never end | )
[11:09:55] * mombot startmetal=x  (Determines amount of metal and metal storage that each player will start with =  >=0 <=10000)
[11:09:55] * mombot startenergy=x  (Determines amount of energy and energy storage that each player will start with =  >=0 <=10000)
[11:09:55] * mombot maxunits=x  (Determines the ceiling of how many units and buildings a player is allowed to own at the same time =  >=1 <=10000)
[11:09:55] * mombot limitdgun=0|1  (The commander's D-Gun weapon will be usable only close to the player's starting location)
[11:09:55] * mombot ghostedbuildings=0|1  (Once an enemy building will be spotted
[11:09:55] * mombot a ghost trail will be placed to memorize location even after the loss of the line of sight)
[11:09:55] * mombot diminishingmms=0|1  (Everytime a new metal maker will be built, the energy/metal efficiency ratio will decrease)
[11:09:55] * mombot fixedallies=0|1  (Disables the possibility of players to dynamically change alliances ingame)
[11:09:55] * mombot maxspeed=x  (Sets the maximum speed that the players will be allowed to change to =  >=0.1 <=100)
[11:09:55] * mombot minspeed=x  (Sets the minimum speed that the players will be allowed to change to =  >=0.1 <=100)
[11:09:55] * mombot disablemapdamage=0|1  (Prevents the map shape from being changed by weapons)
[11:09:55] * mombot stupid=0|1  (Peewee vulcans!  Long Range DGUN cannons!  The Pyro Delivery System!)


The only option springie seems to recognise is 'stupid' (the first one), all the rest are missing


Top
 Offline Profile  
 
PostPosted: 08 Jun 2009, 11:23 
Server Owner & Developer
User avatar

Joined: 19 May 2006, 18:13
Location: Brno, Czech rep., EU, Terra, Sol, Orion arm, Milky way, Virgo supercluster
Rgenerate modoptions using modoptionsbuilder..
Springies it nos using mods or maps themselves.


Top
 Offline Profile  
 
PostPosted: 08 Jun 2009, 12:02 
User avatar

Joined: 29 Apr 2008, 15:50
k thnx. had to delete previous modinfo


Last edited by momfreeek on 08 Jun 2009, 12:14, edited 1 time in total.

Top
 Offline Profile  
 
PostPosted: 08 Jun 2009, 12:12 
Server Owner & Developer
User avatar

Joined: 19 May 2006, 18:13
Location: Brno, Czech rep., EU, Terra, Sol, Orion arm, Milky way, Virgo supercluster
Read first post of this topic.


Top
 Offline Profile  
 
PostPosted: 24 Jun 2009, 05:47 
Community Lead
User avatar

Joined: 10 Apr 2006, 04:05
Location: Finland, 1944
ModInfoBuilder crashes with no result.


Top
 Offline Profile  
 
PostPosted: 11 Aug 2009, 20:45 

Joined: 05 Aug 2009, 21:32
note that

http://planetspring.free.fr/

is down and became

http://buildbot.eat-peet.net/spring/


Top
 Offline Profile  
 
PostPosted: 25 Aug 2009, 00:44 
Kernel Panic Co-Developer
User avatar

Joined: 16 Nov 2004, 13:08
neddiedrow wrote:
ModInfoBuilder crashes with no result.
Same.

Image
Click to enlarge


Attachments:
ModInfoBuilderCrash.png [5.67 KiB]
Downloaded 152 times
Top
 Offline Profile  
 
PostPosted: 25 Aug 2009, 00:58 
Server Owner & Developer
User avatar

Joined: 19 May 2006, 18:13
Location: Brno, Czech rep., EU, Terra, Sol, Orion arm, Milky way, Virgo supercluster
probably incorrect path to spring unitsync.dll
put it to folder where unitsync is..

if it still does not work, juste tell me what mods it is missing and i can update it..


Top
 Offline Profile  
 
PostPosted: 25 Aug 2009, 01:03 
Kernel Panic Co-Developer
User avatar

Joined: 16 Nov 2004, 13:08
I prefer building the mod list myself so it doesn't list anything but http://jobjol.nl/1685

I copied an unitsync.dll from 0.80.2 into the same folder as springie and ModInfoBuilder.exe


Top
 Offline Profile  
 
PostPosted: 25 Aug 2009, 01:23 
Server Owner & Developer
User avatar

Joined: 19 May 2006, 18:13
Location: Brno, Czech rep., EU, Terra, Sol, Orion arm, Milky way, Virgo supercluster
You have to do it other way :)
Copy modinfobuilder and its libs where unitsync is..

Because unitsync must be in spring folder to find mods/maps.


Top
 Offline Profile  
 
PostPosted: 25 Aug 2009, 01:59 
Kernel Panic Co-Developer
User avatar

Joined: 16 Nov 2004, 13:08
I copied more files from Spring folder to Springie folder, and now it works. Thanks!


Top
 Offline Profile  
 
PostPosted: 29 Aug 2009, 12:32 
Server Owner & Developer
User avatar

Joined: 19 May 2006, 18:13
Location: Brno, Czech rep., EU, Terra, Sol, Orion arm, Milky way, Virgo supercluster
---------
1.37.2
---------

Minor fixes:
* fixed bot support
* elo displayed after !balance is not crazy anymore
* !manage works properly on planetwars hosts


Top
 Offline Profile  
 
PostPosted: 29 Aug 2009, 12:34 

Joined: 18 Aug 2007, 18:04
I have a bug to report:

elo is publicly displayed


Top
 Offline Profile  
 
PostPosted: 29 Aug 2009, 13:33 
Server Owner & Developer
User avatar

Joined: 19 May 2006, 18:13
Location: Brno, Czech rep., EU, Terra, Sol, Orion arm, Milky way, Virgo supercluster
Fixed..

it now says:
unknown
average
below average
poor
above average
good
godlike


Top
 Offline Profile  
 
PostPosted: 04 Sep 2009, 11:38 

Joined: 04 Sep 2009, 11:31
Hi,

I have a problem with "spring-dedicated.exe".

In fact when i launch the game, i have this windows :

Microsoft Visual C++ library

This application has requested the runtime to terminate it in an unusual way.
Please contact the application's support for more information.


I have tried lot of version of "spring-dedicated.exe" but there is always this error.

Can you help me plz???


Top
 Offline Profile  
 
PostPosted: 04 Sep 2009, 11:44 
Server Owner & Developer
User avatar

Joined: 19 May 2006, 18:13
Location: Brno, Czech rep., EU, Terra, Sol, Orion arm, Milky way, Virgo supercluster
You are missing some spring libraries. Install spring first and put dedicated to its folder.


Top
 Offline Profile  
 
PostPosted: 04 Sep 2009, 13:25 

Joined: 04 Sep 2009, 11:31
I have re installed Spring but there is always this error!

:(


Top
 Offline Profile  
 
PostPosted: 04 Sep 2009, 13:48 
Server Owner & Developer
User avatar

Joined: 19 May 2006, 18:13
Location: Brno, Czech rep., EU, Terra, Sol, Orion arm, Milky way, Virgo supercluster
Then you have outdated dedicated server. Get latest.


Top
 Offline Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 656 posts ]  Go to page Previous  1 ... 28, 29, 30, 31, 32, 33  Next

All times are UTC + 1 hour


Who is online

Users browsing this forum: Google [Bot] and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group

Site layout created by Roflcopter et al.