Boogiepop210 Posted October 9, 2022 Share Posted October 9, 2022 So, what is interesting? Well while I was messing around I found out an way to make an auto attacking aura around the player. How? With the groundpounder component. Apparently the GroundPound scales to your weapon's damage and also it will automatically use the weapon you've in your hand at 5x the rate you could do normally if you groundpounded every 0.3 seconds. It also gets all the buffs/effects the weapon you holding has like electric damage, tail of 3 cats deaggro abblity and fx, and more. It also will attack all targets in the GroundPound range. If you wanna try then I'll put the GroundPound code. Setup command c_select():AddComponent("groundpounder") c_select().components.groundpounder.numRings = 3 c_select().components.groundpounder.damageRings = 3 c_select().components.groundpounder.destructionRings = 3 c_select().components.groundpounder.platformPushingRings = 3 c_select().components.combat:SetDefaultDamage(0) c_select().components.combat:SetRange(30,35) c_select().components.groundpounder:GroundPound() With your cursor on yourself. GroundPound every 0.3 seconds command (use the setup one on yourself before you do it or you'll disconnect). function groundpound(inst) inst.components.groundpounder:GroundPound() end ThePlayer:DoPeriodicTask(0.3, groundpound, 1) Edit: sorry for my bad Grammer lol. Link to comment https://forums.kleientertainment.com/forums/topic/143696-weird-but-interesting-mechanic/ Share on other sites More sharing options...
Captain_Rage Posted October 9, 2022 Share Posted October 9, 2022 You mean in theory you could feed Bearger seasoned Volt Goat Chaud-Froid and have him duke it out with the Bee Queen? Link to comment https://forums.kleientertainment.com/forums/topic/143696-weird-but-interesting-mechanic/#findComment-1602057 Share on other sites More sharing options...
loopuleasa Posted October 9, 2022 Share Posted October 9, 2022 what is a groundpound? Link to comment https://forums.kleientertainment.com/forums/topic/143696-weird-but-interesting-mechanic/#findComment-1602060 Share on other sites More sharing options...
IanKSB91 Posted October 9, 2022 Share Posted October 9, 2022 19 minutes ago, loopuleasa said: what is a groundpound? I think it is the attack that bearger does when it smashes the ground. Link to comment https://forums.kleientertainment.com/forums/topic/143696-weird-but-interesting-mechanic/#findComment-1602065 Share on other sites More sharing options...
loopuleasa Posted October 9, 2022 Share Posted October 9, 2022 30 minutes ago, IanKSB91 said: I think it is the attack that bearger does when it smashes the ground. ah, I see now, so this thread is how to mod in an groundpound aura I thought OP found out a way to break the client in a way, so that you generate groundpounds somehow, but no you need to be server admin from what I see Link to comment https://forums.kleientertainment.com/forums/topic/143696-weird-but-interesting-mechanic/#findComment-1602075 Share on other sites More sharing options...
Boogiepop210 Posted October 9, 2022 Author Share Posted October 9, 2022 12 minutes ago, loopuleasa said: ah, I see now, so this thread is how to mod in an groundpound aura I thought OP found out a way to break the client in a way, so that you generate groundpounds somehow, but no you need to be server admin from what I see I wasnt actually talking about modding it, it works with console commands too. I would be very cool if someone used this for an mod as it's the most simple way you could make an auto attack aura. (Probably) 1 hour ago, Captain_Rage said: You mean in theory you could feed Bearger seasoned Volt Goat Chaud-Froid and have him duke it out with the Bee Queen? Most likely if he eats it, I was mainly talking about if the player had the groundpounder component but it would prob also effect entities like bishops who has an invisible weapon so they can attack. Also I forgot to say, the entity you apply the groundpounder component too most likely need the combat component to GroundPound. Link to comment https://forums.kleientertainment.com/forums/topic/143696-weird-but-interesting-mechanic/#findComment-1602076 Share on other sites More sharing options...
Well-met Posted October 9, 2022 Share Posted October 9, 2022 In theory you could create an entire mod via the console alone. You haven't really discovered much, the console works no different than a lua file. Link to comment https://forums.kleientertainment.com/forums/topic/143696-weird-but-interesting-mechanic/#findComment-1602078 Share on other sites More sharing options...
Boogiepop210 Posted October 9, 2022 Author Share Posted October 9, 2022 1 minute ago, Well-met said: In theory you could create an entire mod via the console alone. You haven't really discovered much, the console works no different than a lua file. agreed Link to comment https://forums.kleientertainment.com/forums/topic/143696-weird-but-interesting-mechanic/#findComment-1602082 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.
Please be aware that the content of this thread may be outdated and no longer applicable.