Search results for query: *

  1. ProjectET

    Standalone [1.3] tModLoader - A Modding API

    can you show the folder where the class is located? A namespace error is typically when the directory cannot be located. Also when pasting code use the code block by using [-CODE][-/CODE] (without the dashes) as reading it without whitespace formatting makes it difficult.
  2. ProjectET

    Standalone [1.3] tModLoader - A Modding API

    I am pretty sure there is no native way to do it but you can use symbolic links instead. Here is a resource The Complete Guide to Creating Symbolic Links (aka Symlinks) on Windows
  3. ProjectET

    tModLoader Official tModLoader Help Thread

    looks like javid.ddns.net is down and thus is timing out I'm also getting the issue.
  4. ProjectET

    Tool Offline Mod Skeleton Generator

    Have you got python 2.7 installed? If so, make sure the templates folder is also downloaded and is present with the script. Should you have done all that and it still does not work, please describe what happens when attempting to launch the script. Thanks.
  5. ProjectET

    Tool Terraria Tile Generator

    Had a copy of the tool downloaded, uploaded here
  6. ProjectET

    Tool Offline Mod Skeleton Generator

    Code has been revamped and cleaned with improvements.
  7. ProjectET

    Tool Terraria Tile Generator

    use python 3 and install some dependancies using pip. You have to install the PIL module, numpy module and possibly tkinter module. If you are on linux then you need to play around with the Tkinter module. check out this documentation for more information...
  8. ProjectET

    Standalone [1.3] tModLoader - A Modding API

    there are a bit of issues with this code, for example with the item price you put (gold: 1) that is invalid and will produce an error, the correct way to do it is item.value = int; the value must be an integer. For example a value of 10000 should set the value to 1 gold the second problem is...
  9. ProjectET

    Standalone [1.3] tModLoader - A Modding API

    when your in the mod browser you will see a bar at the top right of the menu just type in a name of a mod and it will search for it. you dont need to pay for winrar at all even if the trial ends, you still have access to it or you can just download 7zip.
  10. ProjectET

    Standalone [1.3] tModLoader - A Modding API

    verify your game cache then install the new version.
  11. ProjectET

    Standalone [1.3] tModLoader - A Modding API

    what error?
  12. ProjectET

    Standalone [1.3] tModLoader - A Modding API

    take a look at the example mod on github
  13. ProjectET

    Standalone [1.3] tModLoader - A Modding API

    Well i dont see a reason for anyone to be implementing harmony in their mods unless they are doing something with the games runtime so i highly doubt people would run into the issue.
  14. ProjectET

    Standalone [1.3] tModLoader - A Modding API

    you could use a patcher such as NTCore's 4gb patcher. Just direct it to your tmodloader exe file
  15. ProjectET

    Standalone [1.3] tModLoader - A Modding API

    should be fine to upload as long as it doesnt interfere with other mods and doesn't damage the client in anyway such as malicious code intent on damaging or destroying peoples worlds or what not.
  16. ProjectET

    Standalone [1.3] tModLoader - A Modding API

    The Tmodloader team doesnt bother with updating with small updates such as 1.3.5.3 so the installer downgrades terraria to 1.3.5.2
  17. ProjectET

    Standalone [1.3] tModLoader - A Modding API

    oh reduce the usetime
  18. ProjectET

    Standalone [1.3] tModLoader - A Modding API

    So what is the issue exactly? Is it the audio? or is it not making a sound when hitting the blocks?
  19. ProjectET

    Standalone [1.3] tModLoader - A Modding API

    that means that Tooltip2 doesnt exist try this Tooltip.SetDefault("'This Hood Is So Sticky'" + " \n'increased melee speed'");
  20. ProjectET

    Standalone [1.3] tModLoader - A Modding API

    try adding 'player.' before 'thrownVelocity' and 'meleeSpeed'.
Back
Top Bottom