[MPAseco] Requests and ideas

MPAseco is a server controller for Shootmania, which provides you with a framework and some standard plugins.

Moderator: NADEO

BaBiDi
Posts: 21
Joined: 18 Sep 2012, 18:52

Re: [MPAseco] Requests and ideas

Post by BaBiDi »

... Okay, i think i use really old Joust script... :|

Because, i have one server openbeta dedicated run with this config file :

Code: Select all

<?xml version="1.0" encoding="utf-8" ?>

<dedicated>
	<authorization_levels>
		<level>
			<name>SuperAdmin</name>
			//blabla
		</level>
		<level>
			<name>Admin</name>
			//blabla
		</level>
		<level>
			<name>User</name>
			<password>User</password>
		</level>
	</authorization_levels>
	
 	<masterserver_account>
		//Blabla
	</masterserver_account>
	
	<server_options>
		<name>Blabla</name>
		<comment>Serveur Joust</comment>
		<hide_server>0</hide_server>					<!-- value is 0 (always shown), 1 (always hidden), 2 (hidden from nations) -->

		<max_players>4</max_players>
		<password></password>
		
		<max_spectators>10</max_spectators>
		<password_spectator></password_spectator>
		
		<ladder_mode>forced</ladder_mode>				<!-- value between 'inactive', 'forced' (or '0', '1') -->
		
		<enable_p2p_upload>True</enable_p2p_upload>
		<enable_p2p_download>True</enable_p2p_download>
		
		<callvote_timeout>60000</callvote_timeout>
		<callvote_ratio>0.5</callvote_ratio>				<!-- default ratio. value in [0..1], or -1 to forbid. -->
		<callvote_ratios>
			<voteratio command="Ban" ratio="-1"/>
			<!-- commands can be "Ban", "Kick", "RestartMap", "NextMap", ... -->
		</callvote_ratios>

		<allow_map_download>True</allow_map_download>
		<autosave_replays>False</autosave_replays>
		<autosave_validation_replays>False</autosave_validation_replays>

		<referee_password></referee_password>
		<referee_validation_mode>0</referee_validation_mode>		<!-- value is 0 (only validate top3 players),  1 (validate all players) -->

		<use_changing_validation_seed>False</use_changing_validation_seed>

		<disable_horns>False</disable_horns>
		<clientinputs_maxlatency>0</clientinputs_maxlatency>		<!-- 0 mean automatic adjustement -->
	</server_options>
	
	<system_config>
		<connection_uploadrate>8000</connection_uploadrate>		<!-- Kbits per second -->
		<connection_downloadrate>8000</connection_downloadrate>		<!-- Kbits per second -->

		<allow_spectator_relays>False</allow_spectator_relays>

		<p2p_cache_size>600</p2p_cache_size>

		<force_ip_address></force_ip_address>
		<server_port>2351</server_port>
		<server_p2p_port>3451</server_p2p_port>
		<client_port>0</client_port>
		<bind_ip_address></bind_ip_address>
		<use_nat_upnp></use_nat_upnp>
		
		<xmlrpc_port>5001</xmlrpc_port>
		<xmlrpc_allowremote>False</xmlrpc_allowremote>			<!-- If you specify an ip adress here, it'll be the only accepted adress. this will improve security. -->
		
		<blacklist_url></blacklist_url>
		<guestlist_filename></guestlist_filename>
		<blacklist_filename></blacklist_filename>
		
		<title>SMStormJoust@nadeolabs</title>		<!-- SMStorm, TMCanyon, ... -->

		<minimum_client_build></minimum_client_build>			<!-- Only accept updated client to a specific version. ex: 2011-10-06 -->

		<disable_coherence_checks>False</disable_coherence_checks>	<!-- disable internal checks to detect issues/cheats, and reject race times -->

		<use_proxy>False</use_proxy>
		<proxy_login></proxy_login>
		<proxy_password></proxy_password>
	</system_config>
</dedicated>
And this Matchsettings :

Code: Select all

<?xml version="1.0" encoding="utf-8" ?>
<playlist>
	<gameinfos>
		<game_mode>0</game_mode>
		<chat_time>10000</chat_time>
		<finishtimeout>1</finishtimeout>
		<allwarmupduration>0</allwarmupduration>
		<disablerespawn>0</disablerespawn>
		<forceshowallopponents>0</forceshowallopponents>
		<script_name>Joust.Script.txt</script_name>
		<rounds_pointslimit>50</rounds_pointslimit>
		<rounds_usenewrules>0</rounds_usenewrules>
		<rounds_forcedlaps>0</rounds_forcedlaps>
		<rounds_pointslimitnewrules>5</rounds_pointslimitnewrules>
		<team_pointslimit>5</team_pointslimit>
		<team_maxpoints>6</team_maxpoints>
		<team_usenewrules>0</team_usenewrules>
		<team_pointslimitnewrules>5</team_pointslimitnewrules>
		<timeattack_limit>300000</timeattack_limit>
		<timeattack_synchstartperiod>0</timeattack_synchstartperiod>
		<laps_nblaps>5</laps_nblaps>
		<laps_timelimit>0</laps_timelimit>
		<cup_pointslimit>100</cup_pointslimit>
		<cup_roundsperchallenge>5</cup_roundsperchallenge>
		<cup_nbwinners>3</cup_nbwinners>
		<cup_warmupduration>2</cup_warmupduration>
	</gameinfos>

	<hotseat>
		<game_mode>0</game_mode>
		<time_limit>300000</time_limit>
		<rounds_count>5</rounds_count>
	</hotseat>

	<filter>
		<is_lan>1</is_lan>
		<is_internet>1</is_internet>
		<is_solo>0</is_solo>
		<is_hotseat>0</is_hotseat>
		<sort_index>1000</sort_index>
		<random_map_order>0</random_map_order>
	</filter>

	<startindex>0</startindex>
//listmap


</playlist>
And one script joust date on 11/10/12. He works (posssibly not in ladder mode, i don't check)

So, how you have callback in Elite/Joust/... ?
BaBiDi
Posts: 21
Joined: 18 Sep 2012, 18:52

Re: [MPAseco] Requests and ideas

Post by BaBiDi »

:shock: :(
godo
Posts: 258
Joined: 25 Jan 2013, 23:05

Re: [MPAseco] Requests and ideas

Post by godo »

Hi dudes ,

To start with, I apologize for my low level of English.

I come to see you because we use MPaseco for our server SM.

We have lot of server with the siege mode , but no administrator of server is planned for that (the statistics who does not work, the automatic autobalance in begin of map which does not work, no tail for spectator when the serv is full)

With the aim of offering the best has our player, I would like to know if it would be possible for you to make us a version adapted Xaseco has this mode?
OS: Win7 32bit
CPU: Intel Core 2 Duo 1.87 Ghz
RAM: 2gb DDR2
GPU: AMD Radeon HD 5450
Motherboard: Cuba MS-7301
Sound: onboard: Realtek
The_Big_Boo
Posts: 1041
Joined: 15 Jun 2010, 15:46

Re: [MPAseco] Requests and ideas

Post by The_Big_Boo »

kremsy wrote:what exactly do you mean with the tail for spectators?
He means a queue (wrong translation of "queue", which is in this case the same word in both languages)
OS: Win 7 Pro x64
RAM: 2x4GB Corsair @ 1600MHz
CPU: Intel i5 760 @ 3.6GHz
Mobo: Asus P7P55D-E
GPU: NVidia GTX 760 2GB
HDD: WD Black 1TB
Sound: VIA VT1828S (onboard)
Peripherals: Razer DeathAdder - Razer DeathStalker - Logitech F310
godo
Posts: 258
Joined: 25 Jan 2013, 23:05

Re: [MPAseco] Requests and ideas

Post by godo »

Ty for your help Lukas ,

Just one idea :

The button for queuerepay is little useless, that would be good if this button can balance the team

And can you say to me that you will have solved the problem of the autobalance in the beginning of map?

Thank you
OS: Win7 32bit
CPU: Intel Core 2 Duo 1.87 Ghz
RAM: 2gb DDR2
GPU: AMD Radeon HD 5450
Motherboard: Cuba MS-7301
Sound: onboard: Realtek
User avatar
steeffeen
Translator
Translator
Posts: 2472
Joined: 14 Oct 2012, 16:22
Location: Germany

Re: [MPAseco] Requests and ideas

Post by steeffeen »

kremsy wrote:The autobalance on begin of the map is a fail in the siege script, maybe steeffeen find some minutes next week to find out the cause of it.
there isn't much to say about that, it's a script setting... turn it off and there won't be automatic team balances
    Game Mode and Title Pack Creator, Developer, ShootMania-Player & more

    ManiaControl, FancyManiaLinks
    Post Reply

    Return to “MPAseco”

    Who is online

    Users browsing this forum: Semrush [Bot] and 1 guest