Thread Rating:
  • 2 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Feature] Sec Belt Reward
#1
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
Reply


Messages In This Thread
[Feature] Sec Belt Reward - by UrsulaMejor - 10-26-2016, 09:32 PM
RE: [Feature] Sec Belt Reward - by Ed Venture - 10-26-2016, 09:36 PM
RE: [Feature] Sec Belt Reward - by Nnystyxx - 10-26-2016, 10:31 PM
RE: [Feature] Sec Belt Reward - by Sundance - 10-27-2016, 08:12 AM
RE: [Feature] Sec Belt Reward - by atamusvaleo - 10-27-2016, 08:59 AM
RE: [Feature] Sec Belt Reward - by ZeWaka - 11-13-2016, 12:45 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)