Minecraft PC IP: play.cubecraft.net
Status
Not open for further replies.

John Clark

Novice Member
Aug 8, 2018
100
32
34
24
lol? The updated was called ''mini'' and I doubt it's a real hard work to do 2 kits and 1 trap block.
If you want to think it's rude it's ok.
it is much harder than you think. you think its easy? why dont you do it!
I'm gonna have to agree with @Cute3e in that one. They need to work harder on smaller games and add bigger stuff to it.
they are always working hard and if anything they deserve rest for working so hard as they give us so many vanity items and battlezone updates etc, so dont say they need to work harder as that is disrespectful
 
D

Deleted member 436996

Guest
it is much harder than you think. you think its easy? why dont you do it!
they are always working hard and if anything they deserve rest for working so hard as they give us so many vanity items and battlezone updates etc, so dont say they need to work harder as that is disrespectful

Did I say it was bad? No. I didn't. I said I wouldn't consider it a real update since they only added small things that didn't change the game at all. And to be honest I don't do it because I didn't study for doing that.

And by the way, I don't think they worked THAT many hours to do 2 kits and 1 trap block, considering I gave the idea of one of the kits and probably someone else suggested the viper kit and the bambloozer trap blocks they only had to code it.
 

John Clark

Novice Member
Aug 8, 2018
100
32
34
24
Did I say it was bad? No. I didn't. I said I wouldn't consider it a real update since they only added small things that didn't change the game at all. And to be honest I don't do it because I didn't study for doing that.

And by the way, I don't think they worked THAT many hours to do 2 kits and 1 trap block, considering I gave the idea of one of the kits and probably someone else suggested the viper kit and the bambloozer trap blocks they only had to code it.
Coding is hard to do
 

Max ♠

Forum Expert
Feb 20, 2016
1,420
2,940
344
24
North pole
Coding is hard to do
Adding kits most likely didn't involve any coding (unless you consider JSON or similair methods of storing data coding)
(assuming the kits aren't hardcoded)

The trap block probably didnt take much time at all either, depending on the implementation of trap blocks in general it may just be another case of using json to add it.
 

God.

Well-Known Member
Apr 29, 2017
581
609
123
Hell
i love all things, but
-if ninja loose the efect at hit they probably turn a horrible kit


Could you explain why?

No. It will still be the best viable option to capture, since you can get the flag without being seen, just that it wouldn't be overpowered.
There's a slightly difference between a kit being good and unbalanced.

I think that the best option to capture right now is the runner kit, when you get the flag with it you do not loose your speed and (unless there's another runner on the other team) it will be almost impossible to catch you.Without mentioning the allies that will possibly be protecting you.

Also when a ninja gets the flag almost everyone will try to kill him and because it gets slowness it isn't that difficult.


Btw, of what version are we talking about ?

1.8 or 1.9 ?
 

John Clark

Novice Member
Aug 8, 2018
100
32
34
24
Adding kits most likely didn't involve any coding (unless you consider JSON or similair methods of storing data coding)
(assuming the kits aren't hardcoded)

The trap block probably didnt take much time at all either, depending on the implementation of trap blocks in general it may just be another case of using json to add it.
Well if it was that easy then all of the games would get updated very often then.
Ask @Tacosbefriends how hard coding is. You just have to be patient with the updates instead of assuming they are easy and the devs are being lazy :):)
 

Max ♠

Forum Expert
Feb 20, 2016
1,420
2,940
344
24
North pole
Well if it was that easy then all of the games would get updated very often then.
Alrighty then, since you seem to fail to be able to see the difference between adding a kit and bigger updates, let me explain it more thoroughly for you since you don't seem to know what you or I am talking about at all.

Kits should be stored in seperately from the code that gives you the kit (whether it be a json file, an array or whatever, it should be similair-ish to the example below)
Code:
{
    "Egg shell" : {
        "items" : {
            "minecraft:stone:3" : 8
        },
        "price" : 200
    },

    "Rabbit" : {
        "items" : {
            "minecraft:carrot" : 3,
            "minecraft:potion_leaping_2" : 1
        },
        "price" : 250
    },

    "Money bags" : {
        "items" : {
            "minecraft:iron_ingot" : 10,
        },
        "price" : 300
    }
}
*Item id's not accurate

Anyone with at least half a brain can figure out how adding a kit would work with a system like this, certainly not rocket science ay?

You just have to be patient with the updates instead of assuming they are easy
Not all updates are easy, some are easier than others, adding kits isn't hard, at all.

the devs are being lazy :):)
I never mentioned the devs being lazy

Ask @Tacosbefriends how hard coding is.
https://www.cubecraft.net/threads/notification-sounds.195203/
https://www.cubecraft.net/threads/reporting-statistics.195329/
https://www.cubecraft.net/threads/no-custom-colors-in-messages.200358/
https://www.cubecraft.net/threads/no-ip-in-header.202707/
https://www.cubecraft.net/threads/display-ranks-forum-posts.204846/
https://www.cubecraft.net/threads/old-emotes.205778/
https://www.cubecraft.net/threads/new-emotes-o.206246/
https://www.cubecraft.net/threads/no-cc-visuals-on-forums.209008/
https://www.cubecraft.net/threads/tips-and-tricks-on-how-to-get-the-pink-tag.204686/
https://www.cubecraft.net/threads/best-theme-ever.198112/

^Just the projects I've posted on this forum, coding isnt "hard", it's just not for everyone.

tl;dr
Adding kits (perhaps a trap block as well) isnt hard, you dont seem to have any/much coding experience so please, dont tell me editing a json file or whatever is hard.


Sincerely,

Someone who gets very annoyed by people saying coding is hard without having ever (properly) tried it themselves
 

John Clark

Novice Member
Aug 8, 2018
100
32
34
24
Alrighty then, since you seem to fail to be able to see the difference between adding a kit and bigger updates, let me explain it more thoroughly for you since you don't seem to know what you or I am talking about at all.

Kits should be stored in seperately from the code that gives you the kit (whether it be a json file, an array or whatever, it should be similair-ish to the example below)
Code:
{
    "Egg shell" : {
        "items" : {
            "minecraft:stone:3" : 8
        },
        "price" : 200
    },

    "Rabbit" : {
        "items" : {
            "minecraft:carrot" : 3,
            "minecraft:potion_leaping_2" : 1
        },
        "price" : 250
    },

    "Money bags" : {
        "items" : {
            "minecraft:iron_ingot" : 10,
        },
        "price" : 300
    }
}
*Item id's not accurate

Anyone with at least half a brain can figure out how adding a kit would work with a system like this, certainly not rocket science ay?


Not all updates are easy, some are easier than others, adding kits isn't hard, at all.


I never mentioned the devs being lazy


https://www.cubecraft.net/threads/notification-sounds.195203/
https://www.cubecraft.net/threads/reporting-statistics.195329/
https://www.cubecraft.net/threads/no-custom-colors-in-messages.200358/
https://www.cubecraft.net/threads/no-ip-in-header.202707/
https://www.cubecraft.net/threads/display-ranks-forum-posts.204846/
https://www.cubecraft.net/threads/old-emotes.205778/
https://www.cubecraft.net/threads/new-emotes-o.206246/
https://www.cubecraft.net/threads/no-cc-visuals-on-forums.209008/
https://www.cubecraft.net/threads/tips-and-tricks-on-how-to-get-the-pink-tag.204686/
https://www.cubecraft.net/threads/best-theme-ever.198112/

^Just the projects I've posted on this forum, coding isnt "hard", it's just not for everyone.

tl;dr
Adding kits (perhaps a trap block as well) isnt hard, you dont seem to have any/much coding experience so please, dont tell me editing a json file or whatever is hard.


Sincerely,

Someone who gets very annoyed by people saying coding is hard without having ever (properly) tried it themselves
Hmmm maybe but I have to side with the developers and the staff I'm afraid :P
 
D

Deleted member 150344

Guest
Coding is hard to do
So you’re saying coding is hard. Maybe it is hard for you. We already have developers to make these updates, so don’t worry about how easy or hard coding is.
Anyway, this is a good suggestion. So, you not being able to code is not a good reason to not implement this thread. :p
 

John Clark

Novice Member
Aug 8, 2018
100
32
34
24
So you’re saying coding is hard. Maybe it is hard for you. We already have developers to make these updates, so don’t worry about how easy or hard coding is.
Anyway, this is a good suggestion. So, you not being able to code is not a good reason to not implement this thread. :p
Maybe, I just got mad at the guy for complaining about the lack of blockwars updates because you never know the obstacles the hard working devs have to face.
Also maybe the idea is good and will get implemented, but we have to be patient to wait for game updates these days especially with bedrock edition on the rise (but I play bedrock edition a lot so I play both so I don't mind)
Just be patient! :):)
 
  • Like
Reactions: God.
D

Deleted member 436996

Guest
Maybe, I just got mad at the guy for complaining about the lack of blockwars updates because you never know the obstacles the hard working devs have to face.
Also maybe the idea is good and will get implemented, but we have to be patient to wait for game updates these days especially with bedrock edition on the rise (but I play bedrock edition a lot so I play both so I don't mind)
Just be patient! :):)
I didn't want them to code all this things in 1 day?... Where did you come that from!?

Also, I didn't say the update was bad, I said it wasn't a real one.
 

John Clark

Novice Member
Aug 8, 2018
100
32
34
24
Are you stupid? People buy ranks to support the server so if they are not content they have every right to complain.
i think it is rude to complain when they work so hard for updates :)
I didn't want them to code all this things in 1 day?... Where did you come that from!?

Also, I didn't say the update was bad, I said it wasn't a real one.
i disagree :p
 
Status
Not open for further replies.
Members Online

Team online

Latest profile posts

Thjis wrote on CubeCraft's profile.
Happy Bday Cube Bedrock!
ToonBer wrote on Egg🥚's profile.
Gefeliciteerd eitje!
Eli wrote on Egg🥚's profile.
Happy Birthday!!!
JokeKaedee wrote on Egg🥚's profile.
Gefeliciteerd met je verjaardag!! :egg:
Top Bottom