Recent content by NikIsSick

  1. NikIsSick

    tModLoader Official tModLoader Help Thread

    Where is the download to tModLoader????
  2. NikIsSick

    tModLoader Official tModLoader Help Thread

    So this is what you're talking about. using Terraria.ID; using Terraria.ModLoader; namespace NikIsSikYoyoMod.Items.Placeable { public class ExamplePrinterSprite : ModItem { public override void SetDefaults() { item.name = "3D Printer"; item.width...
  3. NikIsSick

    tModLoader Official tModLoader Help Thread

    Do you want me to delete item.createTile = too
  4. NikIsSick

    tModLoader Official tModLoader Help Thread

    and this is the ExamplePrinter This is the ExamplePrinterSprite
  5. NikIsSick

    tModLoader Official tModLoader Help Thread

    Whenever I place my block, it does not turn into the actual sprite that i have assigned it to so, yeah. using Terraria.ID; using Terraria.ModLoader; namespace NikIsSikYoyoMod.Items.Placeable { public class ExamplePrinterSprite : ModItem { public override void SetDefaults()...
  6. NikIsSick

    tModLoader Official tModLoader Help Thread

    Errorrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr :p using Terraria; using Terraria.ID; using Terraria.ModLoader; namespace NikIsSikYoyoMod.Projectiles { public class PetName : ModProjectile { public override void SetDefaults() { projectile.CloneDefaults(ProjectileID.ZephyrFish); projectile.name =...
  7. NikIsSick

    tModLoader Official tModLoader Help Thread

    Oh :P using Terraria; using Terraria.ID; using Terraria.ModLoader; namespace NikIsSikYoyoMod.Projectiles { public class PetName : ModProjectile { public override void SetDefaults() { projectile.CloneDefaults(ProjectileID.ZephyrFish)...
  8. NikIsSick

    tModLoader Official tModLoader Help Thread

    c:\Users\nm120\Documents\My Games\Terraria\ModLoader\Mod Sources\NikIsSikYoyoMod\Projectiles\PetName.cs(28,13) : error CS0246: The type or namespace name 'MyPlayer' could not be found (are you missing a using directive or an assembly reference?) c:\Users\nm120\Documents\My...
  9. NikIsSick

    tModLoader Official tModLoader Help Thread

    I have an error: c:\Users\nm120\Documents\My Games\Terraria\ModLoader\Mod Sources\NikIsSikYoyoMod\Pets\DroneBuff.cs(12,46) : error CS1010: Newline in constant using Terraria; using Terraria.ModLoader; namespace NikIsSikYoyoMod.Pets { public class PetDrone : ModBuff { public...
  10. NikIsSick

    Standalone [1.3] tModLoader - A Modding API

    Ok thanks
  11. NikIsSick

    Standalone [1.3] tModLoader - A Modding API

    No i dont know what a build.txt file is and i dont know what to to type in it
  12. NikIsSick

    Standalone [1.3] tModLoader - A Modding API

    Are you talking about this? using Terraria.ModLoader; using Terraria; using Terraria.ID; using Microsoft.Xna.Framework.Graphics; namespace NikIsSickYoyo { class NikIsSickYoyo : Mod { public NikIsSickYoyo() { Properties = new ModProperties() {...
  13. NikIsSick

    Standalone [1.3] tModLoader - A Modding API

    Problem... Again. using Terraria; using System; using Terraria.ID; using Microsoft.Xna.Framework; using Terraria.ModLoader; namespace NikIsSickYoyo { public class YoyoMod : ModItem { public override void...
  14. NikIsSick

    Standalone [1.3] tModLoader - A Modding API

    Sequence contains no matching element at System.Linq.Enumerable.Single[TSource](IEnumerable`1 source, Func`2 predicate) at Terraria.ModLoader.AssemblyManager.InstantiateMods(List`1 modsToLoad) using Terraria; using System; using Terraria.ID; using Microsoft.Xna.Framework; using...
  15. NikIsSick

    Standalone [1.3] tModLoader - A Modding API

    Now its asking me to put a semi colon in a middle of a code line lol c:\Users\nm120\Documents\My Games\Terraria\ModLoader\Mod Sources\NikIsSick Yoyo\YoyoMod.cs(29,22) : error CS1002: ; expected using Terraria; using System; using Terraria.ID; using...
Back
Top Bottom