Salty Pirates (v1)
Advanced
Click to see custom Rules.
Lua map
This map includes Lua scripting logic.
Display info.lua or download file.
Checkout documentation
Edit map info
Reports of Salty Pirates (v1)
Lint check for release-20180307
OpenRA.Utility(1,1): Error: Actor type `migsp` consumes conditions that are not granted: rank-veteran
Errors: 1
Errors: 1
Lint check for release-20180218
OpenRA.Utility(1,1): Error: Actor type `migsp` consumes conditions that are not granted: rank-veteran
Errors: 1
Errors: 1
Lint check for release-20171014
OpenRA.Utility(1,1): Error: Actor type `migsp` consumes conditions that are not granted: rank-veteran
Errors: 1
Errors: 1
Lint check for release-20170421
OpenRA.Utility(1,1): Error: Actor type `migsp` consumes conditions that are not granted: rank-veteran
Errors: 1
Errors: 1
Lint check for release-20161019
OpenRA.Utility(1,1): Error: Actor type `migsp` consumes conditions that are not granted: rank-veteran
Errors: 1
Errors: 1
Lint check for release-20160508
OpenRA.Utility(1,1): Error: Actor type `migsp` consumes conditions that are not granted: rank-veteran
Errors: 1
Errors: 1
Previous revision | Revision | Next revision |
---|---|---|
11 |
Comments for revision 13:
Comments for revision 10:
Materia commented on June 14, 2017, 3:30 p.m.
Hi,
you got "Media.PlayMovieInRadar("paratrop.vqa")" in here.
in older releases that caused a crash for spectators and replays, you should check if this is still the case.
KOYK commented on June 15, 2017, 6:42 p.m.
Hey Materia, yea i got a crash on the replay.crash log said was the video widget for spectators. i will post the bug to github,thank you!
Comments for revision 5:
KOYK commented on March 1, 2017, 8:29 p.m.
@abcdefg30 thank you man! much appreciated
abcdefg30 commented on March 2, 2017, 5:49 p.m.
No problem. Am glad it worked. ^^
Comments for revision 1:
KOYK commented on Feb. 28, 2017, 12:11 a.m.
i dont know why the Lint check status: says fail,the map works fine in release-20161019
abcdefg30 commented on Feb. 28, 2017, 11:56 p.m.
You can basically ignore that lint message. If you want to have it go away you need to add "-WithMakeAnimation:" to "hqtd", I think.
Some rights reserved: Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International. External graphics and sounds are not covered by the license.
Mod:
RA
File Size:
3.1 MB
Categories:
Conquest
Uploader:
Players:
8
Tileset:
TEMPERAT
Size:
126x126
MapFormat:
11
Published:
Apr. 12 - 2018
Downloading:
Parsed by: release-20180307
Lint check status:
release-20180307
release-20180218
release-20171014
release-20170421
release-20161019
release-20160508
Rating:
0.0
Viewed:
836
Downloaded:
290
Played:
0
You can add a check if playerslots are empty before the paratroopers are created :
if player0 ~= nil then
or just make the troopers to creeps is less code in initPlayers :
player0 = Player.GetPlayer("Multi0")
if player0 == nil then
-->player0 = Player.GetPlayer("Creeps")
end
Materia Thank you!!!