Jump to content

Recommended Posts

Posted

It mostly on 24/7. It restart every day and every 3 hours if ram is too high. Other than that its good just a little short on players like a big server

 

It will (hopefully) be big after ICBM multiplayer comes out. Then it will be total war. Install a backup plugin :)

That is why spawn is emun to explosions. Made sure to build it strong to house the luanch point of my npc armies

Posted

I decided to help you with your server site. I created a new sub-site within the Calclavia domain: http://calclavia.com/industrywar/

 

It's not finished yet, and it currently (temporarily) has the same visual theme as ICBM. But I will change it soon. What color schems you want the webpage to be? Also, you will be able to edit it. Register an account in the Calclavia website and I will give you permission to edit it (tomorrow). It is like a wikipedia page that is editable. Programmed that system myself and still proud of it :)

 

Also, we should come up a better name for your server. "Dark Industrial War" is too general and doesn't sound good enough.

Posted

I decided to help you with your server site. I created a new sub-site within the Calclavia domain: http://calclavia.com/industrywar/

 

It's not finished yet, and it currently (temporarily) has the same visual theme as ICBM. But I will change it soon. What color schems you want the webpage to be? Also, you will be able to edit it. Register an account in the Calclavia website and I will give you permission to edit it (tomorrow). It is like a wikipedia page that is editable. Programmed that system myself and still proud of it :)

 

Also, we should come up a better name for your server. "Dark Industrial War" is too general and doesn't sound good enough.

Hmm not really sure on color theme but thank you for taking the time too do this. My Html skills die with my other skills after high school, which is sad because i use to make some impressive stuff. So i'll leave that too you since so far you can out code me :). Other than that the server doesn't really have a real theme anymore so i'm open to changing it around. Even the name is open to suggestions since i only went with it because DarkGuardsman's server is not a valid name. I want to still keep the ideal of war, but also hold the impressions that people can build master peaces of art on the server.

Posted

I am still pretty decent with HTML, CSS and PHP. So web programming is still my strong point (although after doing so much Java, you feel that PHP's syntax is HORRIBLE and too un-strict).

 

Can you register an acocunt via http://calclavia.com/register.php ? Tell me your username and I will grant you permission to edit and create pages in your sub-site.

 

I did some changes and moved the site address to http://calclavia.com/industrialwar/. I edited the page and moved most of the things about your server from the Google Sites onto the webpage.

Posted

Also, I suggest you to use some type of Minecraft mod installer instead of including all the mods in your mod package (since this might not be legal). Simply have an installer that downloads all the mods from their directory and install it. This way the player doesn't need to download the ENTIRE package and it is also a lot more legal :) and saves the trouble of having to ask every modder for permission.

 

One more thing. You should uninstall computer craft since RedPower has computers now and having duplicating computer systems makes things a lot messier. On the website I listed out SOME of the mods you have on the server but I am not really sure what mods you have. After you register an account you can edit and change that information. Also, provide links to each mod so people can easily download them if they wish to install the mods manually.

Posted

Also, I suggest you to use some type of Minecraft mod installer instead of including all the mods in your mod package (since this might not be legal). Simply have an installer that downloads all the mods from their directory and install it. This way the player doesn't need to download the ENTIRE package and it is also a lot more legal :) and saves the trouble of having to ask every modder for permission.

 

One more thing. You should uninstall computer craft since RedPower has computers now and having duplicating computer systems makes things a lot messier. On the website I listed out SOME of the mods you have on the server but I am not really sure what mods you have. After you register an account you can edit and change that information. Also, provide links to each mod so people can easily download them if they wish to install the mods manually.

Ty again, but i'll keep computer craft for the moment. They are a ton easier and funner to use. Redpower's computer are more complex and take up too much space tbh. Also your list of mods post is a bit short. The list is

Industrial Craft 2

Buildcraft

Redpower

Computer craft

forestry

Ic-Bc cross Over

Additional pipes or teleport pipes as i know them by

more pistons

smart moving

player api

forge and modloader

IC Nuclear control

comeCloser

RailCraft

DarkIndustry mod(something i made to add item to the server though its not installed client side yet)

Oh and my user name is darkguardsman though i keep it simple by leaving it the same.

Also i'm working on an packaging an AutoUpdater/installer i use to use for the server. With a few tweaks it might work again

  • 3 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I want to create block with entity, that will have height of 3 or more(configurable) and I tried to change first VoxelShape by increasing collision box on height I want and for changing block height on visual side i tried to configure BlockModelBuilder:  base.element() .from(0, 0, 0) .to(16f, 48f, 16f) .face(Direction.UP).texture("#top").end() .face(Direction.DOWN).texture("#bottom").end() .face(Direction.NORTH).texture("#side").end() .face(Direction.SOUTH).texture("#side").end() .face(Direction.WEST).texture("#side").end() .face(Direction.EAST).texture("#side").end() .end(); but, getting crash with next error: Position y out of range, must be within [-16, 32]. Found: %d [48.0]; Looks like game wont to block height modified by more than 32. Is there any way to fix that problem?
    • As long as the packets you are sending aren't lost, there's nothing wrong with what you're currently doing. Although, this sounds like something that would benefit from you making your own datapack registry instead of trying to arbitrarily sync static maps. Check out `DataPackRegistryEvent.NewRegistry`.
    • Hey all, I've been working a lot with datapacks lately, and I'm wondering what the most efficient way to get said data from server to client is.  I'm currently using packets, but given that a lot of the data I'm storing involves maps along the lines of Map<ResourceLocation, CustomDataType>, it can easily start to get messy if I need to transmit a lot of that data all at once. Recently I started looking into the ReloadableServerResources class, which is where Minecraft stores its built-ins.  I see you can access it via the server from the server's resources.managers, and it seems like this can be done even from the client to appropriately retrieve data from the server, unless I'm misunderstanding.  However, from what I can tell, this only works via built-in methods such as getRecipeManager() or getLootTables(), etc.  These are all SimpleJsonResourceReloadListeners, just like my datapack entries are, so it seems like it could be possible for me to access my datapack entries similarly?  But I don't see anywhere in ReloadableServerResources that stores loaded modded entries, so either I'm looking in the wrong place or it doesn't seem to be a thing. Are packets really the best way of doing this, or am I missing a method that would let me use ReloadableServerResources or something similar?
    • Hi, everyone! I'm new to minecraft modding stuff and want ask you some questions. 1. I checked forge references and saw there com.mojang and net.minecraft (not net.minecraftforge) and as I understand it's original game packages with all minecraft logic inside including renderers and so on, right? 2. Does it mean that forge has a limited set of instruments which doesn't cover all the aspects of the game? If make my question more specific then does forge provide such instruments that allow me totally change minecraft itself, like base mechanics and etc.? Or I have to use "original game packages" to implement such things? 3. I actively learning basic concepts with forge documentation and tutorials. So in my plans make different inventory system like in diabloids. Is that possible with forge? 4. It is last question related to the second one. So how deeply I can change minecraft with forge? I guess all my questions above because of that I haven't globally understanding what forge is and how it works inside and how it works with minecraft. It would be great if you provide some links or topics about it or explain it by yourself but I guess it's to big to be explained in that post at once. Anyway, thank you all for any help!
    • Im trying add to block a hole in center, just a usual block and in center of it on up side, there is should be a hole. I tried to add it via BlockModelBuilder, but its not working. Problem is that it only can change block size outside. I tried it to do with VoxelShape and its working, but its has been on server side and looks like its just changed collision shape, but for client, there is a texture covering this hole. I tried to use: base.renderType("cutout"); and removed some pixels from texture. I thought its should work, but game optimization makes block inside looks transparent. So, only custom model?
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.