Guest User

Mappet respawn script

a guest
Mar 25th, 2022
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function main(c)
  2. {
  3.     var s = c.getSubject();
  4.     var pos = s.getPosition();
  5.     var tag = s.getFullData();
  6.    
  7.     c.scheduleScript(20, function (c)
  8.     {
  9.         var e = c.getWorld().spawnEntity("mappet:npc", pos.x, pos.y + 2, pos.z, tag);
  10.        
  11.         e.setHp(e.getMaxHp());
  12.         e.setMotion(0, 0, 0);
  13.     });
  14. }
Advertisement
Add Comment
Please, Sign In to add comment