JaccK1618 Posted April 13, 2021 Share Posted April 13, 2021 Is there a console command or mod that lets you make mobs and yourself larger or smaller? Link to comment https://forums.kleientertainment.com/forums/topic/128904-question/ Share on other sites More sharing options...
QuartzBeam Posted April 13, 2021 Share Posted April 13, 2021 For the player: ThePlayer.Transform:SetScale(x, y, z) For anything else (incl. other players I guess), hover your mouse over the thing and do: c_select().Transform:SetScale(x, y, z) In both cases, x, y and z are how much you want to "stretch" (values above 1) or "squeeze" (values below 1) the thing along that axis. If you want to just make something bigger or smaller while keeping the proportions, you need to put the same number in all 3. Link to comment https://forums.kleientertainment.com/forums/topic/128904-question/#findComment-1448089 Share on other sites More sharing options...
Hornete Posted April 13, 2021 Share Posted April 13, 2021 8 minutes ago, TheGoldenDonut_ said: Is there a console command or mod that lets you make mobs and yourself larger or smaller? Yes. ThePlayer.Transform:SetScale(1, 1, 1) --1 is the normal size, change the first 1 to 1.5 and itll increase your width by 50%, and etc (third one doesn't do anything since mobs and characters are 2d(duh) but it's needed or the command won't work) This affects the player, you could also replace "ThePlayer" with "c_select()" and entities under your mouse will get the size difference applied to them. Or you could do c_spawn("insertthinghere") and the thing you spawn will have the size applied to them instantly. Link to comment https://forums.kleientertainment.com/forums/topic/128904-question/#findComment-1448090 Share on other sites More sharing options...
JaccK1618 Posted April 13, 2021 Author Share Posted April 13, 2021 3 minutes ago, QuartzBeam said: For the player: ThePlayer.Transform:SetScale(x, y, z) For anything else (incl. other players I guess), hover your mouse over the thing and do: c_select().Transform:SetScale(x, y, z) In both cases, x, y and z are how much you want to "stretch" (values above 1) or "squeeze" (values below 1) the thing along that axis. If you want to just make something bigger or smaller while keeping the proportions, you need to put the same number in all 3. Thanks they don't have these on the wiki. Link to comment https://forums.kleientertainment.com/forums/topic/128904-question/#findComment-1448091 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.