Jump to content

TheSmokie

Elite user
  • Content Count

    1173
  • Joined

About TheSmokie

  • Rank
    Elite User
  • Birthday February 23

Profile Information

  • Gender
    Male
  • Location
    Thunderbluff

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. He’s using a cracked copy.
  2. TheSmokie

    Happy New Year 2021

    Happy new year my friend
  3. From me to you. Marry Christmas and have a awesome holidays !
  4. You can make a addon or quester profile with code looking like this (Untested.) while(Conditions.InGameAndConnectedAndAlive) { List<string> ProsSpectList() { return new List<string> { "Item 1", "item 2", //etc }; } if (!ObjectManager.Me.IsCast) { foreach (string prop in ProsSpectList()) { string spellName = ""; if(ItemsManager.GetItemCo
  5. That isn’t custom script, that’s fullcsharp
  6. Custom script is a area where you can have code stored then able to call it via run code or have code ran on another thread. Custom script is so powerful. If you want, dm me and a few hours and I’ll help you.
  7. Hello, is there a way to make a plugin load before hitting start on a product? and have it keep running while product has stopped?
  8. My bad, forgot to provide the right offsets, 0xB6AA40
  9. Try this, var accountName = wManager.Wow.Memory.WowMemory.Memory.ReadStringUTF8(0x10D7914); Logging.Write(accountName.ToString());
  10. What patch you using? These offset is for worlk
  11. Hello, no there is no way to import but you can remake them using C#. or use the undetected pqr i released.
  12. Hey @pudge, While i was looking to help you, I've looking into offsets that does what you asking, this works, I tested it on my account and it returned the name. enjoy. Note : i only ran in dev tools. var accountName = wManager.Wow.Memory.WowMemory.Memory.ReadStringUTF8(0x10D7914); if(!string.IsNullOrEmpty(accountName)) { Logging.Write(accountName.ToString()); }
×
×
  • Create New...