This is for you if you are sick of typing "update level" every time you need the level updated. Simply press 1 and it will update the level for you. Add this as a WNPC and add it to yourself!
Quote:
//Scripted by McChucken
//#CLIENTSIDE
function onKeyPressed(num1, code, num2)
{
if (code == "1") {
player.chat = "update level";
}
sleep 0.1;
player.chat = "";
}
|