Jump to content

Recommended Posts

Posted

Hey, I'm pretty new to the Custom NPC Mod and I'd like to add a script to my npc that will pull a value from a scoreboard objective in the init hook to determine whether or not to actually spawn/respawn.  I'm not exactly sure how to do this even after several hours of Googling lol.  Here's what I have so far:

 

var respawnScore = 0;

function init(event){
   //set respawnScore equal to value pulled from scoreboard
   event.npc.say("I have been initialized. Score: " + respawnScore);
}

 

Obviously it's missing the main component there of pulling in the value from the scoreboard haha.  Any help would be appreciated!  Thanks!

  • 1 month later...
Posted

Thanks Noppes!  Sorry for the delayed response, thought it was going to email me when I got a response lol.  Really appreciate the help!  Here's the final script that seems to work to respawn the npc when the scoreboard value changes.  The whole resetScore thing is to ensure all the npcs with this script are reset before the scoreboard value is reset.  There's probably a cleaner way of doing it, but I'm just happy it's working now haha.

 

var score = 0;
var resetScore = 0;

function tick(event){
if(event.npc.world.getAllPlayers().length > 0){
	score = event.npc.world.getScoreboard().getPlayerScore(event.npc.world.getAllPlayers()[0].getName(),'bonfire','');
	if(score == 0){
		resetScore = 0;
	}
	if(score == 1){
		if(resetScore > 2){
			var players = event.npc.world.getAllPlayers();
			for(i=0;i<players.length;i++){
				event.npc.world.getScoreboard().setPlayerScore(players[i].getName(),'bonfire',0,'');
			}
			resetScore = 0;
			return;
		}
		if(resetScore < 1){
			event.npc.getStats().setRespawnTime(1);
			event.npc.reset();
		}
		resetScore += 1;
	}
}
}

function init(event){
event.npc.getStats().setRespawnTime(9999999);
}

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.