HERO
Terrarian
Yes, tmodserver only works with tmod client.I'm hosting a server, but my friend doesn't have the mod, does he still need to download it?
Yes, tmodserver only works with tmod client.I'm hosting a server, but my friend doesn't have the mod, does he still need to download it?
Ive installed this mod just like the video says but I seem to only have 11 out of the 15 tools on the bar at the bottom (the first 10 and misc) and the misc only disables the option to hide the bar, I have to bring up the time setting sub-bar to make it visable again. I'm not sure what's going on and I know I havn't installed it wrong, I have the latest version, i've restarted the game, etc. Any help please?
Side note: The creative menu thing doesn't work correctly when autopause is on, it opens for about half a second then closes.
Sie note 2: Atleast everything else works like it should
Hero, do you know what the item slot in the NPC spawner is for?The rest are probably multiplayer tools.
The rest are probably multiplayer tools.
But I should atleast have the 'reveal map' option/icon/thing, that is something that shouldn't be restricted to multiplayer.
Hero, do you know what the item slot in the NPC spawner is for?
Your mod is the only mod installed and I litterally downloaded and installed tmodloader 20 minuites before I posted. It occered to me that I might of sounded a little rude, i'm sorry, I am sooooo tired XD
I've noticed a bug where if you try to pause the time, the HUD will glitch out.
Since you were the first to register, you should have become Admin, but if something happened, you can modify the "C:\Users\??\Documents\My Games\Terraria\ModLoader\HEROsModDatabase.json" file manually to set your player's group to -1. You can also just use the chat command "admin ######" to become admin. The special code (the ######) is displayed in the server console. (So for this approach, you'd have to run the server not from the host and play menu.)On my private server, when I login, I get set to default player, so I have no way to switch myself to admin
This is a planned feature.Hey is there a way you can make it so you can take stuff out of the players inventory if you are looking in it? Thank you.
It should be there, are you sure it's not in the submenu? It should look like this in single player.But I should atleast have the 'reveal map' option/icon/thing, that is something that shouldn't be restricted to multiplayer.
We purposefully left out most debufss(except wet), and all the buffs that are impossible to be given correctly without the corresponding item (pets and minions)I can't give myself certain buffs and debuffs, like Mana Sickness.
public override void PostSetupContent()
{
Mod herosMod = ModLoader.GetMod("HEROsMod");
// Prefer Heros Mod
if (herosMod != null)
{
herosMod.Call(
// Special string
"AddPermission",
// Permission Name
"ModifyPersonalRespawnTime",
// Permission Display Name
"Modify Personal Respawn Time"
);
// Add Buttons only to non-servers (otherwise the server will crash, since textures aren't loaded on servers)
if (!Main.dedServ)
{
herosMod.Call(
// Special string
"AddSimpleButton",
// Name of Permission governing the availability of the button/tool
"ModifyPersonalRespawnTime",
// Texture of the button. 38x38 is recommended for HERO's Mod. Also, a white outline on the icon similar to the other icons will look good.
GetTexture("InstantRespawnButton"),
// A method that will be called when the button is clicked
(Action)InstantRespawnButtonPressed,
// A method that will be called when the player's permissions have changed
(Action<bool>)PermissionChanged,
// A method that will be called when the button is hovered, returning the Tooltip
(Func<string>)InstantRespawnTooltip
);
}
}
}
// This method is called when the cursor is hovering over the button in Heros mod or Cheat Sheet
public string InstantRespawnTooltip()
{
return instantRespawn ? "Disable Instant Respawn" : "Enable Instant Respawn";
}
// This method is called when the button is pressed using Heros mod or Cheat Sheet
public void InstantRespawnButtonPressed()
{
instantRespawn = !instantRespawn;
}
// This method is called when Permissions change while using HERO's Mod.
// We need to make sure to disable instantRespawn when we are no longer allowed to use the tool.
public void PermissionChanged(bool hasPermission)
{
if (!hasPermission)
{
instantRespawn = false;
}
}
It should be there, are you sure it's not in the submenu? It should look like this in single player.
Did you use the direct download or the mod browser?
Open up any world, it is on the bottom of the screen, it is on at all times.When I load up terraria I can't find creative mode on the home screen. Is that where I should find it or is there somewhere else?