Share your completed SMBX episodes or play and discuss others.
Moderator: Userbase Moderators
|
|
|
|
-
MECHDRAGON777
- Pink Yoshi Egg

- Posts: 6422
- Joined: Fri Dec 20, 2013 6:40 pm
- Flair: Nuclear Queen of Reversion.
-
Contact:
Postby MECHDRAGON777 » Wed Mar 02, 2016 1:18 am
Tobi555 wrote:MECHDRAGON777 wrote:Tobi555 wrote:
Oh ok I understand is it soon enough to where you won't forget about the update? XD Will you still be working on the lua code and Images in the meantime while you wait? I appreciate you not assuming I'm mad since I'm not XD
Yeah, I already have the code for making an achievement popup on screen.the only coding left on that part is to trigger it when you meet the requirements. The star counter is the same one used in my CC12 level. For the HUD of the Hub, I will have to play around with the coordinates to get 8 stars in one area in a ring. Episode wide data class is still foggy to me though.
Oh that's interesting how many achievements do you have planned? Do you have an approximation of when you'll get the new computer besides 'soon'? 
Hopfully next three weeks plus shipping.
...other then the bosses, none. I have a lot of free time at school for a reason though.
|
|
|
|
|
|
|
|
|
-
Tobi555
- Swooper

- Posts: 60
- Joined: Tue Feb 23, 2016 2:13 pm
Postby Tobi555 » Wed Mar 02, 2016 1:52 am
MECHDRAGON777 wrote:Tobi555 wrote:MECHDRAGON777 wrote:
Yeah, I already have the code for making an achievement popup on screen.the only coding left on that part is to trigger it when you meet the requirements. The star counter is the same one used in my CC12 level. For the HUD of the Hub, I will have to play around with the coordinates to get 8 stars in one area in a ring. Episode wide data class is still foggy to me though.
Oh that's interesting how many achievements do you have planned? Do you have an approximation of when you'll get the new computer besides 'soon'? 
Hopfully next three weeks plus shipping.
...other then the bosses, none. I have a lot of free time at school for a reason though.
Oh that's really cool. Oh what could you do at school for the patch? Do you use a computer there to? 
|
|
|
|
|
|
|
|
|
-
MECHDRAGON777
- Pink Yoshi Egg

- Posts: 6422
- Joined: Fri Dec 20, 2013 6:40 pm
- Flair: Nuclear Queen of Reversion.
-
Contact:
Postby MECHDRAGON777 » Wed Mar 02, 2016 1:59 am
Tobi555 wrote:MECHDRAGON777 wrote:Tobi555 wrote:
Oh that's interesting how many achievements do you have planned? Do you have an approximation of when you'll get the new computer besides 'soon'? 
Hopfully next three weeks plus shipping.
...other then the bosses, none. I have a lot of free time at school for a reason though.
Oh that's really cool. Oh what could you do at school for the patch? Do you use a computer there to? 
I have computer science first hour (coding) and I have an hour long bus ride (private message myself a code).
|
|
|
|
|
|
|
|
|
-
Tobi555
- Swooper

- Posts: 60
- Joined: Tue Feb 23, 2016 2:13 pm
Postby Tobi555 » Wed Mar 02, 2016 2:10 am
Oh ok so by the sounds of it codings gonna be finished before you even get your computer. That just leaves the 3 bug fixes and possibly the star counter (if that's not coding).  I can wait 3 weeks >.<
|
|
|
|
|
|
|
|
|
-
MECHDRAGON777
- Pink Yoshi Egg

- Posts: 6422
- Joined: Fri Dec 20, 2013 6:40 pm
- Flair: Nuclear Queen of Reversion.
-
Contact:
Postby MECHDRAGON777 » Wed Mar 02, 2016 2:17 am
Tobi555 wrote:Oh ok so by the sounds of it codings gonna be finished before you even get your computer. That just leaves the 3 bug fixes and possibly the star counter (if that's not coding).  I can wait 3 weeks >.<
I need a lua file (same one) in all levels. for each star that is added such as a 2 star, 3 star, 4 star level, I need to code it differently, then the hub code is where I put the achievement checks. The star counter also reuquires each star to trigger an event on death and for me to link each event to a number through lua by knowing the event called when that star "dies" and use
Code: Select all function onEvent (eventname)
if eventname == "star 1" then
star:set("star1", 1)
star:save()
end
if eventname == "star 2" then
star:set("star2", 1) then
star:save()
end
end
I have the drawimage as well...
|
|
|
|
|
|
|
|
|
-
Tobi555
- Swooper

- Posts: 60
- Joined: Tue Feb 23, 2016 2:13 pm
Postby Tobi555 » Wed Mar 02, 2016 7:45 am
MECHDRAGON777 wrote:Tobi555 wrote:Oh ok so by the sounds of it codings gonna be finished before you even get your computer. That just leaves the 3 bug fixes and possibly the star counter (if that's not coding).  I can wait 3 weeks >.<
I need a lua file (same one) in all levels. for each star that is added such as a 2 star, 3 star, 4 star level, I need to code it differently, then the hub code is where I put the achievement checks. The star counter also reuquires each star to trigger an event on death and for me to link each event to a number through lua by knowing the event called when that star "dies" and use
Code: Select all function onEvent (eventname)
if eventname == "star 1" then
star:set("star1", 1)
star:save()
end
if eventname == "star 2" then
star:set("star2", 1) then
star:save()
end
end
I have the drawimage as well...
Ok so is this a long process to complete? Do you need SMBX to do this or can this code be written without it?
|
|
|
|
|
|
|
|
|
-
MECHDRAGON777
- Pink Yoshi Egg

- Posts: 6422
- Joined: Fri Dec 20, 2013 6:40 pm
- Flair: Nuclear Queen of Reversion.
-
Contact:
Postby MECHDRAGON777 » Wed Mar 02, 2016 8:24 am
Tobi555 wrote:MECHDRAGON777 wrote:Tobi555 wrote:Oh ok so by the sounds of it codings gonna be finished before you even get your computer. That just leaves the 3 bug fixes and possibly the star counter (if that's not coding).  I can wait 3 weeks >.<
I need a lua file (same one) in all levels. for each star that is added such as a 2 star, 3 star, 4 star level, I need to code it differently, then the hub code is where I put the achievement checks. The star counter also reuquires each star to trigger an event on death and for me to link each event to a number through lua by knowing the event called when that star "dies" and use
Code: Select all function onEvent (eventname)
if eventname == "star 1" then
star:set("star1", 1)
star:save()
end
if eventname == "star 2" then
star:set("star2", 1) then
star:save()
end
end
I have the drawimage as well...
Ok so is this a long process to complete? Do you need SMBX to do this or can this code be written without it?
It can be done without, but I do not know if a code will wirk until I out it into SMBX.
|
|
|
|
|
|
|
|
|
-
Tobi555
- Swooper

- Posts: 60
- Joined: Tue Feb 23, 2016 2:13 pm
Postby Tobi555 » Wed Mar 02, 2016 8:37 am
MECHDRAGON777 wrote:Tobi555 wrote:MECHDRAGON777 wrote:
I need a lua file (same one) in all levels. for each star that is added such as a 2 star, 3 star, 4 star level, I need to code it differently, then the hub code is where I put the achievement checks. The star counter also reuquires each star to trigger an event on death and for me to link each event to a number through lua by knowing the event called when that star "dies" and use
Code: Select all function onEvent (eventname)
if eventname == "star 1" then
star:set("star1", 1)
star:save()
end
if eventname == "star 2" then
star:set("star2", 1) then
star:save()
end
end
I have the drawimage as well...
Ok so is this a long process to complete? Do you need SMBX to do this or can this code be written without it?
It can be done without, but I do not know if a code will wirk until I out it into SMBX.
Oh yea true XD Well the wait begins unless you have someone else in mind that wouldn't mind to test the codes and fix the 3 glitches. XD
|
|
|
|
|
|
|
|
|
-
MECHDRAGON777
- Pink Yoshi Egg

- Posts: 6422
- Joined: Fri Dec 20, 2013 6:40 pm
- Flair: Nuclear Queen of Reversion.
-
Contact:
Postby MECHDRAGON777 » Wed Mar 02, 2016 8:57 am
Tobi555 wrote:MECHDRAGON777 wrote:Tobi555 wrote:
Ok so is this a long process to complete? Do you need SMBX to do this or can this code be written without it?
It can be done without, but I do not know if a code will wirk until I out it into SMBX.
Oh yea true XD Well the wait begins unless you have someone else in mind that wouldn't mind to test the codes and fix the 3 glitches. XD
I could try to finish my class work in computer class and put it on my flash drive... That is the best thing I can do for now.
|
|
|
|
|
|
|
|
|
-
Tobi555
- Swooper

- Posts: 60
- Joined: Tue Feb 23, 2016 2:13 pm
Postby Tobi555 » Wed Mar 02, 2016 9:04 am
MECHDRAGON777 wrote:Tobi555 wrote:MECHDRAGON777 wrote:
It can be done without, but I do not know if a code will wirk until I out it into SMBX.
Oh yea true XD Well the wait begins unless you have someone else in mind that wouldn't mind to test the codes and fix the 3 glitches. XD
I could try to finish my class work in computer class and put it on my flash drive... That is the best thing I can do for now.
Ok fair enough I can wait wouldn't wanna sacrifice your school work for this XD I can wait 3 weeks if it will TRULY be finished this time. 
|
|
|
|
|
|
|
|
|
-
MECHDRAGON777
- Pink Yoshi Egg

- Posts: 6422
- Joined: Fri Dec 20, 2013 6:40 pm
- Flair: Nuclear Queen of Reversion.
-
Contact:
Postby MECHDRAGON777 » Wed Mar 02, 2016 9:06 am
Tobi555 wrote:MECHDRAGON777 wrote:Tobi555 wrote:
Oh yea true XD Well the wait begins unless you have someone else in mind that wouldn't mind to test the codes and fix the 3 glitches. XD
I could try to finish my class work in computer class and put it on my flash drive... That is the best thing I can do for now.
Ok fair enough I can wait wouldn't wanna sacrifice your school work for this XD I can wait 3 weeks if it will TRULY be finished this time. 
You could still play the other tower of buases or shoul I ru to finnish the collection?
|
|
|
|
|
|
|
|
|
-
Tobi555
- Swooper

- Posts: 60
- Joined: Tue Feb 23, 2016 2:13 pm
Postby Tobi555 » Wed Mar 02, 2016 9:22 am
MECHDRAGON777 wrote:Tobi555 wrote:MECHDRAGON777 wrote:
I could try to finish my class work in computer class and put it on my flash drive... That is the best thing I can do for now.
Ok fair enough I can wait wouldn't wanna sacrifice your school work for this XD I can wait 3 weeks if it will TRULY be finished this time. 
You could still play the other tower of buases or shoul I ru to finnish the collection?
What? XD Sorry I don't understand the last half of the sentence 
|
|
|
|
|
|
|
|
|
-
MECHDRAGON777
- Pink Yoshi Egg

- Posts: 6422
- Joined: Fri Dec 20, 2013 6:40 pm
- Flair: Nuclear Queen of Reversion.
-
Contact:
Postby MECHDRAGON777 » Wed Mar 02, 2016 5:00 pm
Tobi555 wrote:MECHDRAGON777 wrote:Tobi555 wrote:
Ok fair enough I can wait wouldn't wanna sacrifice your school work for this XD I can wait 3 weeks if it will TRULY be finished this time. 
You could still play the other tower of buases or shoul I ru to finnish the collection?
What? XD Sorry I don't understand the last half of the sentence 
You also have ToB1-10 or are you waiting for the collection?
|
|
|
|
|
|
|
|
|
-
Tobi555
- Swooper

- Posts: 60
- Joined: Tue Feb 23, 2016 2:13 pm
Postby Tobi555 » Wed Mar 02, 2016 9:57 pm
MECHDRAGON777 wrote:Tobi555 wrote:MECHDRAGON777 wrote:
You could still play the other tower of buases or shoul I ru to finnish the collection?
What? XD Sorry I don't understand the last half of the sentence 
You also have ToB1-10 or are you waiting for the collection?
I have 1-10 I just wanted to go through ToB0 first and go through it legit without levels breaking and without hub issues.  I don't wanna continue the series until I can do that. C: I hope you understand  that's why I've been really hoping that this patch doesn't take to long to complete so that I can play ToB0 bug and glitch free. 
|
|
|
|
|
|
|
|
|
-
MECHDRAGON777
- Pink Yoshi Egg

- Posts: 6422
- Joined: Fri Dec 20, 2013 6:40 pm
- Flair: Nuclear Queen of Reversion.
-
Contact:
Postby MECHDRAGON777 » Thu Mar 03, 2016 7:54 am
Tobi555 wrote:MECHDRAGON777 wrote:Tobi555 wrote:
What? XD Sorry I don't understand the last half of the sentence 
You also have ToB1-10 or are you waiting for the collection?
I have 1-10 I just wanted to go through ToB0 first and go through it legit without levels breaking and without hub issues.  I don't wanna continue the series until I can do that. C: I hope you understand  that's why I've been really hoping that this patch doesn't take to long to complete so that I can play ToB0 bug and glitch free. 
Not glitch free, but bug free. All SMBX level have the same glitches and most can not be fixed, but bugs on the other hand, are annoying!
|
|
|
|
|
|
|
|
|
-
Tobi555
- Swooper

- Posts: 60
- Joined: Tue Feb 23, 2016 2:13 pm
Postby Tobi555 » Thu Mar 03, 2016 8:23 am
MECHDRAGON777 wrote:Tobi555 wrote:MECHDRAGON777 wrote:
You also have ToB1-10 or are you waiting for the collection?
I have 1-10 I just wanted to go through ToB0 first and go through it legit without levels breaking and without hub issues.  I don't wanna continue the series until I can do that. C: I hope you understand  that's why I've been really hoping that this patch doesn't take to long to complete so that I can play ToB0 bug and glitch free. 
Not glitch free, but bug free. All SMBX level have the same glitches and most can not be fixed, but bugs on the other hand, are annoying!
Yea your right but you know what I mean.  I just want to get my hands on the patch as fast as possible whenever you have the time to or ability to finish it.  I really enjoy your hub world. 
|
|
|
|
|
|
|
|
|
-
MECHDRAGON777
- Pink Yoshi Egg

- Posts: 6422
- Joined: Fri Dec 20, 2013 6:40 pm
- Flair: Nuclear Queen of Reversion.
-
Contact:
Postby MECHDRAGON777 » Thu Mar 03, 2016 8:26 am
Tobi555 wrote:MECHDRAGON777 wrote:Tobi555 wrote:
I have 1-10 I just wanted to go through ToB0 first and go through it legit without levels breaking and without hub issues.  I don't wanna continue the series until I can do that. C: I hope you understand  that's why I've been really hoping that this patch doesn't take to long to complete so that I can play ToB0 bug and glitch free. 
Not glitch free, but bug free. All SMBX level have the same glitches and most can not be fixed, but bugs on the other hand, are annoying!
Yea your right but you know what I mean.  I just want to get my hands on the patch as fast as possible whenever you have the time to or ability to finish it.  I really enjoy your hub world. 
The hub is the onlything made by me. I am glad you likedit though. I am workig on achievements in general, not just this.
|
|
|
|
|
|
|
|
|
-
Tobi555
- Swooper

- Posts: 60
- Joined: Tue Feb 23, 2016 2:13 pm
Postby Tobi555 » Thu Mar 03, 2016 8:33 am
MECHDRAGON777 wrote:Tobi555 wrote:MECHDRAGON777 wrote:
Not glitch free, but bug free. All SMBX level have the same glitches and most can not be fixed, but bugs on the other hand, are annoying!
Yea your right but you know what I mean.  I just want to get my hands on the patch as fast as possible whenever you have the time to or ability to finish it.  I really enjoy your hub world. 
The hub is the onlything made by me. I am glad you likedit though. I am workig on achievements in general, not just this.
Oh ok I see well I'll move on to something else for the time being and occasionally come back to check how things are going when you get your computer  Thanks for all your hard work Mech.
|
|
|
|
|
|
|
|
|
-
MECHDRAGON777
- Pink Yoshi Egg

- Posts: 6422
- Joined: Fri Dec 20, 2013 6:40 pm
- Flair: Nuclear Queen of Reversion.
-
Contact:
Postby MECHDRAGON777 » Thu Mar 03, 2016 8:35 am
Tobi555 wrote:MECHDRAGON777 wrote:Tobi555 wrote:
Yea your right but you know what I mean.  I just want to get my hands on the patch as fast as possible whenever you have the time to or ability to finish it.  I really enjoy your hub world. 
The hub is the onlything made by me. I am glad you likedit though. I am workig on achievements in general, not just this.
Oh ok I see well I'll move on to something else for the time being and occasionally come back to check how things are going when you get your computer  Thanks for all your hard work Mech.
Any time. The "three weeks" is based off of what I was told though. You helped a lot with your fixes though.
|
|
|
|
|
|
|
|
|
-
Storm027
- Swooper

- Posts: 60
- Joined: Wed Mar 16, 2016 5:44 pm
Postby Storm027 » Sat Mar 19, 2016 5:49 pm
I hope you get your new comp soon. I was playing and found out the Pyramid Showdown level still has no music. let us all know when you fix those bugs, or should I say broken levels? does the Pyramid showdown come without music? if it came with no music at all, the best pyramid music I know of is music from Super Mario land pyramid, and there are a few remixed versions.
|
|
|
|
|
Return to “Episodes”
Users browsing this forum: No registered users and 2 guests
|