Giter VIP home page Giter VIP logo

Comments (2)

aurelius88 avatar aurelius88 commented on August 12, 2024

Yeah, I had the same issue, but fixed it for myself. The problem is in function "nostrum". It is checking for a slot, but with elite/club there is no slot of the elite/club bar, because there is no bar. So this is always false and nostrum is never used. Replacing slot with (slot || !ELITE) fixes it. Now, it only checks for slot if it's also elite.

Old function which does not work for non-elite/non-club member:

	function nostrum() {
		clearTimeout(timeoutNostrum)
		if(game.isIngame && game.me.alive && !game.isInLoadingScreen && !game.me.mounted && !game.contract.active && !game.me.inBattleground && slot && !iAmInvincible)
			timeoutNostrum = setTimeout(useNostrum, nextUse - Date.now())
	}

New function including fix:

	function nostrum() {
		clearTimeout(timeoutNostrum)
		if(game.isIngame && game.me.alive && !game.isInLoadingScreen && !game.me.mounted && !game.contract.active && !game.me.inBattleground && (slot || !ELITE) && !iAmInvincible)
			timeoutNostrum = setTimeout(useNostrum, nextUse - Date.now())
	}

Either replace the complete function with the new one here or replace slot with (slot || !ELITE) inside this function. And make sure to disable auto update by renaming/deleting module.json (I prefer adding an ending like ".bkup" => e.g. module.json.bkup) when using Caali's Tera Proxy until the fix is included here.

from essentials.

TeraProxy avatar TeraProxy commented on August 12, 2024

thx aurelius88. you can probably tell I'm still using elite status, haha.
The fix is live now.

from essentials.

Related Issues (14)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.