I am trying to make a script that draws a circle for minecraft using singleplayer commands. For starting, I tried to do the basics; here is my code:

importPackage(Packages.com.sk89q.worldedit.blocks);
importPackage(Packages.com.sk89q.worldedit);

var sess = context.remember();
var playerBlock = player.getBlockOn();
var other = playerBlock.setY(playerBlock.getY + 1);
sess.setBlock(other, new BaseBlock(BlockID.CLOTH, argv[1]));

But when I run it, it says:

Failed to execute: The choice of Java constructor setY matching JavaScript argument types (string) is ambiguous; candidate constructors are: class com.sk89q.worldedit.Vector setY(int) (C:\Users\Darcy\AppData\Roaming.minecraft\craftscripts\circle.js#6) in C:\Users\Darcy\AppData\Roaming.minecraft\craftscripts\circle.js at line nuber 6

Any suggestions?

link|improve this question

80% accept rate
Why is this tagged "javascript"? – WTP'-- Sep 21 '11 at 21:31
@WTP, because this Minecraft mode is, obviously, scriptable via Rhino which is shipped by default with Java. – katspaugh Sep 22 '11 at 20:58
feedback

1 Answer

up vote 3 down vote accepted

It seems playerBlock.getY is a function, the result of which you should pass. Now you pass the function itself (which gets converted to it's source code, i.e. a string).

var other = playerBlock.setY(playerBlock.getY() + 1);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.