1. This forum is ARCHIVED! Visit the new Cloud Sixteen forums, codename Eden, at https://eden.cloudsixteen.com. These forums will remain archived for a few months before being closed down, so try to encourage plugin developers to begin moving their content across to the new forums.
Dismiss Notice
Hi Guest, you need a Steam account to register and post on these forums. Login with Steam at the top of the forums to get started!
Dismiss Notice
Hi Guest, do you want to buy HL2RP or another Clockwork schema? Visit the Cloud Sixteen Store to get started!

Polis' Plugin Collection

Discussion in 'Plugins' started by Polis, Jan 6, 2014.

  1. Polis

    Polis Guest

    Hey, welcome to my plugin collection. Feel free to download and use all of the plugins listed here.
    Report problems with these plugins through Private Messaging.


    Plugin Status:

    [X] - Plugin is working.
    [X] - Plugin partially works, there might be some problems. Fixes should be listed.
    [X] - Plugin doesn't work at all, fix it if you want or wait for me to do it.



    Clockwork


    [DOWNLOAD] - Status Icons [X]
    This plugin adds little icons next to those who have donator or honorable status in the Out-Of-Character chat. These special statuses can be given or revoked with the '/CharSetHonorableStatus' and '/CharSetDonatorStatus' commands. You can also give and take the flags 'H' (for honorable) and 'D' (for donator).

    [​IMG] [​IMG]

    Credits: Blt950 (for the initial OOC icons code), Spencer (for his /chargiveallflags command which I used.)




    Half-Life 2 Roleplay


    Updated! [DOWNLOAD] - Visor Tools [X]
    This nifty little plugin adds various commands that allows any Civil Protection unit, City Scanner, City Administrator or Overwatch unit to take advantage of the often under-used printed texted in the top left of a Civil Protection unit's visor. With this plugin, you can set the current Sociostability status, send out messages to other units with a nice little notification tone, and call for backup if you're in a hot situation.

    [​IMG]

    Commands include; "/VisorStatus", "/VisorNotify", and "/VisorBackup". The /VisorStatus and /VisorNotify commands require a higher ranking Civil Protection or Overwatch Transhuman Arm status or administration privileges.




    [DOWNLOAD] - More Items [X]
    This plugin adds about 28 nice little items to the HL2 RP schematic without the use of silly content packs and extra faffing about. All items are accessible through the 'l' and 'L' flags via the business menu.
    Last Updated: 12/01/14 (08:46 GMT)

    [​IMG]




    [DOWNLOAD] - Cremators [X]
    The 'Cremators' plugins adds a fully functioning Cremator faction to the schematic along with the classic immolator weapon. This plugin includes the heavy breathing and noisy footsteps of the Cremator too, giving off a rather creepy aura. Cremators were something seen in the Half-Life 2 Beta, but were later removed from the final Half-Life 2 game. You can read more about them here: http://half-life.wikia.com/wiki/Cremator

    Note: This plugin uses a workshop addon for the model, sounds and animations. It is automatically added to the server's FastDL when the plugin is installed, and all you need to do is make sure you have downloads enabled on your client. :)
    Last Updated: 25/01/14 (11:30 GMT)

    [​IMG]

    [​IMG]
     
    • Like Like x 1
    • Good Coder Good Coder x 1
  2. Re: [HL2 RP] Civil Protection Notify

    Yeeeeeeeeeeey :D
     
  3. Re: [HL2 RP] Civil Protection Notify

    This is pretty cool, looking forward to see how it works 8) ;D :D
     
  4. JonneBravo

    JonneBravo Guest

    Re: [HL2 RP] Civil Protection Notify

    pretty sure blt made something like this. /ping in-game or something
     
  5. Polis

    Polis Guest

    Re: [HL2 RP] Civil Protection Notify

    I'm not very familiar with Blt950's plugins, so I wouldn't know. This is something I just thought of doing a while back, but only recently got round to actually doing it.
     
  6. JonneBravo

    JonneBravo Guest

    Re: [HL2 RP] Civil Protection Notify

    he made it for lemonpunch but they never used it because shortly after - thanks to rapidjuice, xander, alexd and i - we switched to a more canonical version of civil protection. scanners didn't have the ability to use it and no one fixed it so i suppose it's just another dead plugin.

    good work, though.
     
  7. Polis

    Polis Guest

    Re: [HL2 RP] Civil Protection Notify

    Ah, right. I'm not really for talking scanners and things either, but this works for scanners, high-ranked units and OTA.

    Cheers. :)
     
  8. Polis

    Polis Guest

    Re: Polis's Plugin Collection

    Changed thread into a plugin collection for myself. (11/10/14) (DD:MM:YY)
    Added Various Animals and Necrotics, More Items and Status Icons.
     
  9. kurozael

    kurozael Cloud Sixteen Director Staff Member Administrator Investor

    Re: Polis's Plugin Collection

    Really cool Polis, nice!
     
  10. Polis

    Polis Guest

    Re: Polis's Plugin Collection

    Cheers mate. :)
     
  11. Adler

    Adler cwSexySaveData:SaveSomePieceOfShit() Clockwork Customer

    Re: Polis's Plugin Collection

    Nice Polis, i give you Russian Golden Vodka))))))))))) and matroshka, good plugin
     
  12. Jamestaa

    Jamestaa Guest

    Re: Polis's Plugin Collection

    Good job on these plugins man Polis. Keep up the good work! :3
     
  13. Polis

    Polis Guest

    Re: Polis's Plugin Collection

    Thanks for the compliments guys.
     
  14. Re: Polis's Plugin Collection

    The reason statusicons errors is because everything in the chatbox calls ChatBoxAdjustInfo. When you call Clockwork.player:NotifyAll or any other similar function, that calls ChatBoxAdjustInfo - but there's no info.speaker (because no player is actually saying it), which causes your plugin to error because the speaker is nil.

    The simple fix for this was to check if info.class was ooc.

    Code:
    local PLUGIN = PLUGIN;
    
    function PLUGIN:ChatBoxAdjustInfo(info)
    	if (info.class == "ooc") then
    		if (Clockwork.player:HasFlags(info.speaker, "D")) then
    			info.icon = "icon16/heart.png";
    		elseif (Clockwork.player:HasFlags(info.speaker, "H")) then
    			info.icon = "icon16/rainbow.png";	
    		end;
    	end;
    end;
     
  15. Polis

    Polis Guest

    Re: Polis's Plugin Collection

    Hey, thanks a lot for that Duck.

    EDIT: Plugin updated.
     
  16. Re: Polis's Plugin Collection

    No problemo ;)
     
  17. Polis

    Polis Guest

    Re: Polis's Plugin Collection

    'More Items' has been updated.

    This fixes some items printing messages in the chat box to every single player. I thought i'd fixed this before the release, but I uploaded the wrong folder. Oops.
     
  18. Polis

    Polis Guest

    Re: Polis's Plugin Collection

    New plugin added! 'Visor Tools'
    Removed 'CP Notify'

    Added the visor tools plugin. It's basically a version of CP Notify that is a lot better, has working notification sounds, more commands, and nicer colours.
     
    • Agree Agree x 1
  19. Polis

    Polis Guest

    Re: Polis's Plugin Collection

    Removed 'Various animals and necrotics' due to its shitiness.

    Will upload a mega factions pack later on. :)
     
  20. Polis

    Polis Guest

    Re: Polis's Plugin Collection

    Added the 'Cremators' plugin!

    By far my sexiest plugin yet, feel free to check it out and let me know what you think.
     
    • Agree Agree x 1

Previous Readers (Total: 0)