You are viewing our Forum Archives. To view or take place in current topics click here.
Ugh, my xray is buggy
Posted:
Ugh, my xray is buggyPosted:
Status: Offline
Joined: May 08, 201113Year Member
Posts: 1,017
Reputation Power: 42
Status: Offline
Joined: May 08, 201113Year Member
Posts: 1,017
Reputation Power: 42
Well i just started coding my own client as a hobby and it is coming along good, except for one tiny problem. Instead of just redering the ores and lava, it also renders bushes, flowers, sugar cane, and probably wheat, along with water. How would I fix this?
#2. Posted:
Status: Offline
Joined: Nov 17, 201113Year Member
Posts: 225
Reputation Power: 8
Status: Offline
Joined: Nov 17, 201113Year Member
Posts: 225
Reputation Power: 8
Isnt that kinda good it shows lava too? :-D
- 0useful
- 0not useful
#3. Posted:
Status: Offline
Joined: Aug 11, 201113Year Member
Posts: 2,028
Reputation Power: 111
Status: Offline
Joined: Aug 11, 201113Year Member
Posts: 2,028
Reputation Power: 111
GalaticToast wrote Well i just started coding my own client as a hobby and it is coming along good, except for one tiny problem. Instead of just redering the ores and lava, it also renders bushes, flowers, sugar cane, and probably wheat, along with water. How would I fix this?
I have seen maybe 5 clients with that exact same GUI do you all copy paste or is it a tutorial?
- 1useful
- 0not useful
#4. Posted:
Status: Offline
Joined: Mar 04, 201014Year Member
Posts: 2,891
Reputation Power: 150
When you go into and code the Xray. You will have a list of blocks that you add like:
blockID == 54 || blockID == 16 || blockID == 15 ||
Add the grass and water to it. So it will look like this.
blockID == 54 || blockID == 16 || blockID == 15 || blockID == 8 || blockID == 9 || blockID == 31 ||
That's an example. If you need more help, feel free to add me on Skype My skype is my username
blockID == 54 || blockID == 16 || blockID == 15 ||
Add the grass and water to it. So it will look like this.
blockID == 54 || blockID == 16 || blockID == 15 || blockID == 8 || blockID == 9 || blockID == 31 ||
That's an example. If you need more help, feel free to add me on Skype My skype is my username
- 0useful
- 0not useful
#5. Posted:
Status: Offline
Joined: Aug 11, 201113Year Member
Posts: 2,028
Reputation Power: 111
Status: Offline
Joined: Aug 11, 201113Year Member
Posts: 2,028
Reputation Power: 111
UH60Hawk wrote When you go into and code the Xray. You will have a list of blocks that you add like:
blockID == 54 || blockID == 16 || blockID == 15 ||
Add the grass and water to it. So it will look like this.
blockID == 54 || blockID == 16 || blockID == 15 || blockID == 8 || blockID == 9 || blockID == 31 ||
That's an example. If you need more help, feel free to add me on Skype My skype is my username
Did you actually bother to read what he said?
- 0useful
- 0not useful
#6. Posted:
Status: Offline
Joined: Mar 04, 201014Year Member
Posts: 2,891
Reputation Power: 150
Status: Offline
Joined: Mar 04, 201014Year Member
Posts: 2,891
Reputation Power: 150
-Afro- wroteUH60Hawk wrote When you go into and code the Xray. You will have a list of blocks that you add like:
blockID == 54 || blockID == 16 || blockID == 15 ||
Add the grass and water to it. So it will look like this.
blockID == 54 || blockID == 16 || blockID == 15 || blockID == 8 || blockID == 9 || blockID == 31 ||
That's an example. If you need more help, feel free to add me on Skype My skype is my username
Did you actually bother to read what he said?
Yes I did. Wait. It renders it. Hold on. lol I misread it.
- 0useful
- 0not useful
#7. Posted:
Status: Offline
Joined: May 08, 201113Year Member
Posts: 1,017
Reputation Power: 42
Status: Offline
Joined: May 08, 201113Year Member
Posts: 1,017
Reputation Power: 42
-Afro- wroteGalaticToast wrote Well i just started coding my own client as a hobby and it is coming along good, except for one tiny problem. Instead of just redering the ores and lava, it also renders bushes, flowers, sugar cane, and probably wheat, along with water. How would I fix this?
I have seen maybe 5 clients with that exact same GUI do you all copy paste or is it a tutorial?
I watched tutorials on how make the mods work. I just made the GUI by myself. Hopefully if i have time I will make a menu so you can scroll through different categories of mods.
- 0useful
- 0not useful
#8. Posted:
Status: Offline
Joined: May 08, 201113Year Member
Posts: 1,017
Reputation Power: 42
Status: Offline
Joined: May 08, 201113Year Member
Posts: 1,017
Reputation Power: 42
UH60Hawk wrote-Afro- wroteUH60Hawk wrote When you go into and code the Xray. You will have a list of blocks that you add like:
blockID == 54 || blockID == 16 || blockID == 15 ||
Add the grass and water to it. So it will look like this.
blockID == 54 || blockID == 16 || blockID == 15 || blockID == 8 || blockID == 9 || blockID == 31 ||
That's an example. If you need more help, feel free to add me on Skype My skype is my username
Did you actually bother to read what he said?
Yes I did. Wait. It renders it. Hold on. lol I misread it.
Ya, I need to get xray to not render grass water snow and sugar cane
- 0useful
- 0not useful
#9. Posted:
Status: Offline
Joined: Oct 02, 201113Year Member
Posts: 875
Reputation Power: 36
It lets you see where to grass is o.o
- 0useful
- 0not useful
#10. Posted:
Status: Offline
Joined: Nov 17, 201113Year Member
Posts: 225
Reputation Power: 8
Status: Offline
Joined: Nov 17, 201113Year Member
Posts: 225
Reputation Power: 8
ajh151 wrote It lets you see where to grass is o.o
O'rly? You think that too.
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.