Hide creeper from frontend, prevent addition of creeper ammo via ammo scheme
This is a temporary measure because the creeper is still very unfinished.
This can be reverted when the creeper is finished.
HedgewarsScriptLoad("/Scripts/Locale.lua")
function awardAchievement(name, statMessage, capgrp)
local achievementString = string.format(loc("Achievement gotten: %s"), name)
if capgrp == nil then
captionType = capgrpMessage2
end
if capgrp ~= false then
AddCaption(achievementString, 0xFFBA00FF, capgrpMessage2)
end
if not statMessage then
statMessage = achievementString
end
SendStat(siCustomAchievement, statMessage)
end