ForeverFun
About
- Username
- ForeverFun
- Joined
- Visits
- 1,072
- Last Active
- Roles
- Member, Active UO Account
- Posts
- 1,031
Comments
-
TimSt said: Unfortunately there is no DaviesLocker.lua file for EC mod-ers such as myself to modify to add a search or filter capacity. Personally I would love to increase the size of the font used and filter on facet and level. Haven't r…
-
When in felucca, it comes down to this, I think: "objectType 130 (wall) and energy field (~14662).... client code .. stripping the impassable flag..." (client side issue). Oddly, in trammel, you can rubber band yourself with wall of stone and ener…
-
Assuming you copy the character file over,after a shard transfer, you'll need to refresh macros that involve equipping items, or using specific items. That's because the items from the old shard get copied to new items on the new shard, with new id…
-
Moderator, feel free to exercise your powers here.From a user POV, it doesn't matter which corporate entity manages the certificate.
-
The carpet is there in CC too. Was able to catch one of the first frames entering the room, in CC. The broader issue is CC renders certain areas much faster than EC. There are public houses in luna, where runebook libraries are hosted. Those immed…
-
Sorry, the last paste above didn't include the spellweaving update (use mobileData, instead of data). MobileHealthBar.UpdateStatus(mobileId) LabelSetText(windowName .. "HealthBarPerc", perc .. L"%") if (Interface.HealthBarWod and (mobileDa…
-
Yoshi said: “The book isn’t needed on EC as you have the menu, the book is instructions for CC as there is no portal menu in CC” The info in the book is useful, and applicable for EC users too. I have the display of the book tied to the …
-
Thanks to Yoshi, I tested a strap. This is all on EC. First, the slot/location tracking behavior associated with the strap appears consisent with what I posted here, Second, none of the books I tested go back into the strap. That includes various …
-
For the numerically challenged? -- before RuneClicked, support case sensitive unicode / non-unicode local name = nil if(type (runeNumber) == "string") then name = towstring(runeNumber) elseif(type (runeNumber) == "ws…
-
Grimbeard said: Despite it being well documented by multiple people there are posters who will discredit and sidetrack threads Has happened with issues that are imho very serious (pet deletion...). Grimbeard said: Yoshi said: …
-
Ideally the Z distance checks for all the various portals should be removed (for both use and command uttering). More detail regarding the Z position distance check: The Ankh of devotion does a Z distance check on double click/use, and won't show t…
-
Another generic problem that is not likely to be EC or CC specific: The UO server distance check for the portal appears to take into account Z distance. Some public houses have a portal on the edge of floor level of the house, at Z+5 from the groun…
-
Yoshi said: “dungeon option when there is no other option? Here's a tweak that pre-selects dungeon or a valid option based on the portal type. At this time, not planning on doing anything more extensive (see the first line comment below). …
-
Yoshi said: “On your corrupted portal. Why you got dungeon option when there is no other option? could I suggest you copy the shrine portal menu? That’s really nice one” Try saying "britain mint" at a corrupted crystal portal, when there…
-
Indeed, the left edge of the dialog box is centered in the middle of the player tile.loop, if you want the middle of the dialog box to center over the middle of the player, then you can modify the EC UI lua code. If somebody from broadsword is activ…
-
Lord_Frodo said: Grimbeard said: Pawain said: You have been saying the bookstrap is broken for how many years now? But, it works as intended. No it doesn't. do bandages fall out of if the belt when used? Do arrows fall ou…
-
At least in EC, the UO server keeps track of the backpack slot ID number where the item started in, That is true for spellbook, weapons, and armor. It appears the UO server keeps track of just the starting slotID, not the containerID. If you p…
-
When Alice tries to honor, the server could check if the current honor source player is active on the subserver. if not, Alice gets honor. Leaving battle so thoroughly could be considered dishorable...
-
Why don't you try some of the changes and report if they work for what you have in mind? If you want to drop all non (actual) spell casting overhead text, from all players (except yourself) by default, without using an ignore list, this should work …
-
Yoshi said: “How do you track more than 1 target? when you use the skill again doesn’t it cancel the initial track?” True, it's an optical illusion of sorts - once a new target is picked, you only get updates for the new target. So the m…
-
The additional code block below, expands the checks for "bogus" spell casting text as mentioned in the (*) caveat in this thread. It's best to also have the changes mentioned in that thread, too. This will toss bogus spellcasting text, regardless o…
-
Does Alice get an honor buff bar entry (in EC)? If not, then the latter is probably the intended behavior, and Alice should get the "Somebody else is honoring this opponent" (1063233). I think the range checking is relevant when hits are landed (th…
-
In EC, if you have "Ignore Players" checked, it's a broad based filter. Probably for most cases, you can do finer grained filtering yourself, as below. Manage the Ignore Players list as usual, but uncheck User Settings->Filters->"Ignore playe…
-
Sadly, it does not appear the gump data for vendor search includes the unique objectIDs of the items returned in the search results. If it did, it would be relatively straightforward to add a "buy item" direct, which would prevent having to hunt for…
-
It would be good if the vendor map had a new right click option - to buy the item associated with the map. Having to hunt for the item after the container opens is a time waster, and is error prone too.
-
Pawain said: I really do not need to play UO with 100 icons on the buff bar. Why don't you provide some Icon pictures and teach those with EC how to make these timers that YOU need? You obviously don't use EC. The EC (in many cases) …
-
Grimbeard said: Pawain said: Only the spawn part is complete. And are you content to just plant thorns for the next month Maybe somebody at Broadsword/EA has figured out that less grindy events = lower amazon web services hosti…
-
you can edit GumpsParsing.lua GumpsParsing.ShowHide for gumpID, value in pairs(GumpData.Gumps) do if (gumpID == 999139) then -- avoid displaying animal training gump. continue end
-
@Yoshi, if I were you, I'd stop using CC given the crashes you are seeing. One is a stack overflow. Hopefully, those aren't actual exploits (e.g. a case where one of the other players can cause your client to execute code...). I'd wait until the c…
-
TimSt said: I added the following code to add a debuff icon in case there are no hotbar timed icons WindowData.BuffDebuffSystem.CurrentBuffId = 1117 --skill use delay WindowData.BuffDebuff.NameVectorSize = 0 WindowDat…