Re: Restrict on room names
The censored words can be used for this in the abuses.txt
Eg. 1, Roomname
1, Roomname
etc.
Thats the only way I guess?
Re: Restrict on room names
Re: Restrict on room names
Quote:
Originally Posted by
phoenix_147
The censored words can be used for this in the abuses.txt
Eg. 1, Roomname
1, Roomname
etc.
Thats the only way I guess?
If i wanna restrict people from using gravity to go below [G30], for example the maxiumum i want them to go is [G30], i could do this:
Code:
1,[G29]
1,[G28]
1,[G27]
1,[G26]
1,[G25].. AND MORE
but that will make my loading time very long, is there a way it can just countdown.
i know that doing " 1,[G2 " would solve it, but what if they wanna do [G200] or something like that? :o
Re: Restrict on room names
Quote:
Originally Posted by
lxchadxl
If i wanna restrict people from using gravity to go below [G30], for example the maxiumum i want them to go is [G30], i could do this:
Code:
1,[G29]
1,[G28]
1,[G27]
1,[G26]
1,[G25].. AND MORE
but that will make my loading time very long, is there a way it can just countdown.
i know that doing " 1,[G2 " would solve it, but what if they wanna do [G200] or something like that? :o
Dude the gravity DLL's SOURCE WAS RELEASED. Just change it. I don't have the code in front of me but it should be something like
if(G[xx] < 30 || G[xx] > 100)
{
sleep ? i dunno, maybe hook into zhatstring and say the message "too low"
}
else
{
return;
}
Re: Restrict on room names
Quote:
Originally Posted by
lxchadxl
If i wanna restrict people from using gravity to go below [G30], for example the maxiumum i want them to go is [G30], i could do this:
Code:
1,[G29]
1,[G28]
1,[G27]
1,[G26]
1,[G25].. AND MORE
but that will make my loading time very long, is there a way it can just countdown.
i know that doing " 1,[G2 " would solve it, but what if they wanna do [G200] or something like that? :o
That makes no sense.
You can block anything below 30 when you edit the source.