Recent content by TornadoTitan

  1. TornadoTitan

    Increasing Corpse Loot Range

    Wonderful idea! So heres the update. I got a wooden box from the provision to test with. On both EC and CC I am able to place and take items from the desired distance. So the problems are only with corpses/mobiles it seems. The problem with them being only slightly different on the different...
  2. TornadoTitan

    Increasing Corpse Loot Range

    Okay, Classic is a bit different, I can take out items from the corpse container, I can drop items and pick them up from the ground, I CANNOT put an item in a container from the desired distance. Interesting. Does seem to be an EC issue. Aside from placing item back in.
  3. TornadoTitan

    Increasing Corpse Loot Range

    My apologies, yes it is EC, I can try with classic and see if the same is happening. Yes, single item just stay, but that came through poorly on video.
  4. TornadoTitan

    Increasing Corpse Loot Range

    Same result, here turn down volume, i forgot to mute it, (http://sendvid.com/pod0xfip) is a short vid on what I am getting. I am using the Compile.WIN.bat to recompile. Just so you know I'm not being a dingus lol.
  5. TornadoTitan

    Increasing Corpse Loot Range

    Only about 4-5 "spaces" away, I do have LOS, and I can drop things about 4-5 "spaces" away from me. I cannot lift anything that far away (even with the mobile.cs edits) and I cannot lift from a container. It's not lifting at all, staying right where it is.
  6. TornadoTitan

    Increasing Corpse Loot Range

    That is correct. all having to do with the InRange function
  7. TornadoTitan

    Increasing Corpse Loot Range

    Dang, I really thought that'd be it, I change it there and below in mobile.cs still cannot lift from the corpse container. public virtual bool OnDragDrop(Mobile from, Item dropped) { if (from == this) { Container pack = Backpack...
  8. TornadoTitan

    Increasing Corpse Loot Range

    Okay, with those edits, there were a few in item.cs under server, I can now drop things the distance I want but I cannot interact with containers from that distance and I still cannot pick up anything from the distance I'm looking for. Forgive my ignorance if there is more under server I need to...
  9. TornadoTitan

    Increasing Corpse Loot Range

    Will do, thank you very much. I will edit those and test!
  10. TornadoTitan

    Increasing Corpse Loot Range

    Below are the two places of edited in container.cs public override void OnDoubleClick(Mobile from) { if (from.IsStaff() || from.InRange(GetWorldLocation(), 5)) { DisplayTo(from); } else {...
  11. TornadoTitan

    Increasing Corpse Loot Range

    Hello, I am attempting to increase the range at which corpses can be looted by the player so one does not have to stand almost directly on top of a corpse to interact with it. So far I have made it to where I can open the corpse's container at greater range. However, when attempting to pick up...
Back