Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Kyuande

Pages: 1 ... 183 184 185 186 187 [188] 189 190 191 192 193 ... 401
2806
Modification Help / Re: Big number library?
« on: August 22, 2016, 10:46:04 PM »
How's progress going?

2807
Drama / Amanda Todd (ID 16255) - DDoS attempts
« on: August 22, 2016, 10:38:57 PM »
This person has been trying to crash SphericalCube's server, and a few others.

Proof of spam (click the console image for the download) (Console log from SphericalCube):




Proof of them being banned (for name and BLID)




In-Game Name (last seen): Amanda Todd
BL_ID: 16255
Their IP: 168.1.75.11 (Australia)

Can anyone try to see who they are? The ID looks familiar but I can't pinpoint it.

2808
Help / Re: Blockland crashes when starting a server
« on: August 22, 2016, 06:10:35 PM »
Remove System_ReturnToBlockland

2809
Modification Help / Re: Finding specific word within variable
« on: August 22, 2016, 05:16:09 PM »
Well, some languages you only have + or whatever it is to combine strings

2810
When you connect to the server too many times in a specific time the server blocks you from connecting to it. You can always PM me about this and I can unblock you.
This is a server mod, not all servers will do this

2811
Oh, that's not your fault.

When you connect to the server too many times in a specific time the server blocks you from connecting to it. You can always PM me about this and I can unblock you.

2812
Help / Re: How to change schedule limit on dedi
« on: August 22, 2016, 04:59:17 PM »
Shut down the server, open config/server/prefs.cs
Find $Pref::Server::Quota::Schedules and edit it with $Pref::Server::Quota::Schedules = "maxNumberHere";

Then start up the server

2813
Help / Re: Can't connect to half of the servers due to "---" ping.
« on: August 22, 2016, 04:54:09 PM »
The --- means the server is probably down.
That's one, but it can also be that the server wasn't forwarded correctly to get a ping, yet you can still connect to it if you get lucky

Most likely with --- servers they are either down or they are not port forwarded correctly, you'll have to contact the owner of that server and tell them they must port forward.

2814
Help / Re: Authentication: Validating key ;-;
« on: August 22, 2016, 04:51:45 PM »
someone get badspot on this lulz
he's not needed right now unless cloudflare blocks you

2815
Modification Help / Re: Finding specific word within variable
« on: August 22, 2016, 04:48:09 PM »
You only need to do SPC/TAB/NL when you really need to

Things like: "Hello my name is" SPC %client.getPlayerName() is unneeded (you can still do this, to me this looks weird), but "Hello my name is " @ %client.getPlayerName() is better practice; unless someone tell me a reason why my first example is better?
Making a list like this: %list SPC %word1 SPC %word2 or %list TAB %word1 TAB %word2 is needed, such as making a vector or a normal list

2816
Drama / Re: MinecraftSkeletonKing21(76998)
« on: August 22, 2016, 04:36:01 PM »
If this was on Kong123's server, he's now banned.

2817
Modification Help / Re: Finding specific word within variable
« on: August 20, 2016, 11:07:34 PM »
for(%i = 0; %i < getWordCount($list); %i++)
{
     %word = getWord($list, %i);
     //Do stuff
}


If you're just checking for stuff on a list or adding/removing something, you could use these if you want:
Code: [Select]
function hasItemOnList(%list, %item)
{
if(getWordCount(%list) <= 0)
return false;

for(%i = 0; %i < getWordCount(%list); %i++)
{
%word = getWord(%list, %i);
if(%word $= %item)
return true;
}

return false;
}

function addItemToList(%list, %item)
{
if(hasItemOnList(%list, %item))
return %list;

%list = trim(%list SPC %item);
return %list;
}

function removeItemFromList(%list, %item)
{
for(%i = 0; %i < getWordCount(%list); %i++)
{
%word = getWord(%list, %i);
if(%word $= %item)
{
%list = removeWord(%list, %i);
return %list;
}
}

return %list;
}

Then you could do:
Code: [Select]
if(hasItemOnList($list, "playerone"))
{
//do stuff
}
Note: If you're checking for a player name this may not work if someone's name has more than 1 word

2818
Help / Re: Addons aren't working!
« on: August 20, 2016, 07:31:13 PM »
Using game mode file 'Add-Ons/GameMode_MotE_Mansion/gamemode.txt'
You're in a gamemode, go on Custom.

2819
Modification Help / Re: Vector Help
« on: August 20, 2016, 07:13:48 PM »
posFromRaycast(%ray)

2820
Suggestions & Requests / Re: First person view on death v2
« on: August 20, 2016, 01:50:44 PM »
I must of removed it because it was causing too many problems then just to make it work with bots.

Pages: 1 ... 183 184 185 186 187 [188] 189 190 191 192 193 ... 401