Results 1 to 4 of 4
  1. #1
    mfarhanry's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Alcatraz
    Posts
    137
    Reputation
    10
    Thanks
    28
    My Mood
    Chatty

    Morbus brood finder

    anyone have a alien detector ? and are traitor detector work with morbus ?

  2. #2
    niller303's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Denmark
    Posts
    105
    Reputation
    10
    Thanks
    475
    Code:
    local Broods = {}
    hook.Add("Think", "EpicBroodDetector", function()
    	for k, v in pairs(player.GetAll()) do
    		if v != LocalPlayer() and !table.HasValue(Broods, v) then
    			if v:GetModel() == "models\morbus\swarm\enhancedslasher" then
    				print("Ghozt ROCKS")
    				chat.AddText(Color(255,0,0,255), v.." is a Brood")
    				table.insert(Broods, v)
    			end
    		end
    	end
    end)
    now put dis in a lua file and run it (its untested and i never played morbus so yeah.)

  3. #3
    zerothe's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    68
    Reputation
    10
    Thanks
    13
    Quote Originally Posted by niller303 View Post
    Code:
    local Broods = {}
    hook.Add("Think", "EpicBroodDetector", function()
    	for k, v in pairs(player.GetAll()) do
    		if v != LocalPlayer() and !table.HasValue(Broods, v) then
    			if v:GetModel() == "models\morbus\swarm\enhancedslasher" then
    				print("Ghozt ROCKS")
    				chat.AddText(Color(255,0,0,255), v.." is a Brood")
    				table.insert(Broods, v)
    			end
    		end
    	end
    end)
    now put dis in a lua file and run it (its untested and i never played morbus so yeah.)
    I don't know where to start






    Code:
    if (cs == "weapon_mor_brood") then
    				ent:GetOwner():SetRole(2)
    			elseif (cs == "weapon_mor_swarm") then
    				ent:GetOwner():SetRole(3)



    You should probably contribute before being a complete leech. Figure the rest out. Very easy.

  4. #4
    darkzone1920's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    1
    surface.CreateFont( "AlientFont", { font = "Arial", size = 14, weight = 750, antialias = false, outline = true } );
    hook.Add("HUDPaint", "aliens_aaa", function()
    if ( gmod.GetGamemode().Name ) == "MORBUS" then

    for _, v in pairs( ents.FindByClass( "weapon_mor_swarm" ) ) do
    local AlienPos = v:EyePos():ToScreen()
    draw.SimpleText( "Alien", "AlientFont", AlienPos.x, AlienPos.y - 22, Color( 255, 0, 0, 255 ), TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER )
    end
    for _, v in pairs( ents.FindByClass( "weapon_mor_brood" ) ) do
    local AlienPos = v:EyePos():ToScreen()
    draw.SimpleText( "Brood Alien", "AlientFont", AlienPos.x, AlienPos.y - 22, Color( 255, 0, 0, 255 ), TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER )
    end
    end
    end)

  5. The Following User Says Thank You to darkzone1920 For This Useful Post:

    y0slaap (12-02-2014)

Similar Threads

  1. Proxy Finder enterprise 2.0
    By llvengancell in forum WarRock - International Hacks
    Replies: 7
    Last Post: 09-30-2007, 07:08 PM
  2. DLL + Processes Finder
    By Redbull in forum WarRock - International Hacks
    Replies: 14
    Last Post: 08-27-2007, 01:07 AM
  3. [request]myspace IP finder
    By fable741 in forum General
    Replies: 2
    Last Post: 06-02-2007, 01:06 PM
  4. My UCE pointer finder works but how do i find pointer in WarRock?
    By scooby107 in forum WarRock - International Hacks
    Replies: 9
    Last Post: 05-01-2007, 01:14 PM