AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Unapproved Plugins (https://forums.alliedmods.net/forumdisplay.php?f=109)
-   -   [TF2] TF2Ware - Wario Ware Microgaming!! (https://forums.alliedmods.net/showthread.php?t=148317)

Mecha the Slag 01-23-2011 16:17

[TF2] TF2Ware - Wario Ware Microgaming!!
 

TF2Ware is a custom SourceMod game mode and accompanying map that emulates the gameplay style of the WarioWare game series on Nintendo consoles.

The gameplay within the map involves all players participating in randomly chosen 'microgames', simple tasks with short instructions and a duration of less than 5 seconds. Players are automatically changed to the class the microgame (or their role within the microgame) requires, are generally forced to wield a specific weapon (or whatever is currently in the required slot), and do not have any ammunition or cannot melee unless the microgame requires it. Players earn one point per microgame that they 'win', and as soon as one player has 18 points a Boss Stage is begun, which is longer (about one minute on average) and slightly more complex than the normal microgames, and always has a dedicated environment within the map. The player with the most points following a Boss Stage is given free rein to kill all other players on the stage, after which the flow of gameplay is looped and everybody's score resets to 0.

Commands
ww_list - Lists all microgames and their IDs

CVars
ww_enable (0/1) - Enables/Disables TF2 Ware.
ww_force (0) - Force a certain minigame (0 to not force).
ww_speed (1.0) - Speed level.
ww_log (0/1) - Log server events?
ww_special (0/1) - Next round is special round?
ww_gamemode (-1) - Gamemode. 0 to force normal, 1 to force Wipeout.
ww_force_special (0) - Force a certain special round

Unknown Bugs
The issues will not be addressed as we have moved on to a sequel to this gamemode. Anyone can feel free to attempt to correct it. The issues are minor and should have no real significance.
  • Players are sometimes randomly not given a weapon
  • The map sometimes returns an inline error to clients joining late. This is a TF2 bug.

INSTALL INSTRUCTIONS
  1. Download SDKHooks and Attachables
  2. Download the Plugin HERE
  3. Download the Map HERE
  4. Extract the files onto the server and fastDL.
No, it will NOT work on a listen server.

Source
The latest source is available for anyone at the SVN repository. You will need an assembla account.
Code:

https://subversion.assembla.com/svn/tf2ware/
(Less-up-to-date alternative)

Have fun!

Disclaimer: This material is provided "as is", with absolutely no warranty or support expressed or implied; not even the implied warranty of merchantability or fitness for a particular purpose.

Mecha the Slag 01-23-2011 16:19

Re: [TF2] TF2Ware - Wario Ware Microgaming!!
 
For more info, check out

TF2Ware.net

ultrafunix 01-23-2011 16:19

Re: [TF2] TF2Ware - Wario Ware Microgaming!!
 
love the mod, glad its public

iSimon 01-23-2011 16:31

Re: [TF2] TF2Ware - Wario Ware Microgaming!!
 
Just awesome. Thanks a ton for releasing!

xomp 01-23-2011 17:15

Re: [TF2] TF2Ware - Wario Ware Microgaming!!
 
Good work Mecha, thanks for finally releasing it!

FlaminSarge 01-23-2011 17:56

Re: [TF2] TF2Ware - Wario Ware Microgaming!!
 
Quote:

Originally Posted by Mecha the Slag
we have moved on to a sequel to this gamemode

No more info than that?

NuclearWatermelon 01-23-2011 18:08

Re: [TF2] TF2Ware - Wario Ware Microgaming!!
 
Quote:

Originally Posted by FlaminSarge (Post 1397929)
No more info than that?

TF2Ware2: DIY

Refer to the TF2Ware steam group for current public information.

sejin513 01-23-2011 18:20

Re: [TF2] TF2Ware - Wario Ware Microgaming!!
 
finally!
great job Mecha!

sejin513 01-23-2011 19:23

Re: [TF2] TF2Ware - Wario Ware Microgaming!!
 
wrong files S:
Code:

Failed to load sound "imgay\tf2ware\warioman_fail.mp3", file probably missing from disk/repository
Failed to load sound "imgay\tf2ware\warioman_boss.mp3", file probably missing from disk/repository
Failed to load sound "imgay\tf2ware\warioman_intro.mp3", file probably missing from disk/repository
Failed to load sound "imgay\tf2ware\warioman_win.mp3", file probably missing from disk/repository
Failed to load sound "imgay\tf2ware\warioman_speedup.mp3", file probably missing from disk/repository

FIX:
Code:

#define MUSIC2_START "imgay/tf2ware/tf2ware_intro.mp3"
#define MUSIC2_START_LEN 2.18
#define MUSIC2_WIN "imgay/tf2ware/tf2ware_win.mp3"
#define MUSIC2_FAIL "imgay/tf2ware/tf2ware_fail.mp3"
#define MUSIC2_END_LEN 2.2
#define MUSIC2_SPEEDUP "imgay/tf2ware/tf2ware_speedup.mp3"
#define MUSIC2_SPEEDUP_LEN 3.29
#define MUSIC2_BOSS "imgay/tf2ware/boss.mp3"
#define MUSIC2_BOSS_LEN 3.9
#define MUSIC2_GAMEOVER "imgay/tf2ware/warioman_gameover.mp3"
#define MUSIC2_GAMEOVER_LEN 8.17


#define MUSIC_START "imgay/tf2ware/warioman_intro.mp3"
#define MUSIC_START_LEN 2.17
#define MUSIC_WIN "imgay/tf2ware/warioman_win.mp3"
#define MUSIC_FAIL "imgay/tf2ware/warioman_fail.mp3"
#define MUSIC_END_LEN 2.19
#define MUSIC_SPEEDUP "imgay/tf2ware/warioman_speedup.mp3"
#define MUSIC_SPEEDUP_LEN 3.9
#define MUSIC_BOSS "imgay/tf2ware/warioman_boss.mp3"
#define MUSIC_BOSS_LEN 4.2
#define MUSIC_GAMEOVER "imgay/tf2ware/warioman_gameover.mp3"
#define MUSIC_GAMEOVER_LEN 8.17

TO
Code:

#define MUSIC2_START "imgay/tf2ware/tf2ware_intro.mp3"
#define MUSIC2_START_LEN 2.18
#define MUSIC2_WIN "imgay/tf2ware/tf2ware_win.mp3"
#define MUSIC2_FAIL "imgay/tf2ware/tf2ware_fail.mp3"
#define MUSIC2_END_LEN 2.2
#define MUSIC2_SPEEDUP "imgay/tf2ware/tf2ware_speedup.mp3"
#define MUSIC2_SPEEDUP_LEN 3.29
#define MUSIC2_BOSS "imgay/tf2ware/boss.mp3"
#define MUSIC2_BOSS_LEN 3.9
#define MUSIC2_GAMEOVER "imgay/tf2ware/gameover.mp3"
#define MUSIC2_GAMEOVER_LEN 8.17


#define MUSIC_START "imgay/tf2ware/tf2ware_intro.mp3"
#define MUSIC_START_LEN 2.17
#define MUSIC_WIN "imgay/tf2ware/tf2ware_win.mp3"
#define MUSIC_FAIL "imgay/tf2ware/tf2ware_fail.mp3"
#define MUSIC_END_LEN 2.19
#define MUSIC_SPEEDUP "imgay/tf2ware/tf2ware_speedup.mp3"
#define MUSIC_SPEEDUP_LEN 3.9
#define MUSIC_BOSS "imgay/tf2ware/boss.mp3"
#define MUSIC_BOSS_LEN 4.2
#define MUSIC_GAMEOVER "imgay/tf2ware/gameover.mp3"
#define MUSIC_GAMEOVER_LEN 8.17


Bury 01-23-2011 19:55

Re: [TF2] TF2Ware - Wario Ware Microgaming!!
 
The latter rounds are far too fast and the syncing gets muddled up with sounds overlapping each other.
The bonus rounds aren't varied enough (basket 5 times in a row)
When there are 2 bonus the latter one finishes early.
In duel mode/wipeout, this is buggy in its entirety, i won with 2 -1 lives and another guy didn't even get a go, so the lives counter is wrong, and others aren't even getting a turn before someone somehow wins.
The sounds are muddled as sejin pointed out.


All times are GMT -4. The time now is 19:55.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.