Skip to content
Sign UpLog In
Profile icon

ia13ru

@ia13ru
  • End

    Cover page
    Made with Python

    An RPG with 25 levels. No graphics(I'm not the best at Tkinter) Thanks for playing :-)

    Psst... There's an easter egg!

    Recent comments (0)
  • The hunt

    Cover page
    Made with Python

    A game where you, the blue square, have to run away from the red square.

    Recent comments (4)

    How play?

    JonathonHorn
    JonathonHorn
    2 years ago

    ???

    JoseLuisLuis121
    JoseLuisLuis121
    2 years ago

    i got 24 in hard mode, that was soo hard

    MAITEIBARRA
    MAITEIBARRA
    2 years ago

    mi high score is 49 exelent

Repls
Community
ia13ru
ia13ru
published a Repl
10 months ago
0
Red Square Adventures
Red Square AdventuresA Final Fantasy-type RPG, made in python! (Quite badly)
ia13ru
ia13ru
published an Update
1 year ago
0
KO
KO
I am having a problem with Tkinter
For some reason, an image I want to show up is not doing so. What is wrong? (The code for the image is in Ani.py)
ia13ru
ia13ru
shared a Post
2 years ago
Hi, I am makin this game. I want to slow down the 'for i in range(3) ' loop in ' if key==""'. How do I do this?
Fite nite
Python
ruiwenge2
ruiwenge2
you can use this: import time insert code here time.sleep(1) You can change the 1 to however many seconds you would like.2 years ago
Coder100
Coder100
you could use time.sleep to make it wait. don't forget to also add import time2 years ago
ch1ck3n
ch1ck3n
Can you be more descriptive2 years ago
ia13ru
ia13ru
published a Repl
2 years ago
2
The hunt
The huntA game where you, the blue square, have to run away from the red square.
JoseLuisLuis121
JoseLuisLuis121
i got 24 in hard mode, that was soo hard2 years ago
JonathonHorn
JonathonHorn
???2 years ago
ia13ru
ia13ru
shared a Post
2 years ago
I am making this small game. If you play for a while, you might notice this error popping up in the console. How do I fix it, if it even is fixable?
Quick attack
Ruby
Coder100
Coder100
please be more specific with the error so you can get help faster.2 years ago
ia13ru
ia13ru
published a Repl
2 years ago
3
Competitive hangman
Competitive hangmanIt is hangman for 2 players(needs one person to be judge)
ia13ru
ia13ru
published a Repl
2 years ago
12
Scrolling platformer
Scrolling platformerThe name says it all!
AssdonDiep
AssdonDiep
It says Hmmmm.... We Couldn't Reach Your Repl Make sure your repl has a port open and is ready to receive HTTP traffic.1 year ago
BlueDev1
BlueDev1
scratch flashbacks 1 year ago
ia13ru
ia13ru
shared a Post
2 years ago
#tkinter
#python
I have a question which is in this post. I am reposting this as it has been ignored. The post Thank you in advance. :-)
Scrolling platformer
Python
MadMath123
MadMath123
You can't reference a variable name in Python. The best solution would to make an array of objects, like @ANDREWVOSS wrote. The vars() function is used to get all class vars of an object into one dict (useful for debugging or referencing). If you want to make another object the same way as another, the vars() function might be useful.2 years ago
ANDREWVOSS
ANDREWVOSS
The best solution would be to create a list: objects = [object1,object2,object3] for object in objects: object.function() `2 years ago
ia13ru
ia13ru
shared a Post
2 years ago
I am trying to make the code beneath shorter. class Thing: #insert class here from tkinter import * #insert setup code here #this is where the code I
Scrolling platformer
Python
ia13ru
ia13ru
shared a Post
2 years ago
I have this function: def draw(): #insert all of the variables being specified here return self.canvas.create_rectangle(x1, y1, x2, y2, fill=c)
svensk007
svensk007
I would use an import such as pygame (import pygame) And then use pygame to draw it Also I've used Tkinter before and it has a like 2000s era GUI so pygame again would probably be for the better even if you have to "learn" a new Library. Or if you need VSYNC use pyglet2 years ago
DynamicSquid
DynamicSquid
I don't think there is a prebuilt function for it, so you might have to implement it yourself.2 years ago
ia13ru
ia13ru
shared a Post
2 years ago
A shooter which you can shoot by clicking and jump by pressing the space bar!
An 'ORDINARY' Shooter
HTML, CSS, JS
ia13ru
ia13ru
shared a Post
2 years ago
Is there a function in web javascript that does what require() in node.js does?
notGilbert
notGilbert
There is ES6 import / export, but it is only supported in some libraries MDN (not supported for internet explorer)2 years ago
SixBeeps
SixBeeps
No. If you need to use a third-party library on the client side, you'd provide a URL to the library source code through the script's src attribute.2 years ago
ia13ru
ia13ru
shared a Post
2 years ago
The title says it all! So how do I?
ch1ck3n
ch1ck3n
https://brython.info/2 years ago
RYANTADIPARTHI
RYANTADIPARTHI
not possible in reality.2 years ago
19ecal
19ecal
const { exec } = require("child_process"); exec("python file.py", (error, stdout, stderr) => { if (error) { console.log(error: ${error.message}); return; } if (stderr) { console.log(stderr: ${stderr}); return; } console.log(stdout: ${stdout}); }); Try that2 years ago
ia13ru
ia13ru
shared a Post
2 years ago
How would I connect javascript to sqlite when Javascript is being used with HTML?
xfinnbar
xfinnbar
The short answer is, you can't. However there is a way around it using a server. HTML/CSS/JS is a client. You need to connect to a server to get the page, database or any other type of dynamic content. Repl.it handles the server for you when you choose HTML in the languages menu. You'll need to write your own server. From my experience, NodeJS and Python are the two best languages to write a server in, go for NodeJS if you care about a lot of performance, but for most tasks, Python will suffice.2 years ago
ia13ru
ia13ru
shared a Post
2 years ago
How would I put some SQL data on a HTML page?
InvisibleOne
InvisibleOne
Do you mean something like this: HTML: JS: sql_data = 'bla bla bla bla'; document.getElementById('data').innerHTML = sql_data; `2 years ago
ia13ru
ia13ru
shared a Post
2 years ago
I am new to sql and I have 3 questions about it. How would I put data in the cloud? Or could I just store it in a file for later use? How would you us
Baconman321
Baconman321
Ok, so first things first, replit sqlite AFAIK doesn't allow remote connection (chezcoder and I tried this to no avail). Second, sql is a query language that allows you to store data in a file on the server. JavaScript is a client-side language, which means that it is not capable of accessing sql (for a good reason, too! People could use devtools to delete things from your database or add things too it, which could be quite the predicament). To use sql, you need a server language (like NodeJS2 years ago
ia13ru
ia13ru
shared a Post
2 years ago
I am having problems with code which is detecting collision. All JavaScript(which is most likely where the problems are) is in script.js. I apologise
An 'ORDINARY' Shooter
HTML, CSS, JS
migoyo
migoyo
Thanks for the blog loaded with so many information. Stopping by your blog helped me to get what I was looking for. เว็บแทงบอลที่ดีที่สุด7 months ago
TurboTurbojr
TurboTurbojr
Im trying to add collision detection to my game so the guy can hit the other guy and he dies. But i cant figure it out someone help?1 year ago
ia13ru
ia13ru
shared a Post
2 years ago
I am trying to make 2 objects with the same name, and are exactly the same. I am also trying to put it on a canvas with ctx.fillRect. How would I go a
An 'ORDINARY' Shooter
HTML, CSS, JS
ia13ru
ia13ru
shared a Post
2 years ago
I have posted something on a problem I had. It was simply said as a case of a repl.it bug. I tried it in another compiler and I had the same problem.
Coder100
Coder100
What do you mean another compiler? Btw, instead of using console.log, you can also use alert: let obj = {"a": "b"}; alert(JSON.stringify(obj, null, 2)); `2 years ago
ia13ru
ia13ru
shared a Post
2 years ago
I am doing this project. I think I want to log all the attributes in the console. Or is this what I am meant to do? Tutorial I am following Code: In s
Coder100
Coder100
image i see it just fine. Because of the bugs in replit, if you go to a different page other than index.html, it won't log the results in that page.2 years ago