Jump to content

Corrodias

Premium Member
  • Posts

    5
  • Joined

  • Last visited

Nexus Mods Profile

About Corrodias

Profile Fields

  • Country
    United States

Corrodias's Achievements

Newbie

Newbie (1/14)

  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. In response to post #60434912. #60435157, #60439167, #60487932, #60495767, #60568452, #60581147, #63075281 are all replies on the same post. Neither do individuals like any of you get to decide what, for other people, may be "required", but also having the option to give someone money doesn't somehow make it a requirement.
  2. I see this is an old topic, but as it's as relevant as ever - and I just went through a similar experience - I thought I'd share my method. We can use a little JavaScript with jQuery to take care of this quickly. Open your browser's dev console (F12 usually) and enter this command to abstain from the first 10 items on the page that have NOT been abstained from: $('a[title=Abstain]:not([onclick=""])').slice(0, 10).click()It only does 10 at a time because I'm considerate enough not to send 100 requests at a time to the server. Explanation: a: the clickable link elements title=Abstain: of those, only the Abstain links :not([onclick=""]): once you have abstained, the site removes the onclick attribute, so this excludes any that have already thusly been clicked slice: takes the first 10 click: calls the click function, the same as a mouse click would do
  3. Check the arctool documentation. One of the switches you can add will turn on XML export/import of that type of element. Once you've gotten it, you won't need to get the XML file from another mod, and using the same switch, it will pack your XML file back into the archive properly.
  4. There are two that I know of, at this point: the authors of "dinput8.dll hooks" and "Agnostic Dragon". However, I don't think the former wants to work on UI stuff, and the latter is presently focused on trying to fix extra-wide aspect ratios.
×
×
  • Create New...