1
Off Topic / LEd - Tilemap Editor
« on: 2020-Sep-26 »
Looks promising, has auto-tiling like rpg-maker and is open source.
https://deepnight.net/tools/led-2d-level-editor/
https://deepnight.net/tools/led-2d-level-editor/
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.
Rich Presence allows you to leverage the totally overhauled "Now Playing" section in a Discord user's profile to help people play your game together. Rich game data—including duration, score, current boss or map, and so much more—lives inside Discord. You can spectate a friend's game directly from their profile popout, or party up via beautiful chat embeds with real-time information about open party slots and the party's in-game status. No more exchanging usernames and friend codes, or wondering if there's room for you to join. Rich Presence is a living invitation to play together, or to watch your friends kick butt.
// --------------------------------- //
// Project: netwebget_url_length
// Start: Sunday, November 20, 2011
// IDE Version: 10.159
// SETCURRENTDIR("Media") // go to media files
LOCAL start = 910
LOCAL url$ = "/highscores/index.php/data/put/"
LOCAL ok$
FOR n = 0 TO start
url$ = url$+"A"
NEXT
FOR n = start TO 1024
url$ = url$ + "a"
DEBUG LEN(url$)
ok$ = NETWEBGET$("gamecorner.110mb.com", url$, 80, 5000)
DEBUG " Result: " + ok$ + "\n"
SHOWSCREEN
NEXT
This is a coding competition for Caanoo, Wiz, Pandora and Dingoo's Dingux developers. With this competition we hope to generate more awesome homebrew games for our favorite consoles and our beloved communities. We hope you join and help us bring these communities together in ways never before seen.
This competition is in the spirit of community. As such, you are required to join up with one of your fellow developers / artist / coder / sound / composer / game-designer / magician etc. to create something as a team. We hope this will result in a lot of "artist/coder needed for my awesome idea" threads on the boards and people will help each other out. Remember, you can submit several entries, so your talent could be shared between teams as well.
LOCAL a$, count, array$[]
a$ = "one"+CHR$(0)+"two"+CHR$(0)+"three"
count = SPLITSTR(a$, array$[], CHR$(0), FALSE)
DEBUG "fields: " + count + "\n"
FOREACH b$ IN array$[]
DEBUG " ["+b$ + "]\n"
NEXT
END