Page 2 of 3

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Mar 2013, 15:29
by ibiss
TripleXero wrote:Infinite level heights are in SE
I don´t think that Maurice would create a SMW Map mode in SE (or possibly yes)

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Mar 2013, 17:59
by Qcode
Still, whatever Maurice does is going to better 10x better than my code. If something's going to be in SE (like vertical map height), it's better for me to wait and mod from already implemented stuff than add more of my crappy code.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Mar 2013, 19:09
by maidenTREE
What page is the 1337th world on?!

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Mar 2013, 19:12
by Qcode
What are you talking about? Just spam next page until you get to 1337. If you're talking about making a warp pipe to the 1337th world then just right click on the warp pipe, and type in "1337".

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Mar 2013, 22:55
by Mr.Q.Marx?
Qcode wrote:What are you talking about? Just spam next page until you get to 1337. If you're talking about making a warp pipe to the 1337th world then just right click on the warp pipe, and type in "1337".
He's making a joke about L33t speak.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Mar 2013, 22:58
by Qcode
I know that. It just seemed like a silly question. Maybe for some reason he actually wanted an elite world in his mappack.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 31 Mar 2013, 03:47
by maidenTREE
Nah, I just wanted the 1337th world to be Tetris NES LEVELS. Here is the tileset: Image

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 31 Mar 2013, 12:07
by SuperScourge
So what files were modded to give us infinite worlds and it's sublevels? I could mod the main files so I have a ninth world and make it the "Lost" Levels of zany challenges from them.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 31 Mar 2013, 14:26
by Qcode
You already can have a ninth world. That's the point of using the mod.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 31 Mar 2013, 18:20
by Villager103
I know this may sound dumb but how do I install a mod?

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 31 Mar 2013, 18:21
by Qcode
Automatik gave some good instructions.
viewtopic.php?f=8&t=3083#whatmod

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 31 Mar 2013, 19:16
by ucenna
Interesting Question if I make a world 9 and 0 on here, will it work in vanilla mari0? Another question is it possible to make letter worlds (like A-1) that would be compatible with vanilla Mari0 via warp pipes?

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 20 Apr 2013, 19:12
by maidenTREE
I broke my Modded Mari0 SMB3 Extra Shaders Infinite worlds by going to 6-1 in Acid Trip.

Error

bowser.lua:49: attempt to compare number with string

Traceback

bowser.lua:49: in function 'init
class.lua:41 in function 'new'
game.lua:3728: in function 'spawnenemy'
game.lua:3802: in function 'spawnenemy'
game.lua:3802: in function 'spawnenemy'
game.lua:690: in function 'game_update'
main.lua:796: in function 'update'
[C]: in function 'xpcall'

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 20 Apr 2013, 19:29
by Qcode
You probably modded it wrong. The code isn't just all GUI, it has to do some modifications to get world pipes and level passing working.
Anyway you probably forgot to mod this into game.lua.
This on line 2275

Code: Select all

for i = 1, #r do
   if r[i] ~= "link" then
      map[x][y][i] = tonumber(r[i])
   else
      map[x][y][i] = r[i]
   end
end
Should be changed to

Code: Select all

for i = 1, #r do
   if r[i] ~= "link" then
      if r[i] ~= "m" then
         map[x][y][i] = tonumber(r[i])
      else
         map[x][y][i] = r[i]
      end
   else
      map[x][y][i] = r[i]
   end
end

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 21 Apr 2013, 21:05
by maidenTREE
I didn't mod it wrong, I had textures for the modded Mari0 I made and I had Extra SHaders and Infinite worlds and Better Level Editor.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 21 Apr 2013, 21:30
by TheJonyMyster
Turtley3 wrote:I didn't mod it wrong, I had textures for the modded Mari0 I made and I had Extra SHaders and Infinite worlds and Better Level Editor.
If you didn't mod it wrong, you wouldn't get an error.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 29 Jul 2013, 06:15
by Superjustinbros
So, Qcode, I've been wondering, would you be able to work further on this mod? There are a few things that I could see altered:

*After typing a world destination number in the R-click dropdown, when you click on the screen or hit ESC to abort the dropdown, it goes back to the entity palette instead of the tile palette.
*The typeboxes could be applied to anything with a numerical value in it's dropdown menu, sans Gel ID's.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 29 Jul 2013, 20:56
by cbailey78
Can you make the Infinite worlds mod without the portal gun? Thanks.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Jul 2013, 00:46
by HugoBDesigner
Qcode, since I want to add this mod to my Mari0 +Portal mod, I'm asking here: do you allow me to do it? Also, if yes, what files did you modded, so I can merge the mods easily. Thanks!

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Jul 2013, 15:11
by Qcode
Superjustinbros wrote:So, Qcode, I've been wondering, would you be able to work further on this mod? There are a few things that I could see altered:

*After typing a world destination number in the R-click dropdown, when you click on the screen or hit ESC to abort the dropdown, it goes back to the entity palette instead of the tile palette.
Fixed.
Superjustinbros wrote:*The typeboxes could be applied to anything with a numerical value in it's dropdown menu, sans Gel ID's.
I don't really see the point of this. The reason why I had textboxes for other numerical values because those were ones that related to worlds and sublevels. Since gel ID's only accept three values I still see it as kind of pointless.
cbailey78 wrote:Can you make the Infinite worlds mod without the portal gun? Thanks.
Name one mappack that's been created with infinite worlds mod, which would benefit from a no portal gun version.
HugoBDesigner wrote:Qcode, since I want to add this mod to my Mari0 +Portal mod, I'm asking here: do you allow me to do it? Also, if yes, what files did you modded, so I can merge the mods easily. Thanks!
Sure you can. Editor.lua, game.lua, mario.lua. If you need any help, just contact me as always.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Jul 2013, 19:14
by cbailey78
Name one mappack that's been created with infinite worlds mod, which would benefit from a no portal gun version.
It's just the classic Original SMB mappack.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Jul 2013, 19:17
by Qcode
Well if it fits inside of the regular worlds then just use this mod viewtopic.php?f=13&t=3096. No need for my mod.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Jul 2013, 22:12
by Superjustinbros
cbailey78 wrote:
Name one mappack that's been created with infinite worlds mod, which would benefit from a no portal gun version.
It's just the classic Original SMB mappack.
This only one I recall that's been made to take advantage of the Inf. Worlds Mod is my own SMB Extended mappack. But even then that was more of a proof-of-concept map pack and basically exists just for the sake of showing the mod in action.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Jul 2013, 23:52
by TripleXero
I'll add this mod to SMB+ soonish, if you don't care Qcode, I'm guessing you won't

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 18 Sep 2013, 19:34
by Azril
Now add infinite mapwidth :3

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 18 Sep 2013, 19:54
by BobTheLawyer
Isn't mapwidth already infinite?

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 18 Sep 2013, 20:17
by Automatik
BobTheLawyer wrote:Isn't mapwidth already infinite?
Yes. Maybe he meant mapheight.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 27 Oct 2013, 01:45
by badhaloninja
Can you merge it with Multiple custom music please

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 27 Oct 2013, 01:47
by Qcode
Some guy already did this
viewtopic.php?f=13&t=3391

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 27 Oct 2013, 01:54
by badhaloninja
Qcode wrote:Some guy already did this
viewtopic.php?f=13&t=3391
ya i just found that right after i posted!

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 04 Mar 2014, 09:13
by Max318
Awesome

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 04 Mar 2014, 16:35
by ibiss
Qcode wrote:Some guy already did this
viewtopic.php?f=13&t=3391
Oh Yeah.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 25 Mar 2014, 00:41
by SauloFX
I wonder who would make 4000 levels..... O_O

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 25 Mar 2014, 00:57
by Firaga
SauloFX wrote:I wonder who would make 4000 levels..... O_O
Nobody, because the filesize would be so huge nobody would bother.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 09 Apr 2014, 20:29
by HugoBDesigner
Sorry for the bump, but may I have permission to add this mod to my Mari0 +Portal mod, Qcode? I'll give credits properly, for sure!

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 29 Nov 2014, 03:43
by FuriousTH
emmm, sorry for bump same.
could use your mod for my own mod:
New Super Mari0 Bros.?
And also just in case you can help on some things for it, because I do not want any crash
if Qcode?

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 29 Nov 2014, 03:46
by JohnHOne
FuriousHedgehog wrote:emmm, sorry for bump same.
could use your mod for my own mod:
New Super Mari0 Bros.?
And also just in case you can help on some things for it, because I do not want any crash
if Qcode?
Sorry,but qcode abandoned this mod,but my mod have more worlds(even if it do not have infinite worlds,my mod contain 12 worlds)

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 29 Nov 2014, 03:47
by Squidish
To answer your question, Furious, all mods are open source, which means you can edit them freely, unless they particularly say they don't want you to. Qcode said above it was fine if you used it.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 29 Nov 2014, 03:48
by FuriousTH
PrincessKiller wrote:To answer your question, Furious, all mods are open source, which means you can edit them freely, unless they particularly say they don't want you to.
Oh thanks
Thanks to say me.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 29 Nov 2014, 03:53
by FuriousTH
JohnHOne wrote:
FuriousHedgehog wrote:emmm, sorry for bump same.
could use your mod for my own mod:
New Super Mari0 Bros.?
And also just in case you can help on some things for it, because I do not want any crash
if Qcode?
Sorry,but qcode abandoned this mod,but my mod have more worlds(even if it do not have infinite worlds,my mod contain 12 worlds)
And your mod is for SE and i use mari0 1.6
so would not serve me, sorry

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 29 Nov 2014, 04:08
by FuriousTH
Qcode one Question.
as you did for the warpipe, vine, Warpzone and warpspawn make for a select number no more be written?
Image

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 29 Nov 2014, 14:07
by Qcode
I can't remember, I coded it in like 2 years ago.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 29 Nov 2014, 14:40
by FuriousTH
Qcode wrote:I can't remember, I coded it in like 2 years ago.
then as I will be able to do?
please remember Qcode!

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Nov 2014, 01:54
by Qcode
It's nice that you're leaving the "please remember Qcode" message for after I die, but I seriously don't have the time to look through my own code and find how I did this. You might be able to get someone else to do it.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Nov 2014, 02:06
by JohnHOne
Qcode wrote:It's nice that you're leaving the "please remember Qcode" message for after I die, but I seriously don't have the time to look through my own code and find how I did this. You might be able to get someone else to do it.
my mod actually have 12 worlds,and the warp pipe can go at any world(upcoming update)

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Nov 2014, 02:48
by alesan99
JohnHOne wrote: my mod actually have 12 worlds,and the warp pipe can go at any world(upcoming update)
You already said this.
I understand you want people to know about your mod but please don't keep on posting it again and again.
He wants infinite levels and worlds not just 12.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Nov 2014, 03:09
by FuriousTH
alesan99 wrote:
JohnHOne wrote: my mod actually have 12 worlds,and the warp pipe can go at any world(upcoming update)
You already said this.
I understand you want people to know about your mod but please don't keep on posting it again and again.
He wants infinite levels and worlds not just 12.
yea
it´s anonnying
anything alesan99
since I'm modding your mod, I'm adding the infinite worlds to mod, but I can not do to make pipe, pipespawn, came and warppipe work to go to these worlds, so you think you can help me do that?
Please.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Nov 2014, 04:58
by alesan99
My rightclick menu code is extremely sloppy so it'll be a bit difficult, however I'll still do it.
I'll pm you once I get something ready.

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 30 Nov 2014, 05:02
by FuriousTH
alesan99 wrote:My rightclick menu code is extremely sloppy so it'll be a bit difficult, however I'll still do it.
I'll pm you once I get something ready.
Ok alesan!

Re: [MOD] Infinite worlds+Infinite sublevels 2.1

Posted: 17 Feb 2015, 02:40
by Superedwinbros55
I need to have infinite level