This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
How do I set use a mod so like here
var radius = 1
function procCmd(cmd) {
If(cmd=="(any number)") {
var radius = (number that eas typed in command)
So any number they type will change the var
Then the
var radius = 1;
function procCMD(command){
var cmd = command.split(" ");
if(cmd[0]>0){
radius = cmd[0];
}
Thanks
How do I set use a mod so like here
var radius = 1
function procCmd(cmd) {
If(cmd=="(any number)") {
var radius = (number that eas typed in command)
So any number they type will change the var
Then the
-
View User Profile
-
View Posts
-
Send Message
Curse Premiumvar radius = 1;
function procCMD(command){
var cmd = command.split(" ");
if(cmd[0]>0){
radius = cmd[0];
}
}
Thanks