Goonstation Forums
[Feature] Sec Belt Reward - Printable Version

+- Goonstation Forums (https://forum.ss13.co)
+-- Forum: Discussion (https://forum.ss13.co/forumdisplay.php?fid=6)
+--- Forum: Patches (https://forum.ss13.co/forumdisplay.php?fid=30)
+---- Forum: Implemented (https://forum.ss13.co/forumdisplay.php?fid=31)
+---- Thread: [Feature] Sec Belt Reward (/showthread.php?tid=7364)



[Feature] Sec Belt Reward - UrsulaMejor - 10-26-2016

Adds a Security Toolbelt skin for Utility Belts. You unlock this by unlocking the medal "Suitable, how about the Oubliette?!"

I thought that the sprites that Sundance made were too cool to be left to rot in the depths of idea-hell, so I made a quick patch that will allow you to turn Utility Belts into them.

Add this to code\WorkInProgress\rewardsLocker.dm

http://puu.sh/rX3LD/e6a84750a3.txt
Code:
/datum/achievementReward/secbelt
    title = "(Skin) Security Toolbelt"
    desc = "Turns your worn Utility Belt into a Security Toolbelt."
    required_medal = "Suitable? How about the Oubliette?!"

    rewardActivate(var/mob/living/carbon/human/activator)

    rewardActivate(var/mob/activator)
        if (!ishuman(activator))
            return
            
        var/mob/living/carbon/human/H = activator

        if (activator.belt && istype(activator.belt, /obj/item/storage/belt/utility))
            var/obj/item/storage/belt/utility/M = activator.belt
            M.icon_state = "secbelt"
            M.item_state = "secbelt"
            M.name = "Security Toolbelt"
            M.desc = "For the trend-setting Security Officer on the go."
            activator.set_clothing_icon_dirty()
        return


Add these sprites to icons\mob\belt.dmi

http://puu.sh/rX3c0/75ac916ab0.dmi

And this sprite to icons\obj\belts.dmi

http://puu.sh/rX3Oa/2ffbebf203.png


RE: [Feature] Sec Belt Reward - Burrito Justice - 10-26-2016

Looks pretty nice.


RE: [Feature] Sec Belt Reward - Ed Venture - 10-26-2016

10 out of 10 idea and patch


RE: [Feature] Sec Belt Reward - Nnystyxx - 10-26-2016

'den outta 'den
i'd like seeing more stuff like this, reskinning common objects to look more fashionable


RE: [Feature] Sec Belt Reward - amaranthineApocalypse - 10-27-2016

(10-26-2016, 10:31 PM)Nnystyxx Wrote: 'den outta 'den
i'd like seeing more stuff like this, reskinning common objects to look more fashionable

I am currently intending to make a fuckton of department backpacks and satchels. Wish me luck. And also pester me about it if i take too long.


RE: [Feature] Sec Belt Reward - Sundance - 10-27-2016

Nice, a use for that sprite! I don't even know how you get that medal, but apparently I have it??

Also amaranthine here's some mock-ups i did ages ago that you might have some use. If I were you, i'd recolor them as they for some reason came out faded.
(10-07-2014, 01:13 PM)Sundance Wrote: [Image: 5LYGZ5n.png]
[Image: oyyh9zE.png]



RE: [Feature] Sec Belt Reward - atamusvaleo - 10-27-2016

I'd love to see these bags implemented; however, if they are, perhaps a chameleon backpack/satchel should be added to the traitor uplink.


RE: [Feature] Sec Belt Reward - amaranthineApocalypse - 10-27-2016

(10-27-2016, 08:59 AM)atamusvaleo Wrote: I'd love to see these bags implemented; however, if they are, perhaps a chameleon backpack/satchel should be added to the traitor uplink.

It really depends HOW they're implemented, if they're achievement rewards then that shouldn't be necessary but if we decide to add them to clothing lockers instead...

It's possibly a good idea to make these things creatable at uniform fabricators


RE: [Feature] Sec Belt Reward - ZeWaka - 11-13-2016

Failed to compile! Please test your patches in the future, thanks.

Edit: okay it's not that urs did not test the patch, it's that they just did not update the code snippet in the spoiler box