Poll

Online file storage like Google Drive? (monthly prices)

50GB ($3.00)
41 (11.2%)
100GB ($4.50)
17 (4.7%)
250GB ($7.50)
10 (2.7%)
500GB ($12.50)
7 (1.9%)
750GB ($16)
6 (1.6%)
1TB ($20)
30 (8.2%)
2-8TB (proportional to 1TB price)
0 (0%)
8-16TB (proportional to 1TB price)
43 (11.8%)
Prices too high (READ)
44 (12.1%)
No desire
167 (45.8%)

Total Members Voted: 365

Author Topic: Kaphost Blockland Servers  (Read 657185 times)

Slow your horses.

I'm still moving a ton of stuff.

Old server people, contact me to be added to the new server either by PM or RTB PM (preferred)

STOP starting your servers before I move them.

It's getting annoying deleting what's there then moving files back in.

What's the settings for me to connect through FTP for my server?

Old IP address is obsolete and the old port doesn't work on the new IP address.


I'm dumb. I didn't read the topic fully.
« Last Edit: May 11, 2012, 06:59:37 AM by aludane »

Kalp, I did stop the server are still running. Because, I updated the add-ons ftp upload. something wrong with it won't stop.
EDIT: Never mind, I got it fixed using Remote Client.
« Last Edit: May 11, 2012, 10:11:54 AM by Cubelands »

This is why people should have moved their servers the first chance they got. Because then Kalphiter gets overwhelmed trying to move stuff, yet, People are trying to add files, start server, and Mass Messageing Kalphiter about it.

kalp, did you moved my server or not?
i think he did moved your server, along with all the left over people who haven't moved.

i think he did moved your server, along with all the left over people who haven't moved.
He did moved it last night. I did rtb pm him.

How much for minecraft hosting?

How much for minecraft hosting?
He's hosting specifically Blockland

How much for minecraft hosting?
He's hosting specifically Blockland
i think he's messing

Code: [Select]
%filePath = "config/server/savechecks/" @ %client.BL_ID @ ".txt";
%file=new FileObject();
%file.openForWrite(%filePath);
%file.writeLine(%client.checkpointbrick);
%file.close();
%file.delete();

So this does not have access to write files on the server?
How to fix it

Code: [Select]
%filePath = "config/server/savechecks/" @ %client.BL_ID @ ".txt";
%file=new FileObject();
%file.openForWrite(%filePath);
%file.writeLine(%client.checkpointbrick);
%file.close();
%file.delete();

So this does not have access to write files on the server?
How to fix it
This should work.

Make sure the file-path is right.

infact, what are you wanting to do? are you wanting to make a command for it to save the client's position in the same spot as before?


function ServerCmdSavePosition(%cl) {
%filepath = "config/server/playerpositions/" @ %cl.bl_id @ ".txt";
%CheckpointPosition = %cl.checkpointbrick.getposition();
%file = new fileObject();
%file.OpenForWrite(%filepath);
%file.WriteLine(%checkpointPosition);
%file.close();
%file.delete();
}

function ServerCmdLoadPosition(%cl) {
%filepath = "config/server/playerpositions/" @ %cl.bl_id @ ".txt";
%file = new fileObject();
%file.OpenForRead(%filepath);
%position = %file.ReadLine();
%client.player.setTransform(%position);
%file.close();
%file.delete();
}

^^ that should work from what i scrapped up from my ass, feel free to make it better and do whatever.

I have made SavePosition different because then whenever you crash or something, the .checkpointbrick ID will change, therefore it could spawn you anywhere. therefore i have saved the checkpoint position.

« Last Edit: May 12, 2012, 03:11:28 PM by Wordy »

Code: [Select]
%filePath = "config/server/savechecks/" @ %client.BL_ID @ ".txt";
%file=new FileObject();
%file.openForWrite(%filePath);
%file.writeLine(%client.checkpointbrick);
%file.close();
%file.delete();

So this does not have access to write files on the server?
How to fix it
Try changing config to Config.