Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Dev.Game.Wzrd

55
Posts
9
Topics
7
Followers
8
Following
A member registered Dec 07, 2019 · View creator page →

Creator of

Recent community posts

Good game

Dani, Make a 3D game with only partials. (or u cant do that?)

huuuuuu....

I am sad that this game jam wasn't a success, with 0 submissions...

But still publish the games you've created, and good luck as a dev 

Hi dani ( and blackthor prod ), I was just wondering.....

Can U make a game in 20 minutes, ore even 30 secs? Bet U can't...

Ho, yes theme...

The theme this time is games where you start out with ONE of something, then get 2 things to survive.

Go to this link to join the mini magfoiyl:

https://itch.io/jam/magfoiyl-new2

I will host MAGFOIYL for about 1-4 months, the wait a month, then another will start up again.

Returning programmer's and my followers will get the passcode to try out all my games, prototypes, and work in progress, and also get to play and test some of my failures. If you are not in this jam, but are following me, you will also get this access. But if you are my follower, and in this jam, you get something special....*


*You will be notified when this special thing arrives.

Give me ideas for puzzles and such

There is a 50% chance for your puzzle suggestions to get in the game

That's a good deal, ya.

Mu-hu.

good job.

very confusing and fun

Im on skype...

(1 edit)

v1.03 and the 2nd puzzle came out a few hours ago.


                                                             -Dev.Code.Wzrd

A Glitchy game..... community · Created a new topic Dev Log
(1 edit)

here you will see all of the puzzles and secret codes. 

You will also see all the patches and other things like that.

WARNING! SPOILERS FOR GAME AND SECRETS!

There are multiple codes and things for the puzzles.

 ONE: for puzzle one:

The answers for it are: 960 or |960?.

Secrets: N/A

There will be more updates, but I don't want the WHOLE game be spoiled for you.

lul. And if anybody needs help, please show them how to do it.

I'll update it to give a hit about you half to use the US keyboard layout to do the \(^-^)/ puzzle.

You can join a keyboard by clicking the add a second keyboard player, but Garnez says it's only for last rezort because it doesn't have great shooting controls/aiming...

I'll add you after I publish the game. Which will be soon....

Try and add a hp bar, so you can actually tell what hp your brawler is at.

(1 edit)

if you want to see the code for my game that I'm working on, then here it is:

#! /usr/bin/python3
import turtle
import os
from time import sleep
import random
print('GNU/Linux v1.0.2')
print('Runs on Linux and standalone devices')
print('If you see garbled message below the ==== line, then something went worng...')
print('=============================================================================')
print(u"\u001b[31m")
Messages = ['how do you play this game?', 'do you know?', 'Never mind', 'What are the controls???',]
main_screen = turtle.Screen()
main_screen.bgcolor('black')
main_screen.title("A Glitchy Game...")
border_pen = turtle.Turtle()
border_pen.speed(0)
border_pen.color('white')
border_pen.penup()
border_pen.hideturtle()
border_pen.setposition(-400, -400)
border_pen.pensize(3)
border_pen.pendown()
for i in range (1, 5):
    border_pen.forward(800)
    border_pen.left(90)
player1 = turtle.Turtle()
player1.hideturtle()
player1.color('red')
player1.shape('square')
player1.penup()
player1.speed(0)
player1.setposition(-105, -157)
player1.left(90)
player1.showturtle()
platform = turtle.Turtle()
platform.hideturtle()
platform.color("gray")
platform.shape("square")
platform.shapesize(1.5, 20)
platform.penup()
platform.speed(0)
platform.setposition(0, -184)
platform.showturtle()
Gun1 = turtle.Turtle()
Gun1.hideturtle()
Gun1.color('gray')
Gun1.shape('square')
Gun1.penup()
Gun1.shapesize(.5, 1.5)
Gun1.speed(0)
Gun1.setposition(-100, -157)
Gun1.showturtle()
player2 = turtle.Turtle()
player2.hideturtle()
player2.color('blue')
player2.shape('square')
player2.penup()
player2.speed(0)
player2.setposition(105, -157)
player2.left(90)
player2.showturtle()
Gun2 = turtle.Turtle()
Gun2.hideturtle()
Gun2.color('gray')
Gun2.shape('square')
Gun2.penup()
Gun2.shapesize(.5, 1.5)
Gun2.speed(0)
Gun2.setposition(100, -157)
Gun2.showturtle()
player1_speed = 5
player2_speed = 5
def player1_move_left():
    x = player1.xcor()
    x -= player1_speed
    if x < -350:
        x = -350
    Gun1.setx(x - 5)
    player1.setx(x)
    Gun1.setx(x - 5)
    player1_x = x
def player1_move_right():
    x = player1.xcor()
    x += player1_speed
    if x > 350:
        x = 350
    Gun1.setx(x - 5)
    player1.setx(x)
    player1_x = x
def player2_move_left():
    x = player2.xcor()
    x -= player2_speed
    if x < -350:
        x = -350
    Gun2.setx(x - 5)
    player2.setx(x)
    Gun2.setx(x - 5)
    player2_x = x
def player2_move_right():
    x = player2.xcor()
    x += player2_speed
    if x > 350:
        x = 350
    Gun2.setx(x - 5)
    player2.setx(x)
    player2_x = x
turtle.listen()
turtle.onkey(player1_move_left, 'Left')
turtle.onkey(player1_move_right, 'Right')
messageNum = 0
answeredCorrectly = 1
for i in range(0, random.randint(1, 10)):
    for i in range(0, random.randint(1, 5)):
        player2_move_left()
    for i in range(0, random.randint(1, 5)):
        player2_move_right()
while not messageNum == 4:
    print('Player1:' + Messages[messageNum])
    if messageNum == 1:
        main_screen.title("^*^%%^&*%##%&*678^5%78&%57*(55&8(6789(7^55")
    else:
        main_screen.title("A Glitchy Game...")
    messageNum += 1
if not answeredCorrectly == 0:
    print('Instructions : say: "For me the controls where the arow keys..."')
    Input = input('Chat HERE_>>>')
    if Input == 'For me the controls where the arow keys...':
        print("Player1: I'll try the W, A, S, and D keys....")
        answerdCorrectly = 0
        sleep(0.53421)
        print('Player1: Like what do you do in this game?')
        sleep(1.555)
        print('Player1: Ho, wait, thet me try this...')
else:
    print('Instructions : say: "For me the controls where the arow keys..."')
    Input = input('Chat HERE_>>>')
    if Input == 'For me the controls where the arow keys...':
        print("Player1: I'll try the W, A, S, and D keys....")
        answerdCorrectly = 0
        sleep(0.53421)
    else:
        answedCorrectly = 1

Ok, but it's still fun.

and the 1st player doesn't really have any aiming controls....

Yup it works, but when both players die at the same time, the game, well, does not work.

OK I'll try it and tell you if it works.

but maybe later because I am making a horror game coverd in a glitchy game, so maybe later.... Sorry! >=

Skype works.

What's pycharm?

Try and make it so you can also play with the arrow keys on a keyboard for one player, as well as the w, a, s, d keys for another.

I can't change my email on discord, so I can't verify the email to chat, so can we chat some other way? 

Can you  convert the files into a .EXE file so it maybe can be played in-browser, put the game in one script or something. ( into a .EXE then into a java file )

Awesome, definitely a game to be proud of!!!

cool, we can chat, but I'm mainly based around python, and I would be happy to talk on discord. I am usually on in the weekends, otherwise  I am free from 3 - 5 on weekdays, so maybe be could do it then. I will tell you when I have added you on discord....

CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.CoolStuff.

I'm a game dev too and I love your channel, check me out here, and a cool online game that you can play here:

https://deeeep.io/new/

and if you noticed, My games suck....