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!

RJ's Plugin/Development Collection

Discussion in 'Plugins' started by RJ, Feb 1, 2013.

  1. Professorial Mister Man

    Professorial Mister Man I don't know what I'm doing.

    I got two pictures, but no text. I didn't make either of them just shrunk em down to the correct size.


    http://filesmelt.com/dl/enslavedvort.png

    http://filesmelt.com/dl/vort.png
     
  2. Hey, RJ. Since you're so good at making static entities (I tried backwards engineering your plugins, but I suck at lua so I got stuck and went fuckit) here's something you could add, it'd need extra models and sounds which would be avaliable here. http://steamcommunity.com/sharedfiles/filedetails/?id=145004071

    Doubt it would take long, so it'd be cool.
     
  3. RJ

    RJ no pay Legend Clockwork Customer

    New release!

    As requested by Cat Litterer (formerly known as Otto The Pup).

    Dat flicker.
     
  4. Professorial Mister Man

    Professorial Mister Man I don't know what I'm doing.

    Don't know if you noticed or not, but the vort factions aren't working propperly.

    sh_vortigaunt shows this

    Code:
    -- Called when a player is transferred to the faction.
    function FACTION:OnTransferred(player, faction, name)
    	if (faction.name == FACTION_VORTSLAVE) then
    		if (player:QueryCharacter("gender") == GENDER_MALE) then
    			player:SetCharacterData("model", self.models.male[1], true);
    		else
    			player:SetCharacterData("model", self.models.female[1], true);
    		end;
    	else
    		return false;
    	end;
    end;
    
    FACTION_VORT = FACTION:Register();
    You want this.

    Code:
    -- Called when a player is transferred to the faction.
    function FACTION:OnTransferred(player, faction, name)
    	if (faction.name == FACTION_VORT) then
    		if (player:QueryCharacter("gender") == GENDER_MALE) then
    			player:SetCharacterData("model", self.models.male[1], true);
    		else
    			player:SetCharacterData("model", self.models.female[1], true);
    		end;
    	else
    		return false;
    	end;
    end;
    
    FACTION_VORT = FACTION:Register();
    It is the opposite for enslaved vort. I fixed it in the plugin I DL'd but you should update it for erryone else k?
     
  5. Professorial Mister Man

    Professorial Mister Man I don't know what I'm doing.

    SCRATCH THAT

    Seems like the entire vortigaunt plug in is fucked up, voices don't work, can't set myself as normal vort or anything.


    EDIT: Didn't mean to leave a reply, I meant to edit the other thing. Sorry if I looks like I was shitposting D:
     
  6. RJ

    RJ no pay Legend Clockwork Customer

    Err... No. That's just to make it so that you can't be transfered to the vortigaunt faction if you're not a vortigaunt. Vortigaunts can only be transfered to Enslaved Vortigaunts and Enslaved Vortigaunts can only be transfered to Vortigaunts.

    I had it working for when I tested it all. I'll take a look at it tonight.
     
  7. Professorial Mister Man

    Professorial Mister Man I don't know what I'm doing.

    Weird I'll try a clean install.
     
  8. sants1

    sants1 I'm an asshole. That's all.

    Lel, campfires. Nice.

    Added
     
  9. The Doctor M.D.

    The Doctor M.D. Ay lil' mama lemme' whisper in ya' Clockwork Customer

    My nexus shall be filled...FILLED I SAY WITH CAMPFIRES! AGHAHAHAH
     
  10. Brilliant work on these plugins, If I didn't have them on my server it wouldn't be as good :p
     
  11. Kezter

    Kezter Certified Old Fag

    That's the magic of RJ
     
  12. Grike

    Grike Hallelujah.

    No words to say..

    EPIC.
     
  13. Hello i am getting a Error when i try to create a normal vortigaunt.
    It doenst show in the console but right after i can choose the attributes and i want to create a normal vortigaunt its gives me the Error: You did not choose a model, or the model that you choose is not valid. What do i need to do?

    The enslaved vortigaunt works fine.


    Heres my Vortigaunt Lua

    Code:
    --[[
    	? 2012 CloudSixteen.com do not share, re-distribute or modify
    	without permission of its author ([email protected]).
    --]]
    
    local FACTION = Clockwork.faction:New("Vortigaunt");
    
    FACTION.useFullName = true;
    FACTION.whitelist = true;
    FACTION.material = "halfliferp/factions/vortigaunt";
    FACTION.models = {
    	female = {
    		"models/vortigaunt.mdl",
    	},
    	male = {
    		"models/vortigaunt.mdl",
    	};
    };
    
    -- Called when a player is transferred to the faction.
    function FACTION:OnTransferred(player, faction, name)
    	if (faction.name != FACTION_CITIZEN) then
    		return false;
    	end;
    end;
    
    FACTION_VORT = FACTION:Register();


    Here is my
     
  14. RJ

    RJ no pay Legend Clockwork Customer

  15. You should really keep updating this post though. :V
    It would be hell if everyone started posting their plugins in another site.

    Cakez; removed it for you. (;
     
  16. RJ

    RJ no pay Legend Clockwork Customer

    I may. Depending on how much stuff I release and how often.
     
  17. Cz.robeson

    Cz.robeson Guest

    Stalker faction with voices, maybe?
     
  18. huh

    don't those things just scream?
     
  19. All they do is press buttons.
     
  20. Yeah that's pretty much all I remember about them from the game :p
     

Previous Readers (Total: 0)