Difference between revisions of "WkRandomMap"
From Worms Knowledge Base
Explorer09 (Talk | contribs) m (lowercase title) |
|||
(12 intermediate revisions by 4 users not shown) | |||
Line 6: | Line 6: | ||
| version = 14 July 2009 | | version = 14 July 2009 | ||
| games = [[Worms Armageddon|W:A]] | | games = [[Worms Armageddon|W:A]] | ||
+ | | waver = Up to 3.6.31.0, deprecated since 3.6.31.2b | ||
| language = Delphi | | language = Delphi | ||
| license = Open-source | | license = Open-source | ||
− | | download = [http://shadowtheage.narod.ru/wkRandomMap. | + | | download = [http://shadowtheage.narod.ru/wkRandomMap.html] |
}} | }} | ||
− | '''wkRandomMap''' | + | '''wkRandomMap''' is a [[WormKit]] module that allows you to download a random map from WMDB right from map selection screen. The map being downloaded is random but with certain parameters, like type of the map. |
+ | |||
+ | Since W:A version 3.6.31.2b using this module is deprecated, use [[wkWMDB]] instead. | ||
== Features == | == Features == | ||
Line 22: | Line 25: | ||
== Bugs == | == Bugs == | ||
− | * While downloading is in process, the game freezes and the download progress cannot be stopped (You see progress while | + | * While downloading is in process, the game freezes, and the download progress cannot be stopped (You see progress while downloading) |
− | * If WMDB | + | * If WMDB site changes its design, the module may stop working. |
== Creating custom search parameters == | == Creating custom search parameters == | ||
− | * First of all, go to [[WMDB.org]] and make a search of maps you want to. For example you may search for a map of certain type (e.g. Shoppa) and certain features (e.g. "good graphics") | + | * First of all, go to [[Worms Map Database|WMDB.org]] and make a search of the maps you want to. For example you may search for a map of certain type (e.g. Shoppa) and certain features (e.g. "good graphics") |
− | * Create a file with any name and ".PnG" | + | * Create a file with any name and ".PnG" extension (Case sensitive, this is important!) |
* Open this file with notepad and write: | * Open this file with notepad and write: | ||
** LOAD xxx | ** LOAD xxx | ||
Line 36: | Line 39: | ||
=== Example === | === Example === | ||
− | File | + | File named |
''Random Shoppa with good graphics.PnG'' | ''Random Shoppa with good graphics.PnG'' | ||
− | + | containing string | |
''LOAD /maps/?map[type]=shopper&map[feature_graphics]=1'' | ''LOAD /maps/?map[type]=shopper&map[feature_graphics]=1'' | ||
− | + | while opening in W:A will turn into random shoppa map with good graphics | |
+ | |||
+ | {{OSS}} |
Latest revision as of 22:03, 19 April 2013
(Up to WormKit)
wkRandomMap | |
---|---|
Developer: | ShadowTheAge |
Latest version: | 14 July 2009 |
Supported games: | W:A |
Supported W:A version: | Up to 3.6.31.0, deprecated since 3.6.31.2b |
Language: | Delphi |
License: | Open-source |
Download: | [1] |
wkRandomMap is a WormKit module that allows you to download a random map from WMDB right from map selection screen. The map being downloaded is random but with certain parameters, like type of the map.
Since W:A version 3.6.31.2b using this module is deprecated, use wkWMDB instead.
Features
- Downloading map right before playing
- Map name, type, author is displayed while downloading
- All downloaded maps are saved in history folder, separated by map type
- Customisable parameters of maps to choose
Bugs
- While downloading is in process, the game freezes, and the download progress cannot be stopped (You see progress while downloading)
- If WMDB site changes its design, the module may stop working.
Creating custom search parameters
- First of all, go to WMDB.org and make a search of the maps you want to. For example you may search for a map of certain type (e.g. Shoppa) and certain features (e.g. "good graphics")
- Create a file with any name and ".PnG" extension (Case sensitive, this is important!)
- Open this file with notepad and write:
- LOAD xxx
- where xxx is copied part of URL started with "/Maps/..." (First slash is required)
- Put this file into WA/User/SavedLevels/ folder to make it accessible from ingame
Example
File named
Random Shoppa with good graphics.PnG
containing string
LOAD /maps/?map[type]=shopper&map[feature_graphics]=1
while opening in W:A will turn into random shoppa map with good graphics