Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - motorfirebox

Pages: [1]
1
Help/FAQ / Re: copying content from old levels
« on: 2007-03-02, 02:24:38 PM »
cool. i want several types of enemies, and i want them to stick to the individual paths i define for them, rather than chasing the player around the entire map--like most of the Paratroopas in Super Mario Bros. it seems like the best course might be searching the map for certain path types (probably by name), and replacing the sprite attached to that path with the sprite template i want.

so, to make a Paratroopa, i'd create the Paratroopa sprite and template on my source level (a level with one instance of each type of sprite). i'd create a path on the level i want the Paratroopa to appear on, and call that path something like L1Paratroopa0 (level 1, enemy type, index of that type). i'd attach a single-state sprite with a blank tile to that path. the script would do an InStr for "Paratroopa", locate the sprite attached to the path, and replace it with a sprite created from the Paratroopa template.

that sound right?

edit: oh, the reason i think i should search for paths instead of tiles is, i don't want to be limited to a single tile size for the entire game.

2
Help/FAQ / Re: copying content from old levels
« on: 2007-03-02, 01:15:48 AM »
hm. what i want to do is complex enough that i think scripting is the best answer. however, i've never used VBScript, and my only experience with coding is a semester of Java a few years ago. i've read through several tutorials, and i think i've got a decent grasp of the concepts and syntax. trying to wade through the script for GoldYoink is pretty confusing, though. could someone post a short example of defining a sprite template and special function using scripting, or at least copy and paste an example from GoldYoink? i can work my way up from there.

3
Help/FAQ / copying content from old levels
« on: 2007-02-28, 04:01:49 PM »
maybe i just missed it, but does the SGDK have an easy way to copy content from old levels into other levels? for instance, if i make a sprite in one level, is there an easy way to make it appear in other levels? i know i'll have to create new paths for it, but do i have to recreate all the animations and behaviors? what about special functions?

Pages: [1]