Author Topic: im confused about the scale chargers...  (Read 644 times)

Now i seen other servers that got some other scale chargers that you can say for example /resizeme .1 .1 .1 without hiting on a brick, and with aloshi's scale charger,you have to hit on a bick and say the number command.So umm what other scale charger is that?

I think it's in 'fooley's commands'. Although it's rather easy to make yourself and would only take a couple of seconds.

Code: [Select]
function servercmdresizeme(%client,%x,%y,%z) {
   %client.player.setScale(%x %y %z);
}

I don't recommend you use this straight off, as it probably doesn't work as i can't be bothered to look up how the setScale command works, and also has no limit so people could crash your server easily. But you see the point.

umm how am i going to install thoes commands? i kinda don't know scrpting

Code: [Select]
function servercmdresizeme(%client,%x,%y,%z) {
  if((%client.isAdmin || %client.isSuperAdmin) && isObject(%client.player))
   %client.player.setScale(%x SPC %y SPC %z);
}

Fixed.

In the Add-Ons folder of Blockland, right click --> New --> Text Document. Name it "Support_ScaleChange.cs". (Replace the .txt part too) Click "yes" if it says that it "might be unusable if you change it". Open the file, use Open With and Notepad. Copy the above code into the file and push File-->Save. Open Blockland and enable Support_ScaleChange in the Add-Ons menu.