3D OWOT script: Difference between revisions

From Our World of Text Wiki
Jump to navigation Jump to search
Dat Hack3r (talk | contribs)
m Dat Hack3r moved page 3D OWoT script to 3D OWOT script: Used correct abbreviation, OWOT. (Per the Guide.)
Dat Hack3r (talk | contribs)
m Removed unnecessary syntaxhighlight.
Line 1: Line 1:
<syntaxhighlight lang="js">
menu.addEntry("<input id='3d' type='range' min='-10' max='10'></input>");
menu.addEntry("<input id='3d' type='range' min='-10' max='10'></input>");
document.getElementById("3d").style.width = "100%";
document.getElementById("3d").style.width = "100%";
document.getElementById("3d").onchange = function(){
document.getElementById("3d").onchange = function() {
    w.chat.send("/warp " + (!+document.getElementById("3d").value ? "" : "dimension3dz" + document.getElementById("3d").value));
    w.chat.send("/warp " + (!+document.getElementById("3d").value ? "" : "dimension3dz" + document.getElementById("3d").value));
};</syntaxhighlight>
}
[[Category:Scripts]]
 
 
/* [[Category:Scripts]] */

Revision as of 10:29, 10 December 2024

menu.addEntry("<input id='3d' type='range' min='-10' max='10'></input>"); document.getElementById("3d").style.width = "100%"; document.getElementById("3d").onchange = function() {

   w.chat.send("/warp " + (!+document.getElementById("3d").value ? "" : "dimension3dz" + document.getElementById("3d").value));

}


/* */