Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-17 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so I am just going to point out that you're beginning to give the impression that you're not trying very hard to handle things on your own.  I would spend some time learning to Google.  I would also spend some t

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-17 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so aha, I found pritty much the same results,  but wasn't paying atenchin to the remove methid URL: https://forum.audiogames.net/post/553279/#p553279 -- Audiogames-reflector mailing list Audiogames-reflector@

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-17 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so These are the first couple results I found in under 10 seconds by typing "removing items from a list python"1234I'm serious. It literally took longer for me to type this out rather than google URL: https://

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-17 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so @161 hmm, so I got the del methid but that one also neads an integer when I try to use it like: del object[i], is there an other way to use it URL: https://forum.audiogames.net/post/553270/#p553270 -- Audiogames-refl

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-17 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so I am sorry to say this, but googling removing items from a list gave me an answer. I encourage you to do likewise. URL: https://forum.audiogames.net/post/553267/#p553267 -- Audiogames-reflector mailing list Audio

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-17 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so hi all, is there anyway I can get an  int of the current index of a for loop? because lets say I have a loop that should delete the current index if the current index object have les than 0 health, doing object.pop(i) do

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-16 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Python will complain.  You need to learn not to do that.  It's very bad practice.  Most other languages will complain too, and I'm surprised it works in BGT.There is an idea in programming called the single

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-16 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so thank you a lot, though can you give me an advice of what files i'll mainly nead, like one for vairiables, one for functions etc, it will be very helpful, I am sorry if I ask a lot URL: https://forum.audiogames.net/p

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-16 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so It will, it’s called circular import. Like I said, don’t do this. Separate your code into another module. URL: https://forum.audiogames.net/post/552986/#p552986 -- Audiogames-reflector mailing list Audiogames-refl

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-16 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so so back in to the question, if I want to call something from the main script i'll have to import the main script, which, if python doesn't complain, will make an endless loop URL: https://forum.audiogames.

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-16 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so It's not an include file.  The only other languages that do things how BGT does here are C and C++.But you're overcomplicating it.  If you have a myfile.py next to your main.py then you can import my

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-16 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so aaa, i'm so confused, so the module is actually just a storage of variables, classes, and functions that can be accessed by openning the storage and take the thing we nead, its not an actuall part of the program like i

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-16 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Imports are explicit. If you import module A in module B, you cannot use module B in module A unless you import it. As for your previous question, that is what I’m saying to you. Main scripts are designed to be, well,

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-16 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Imports are explicit. If you import module A in module B, you cannot use module B in module A unless you import it. As for your previous question, that is what I’m saying to you. Main scripts are designed to be, well,

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-16 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so I have a lot of questions about modules so if you can point me to a place where I can learn more about them it'll be cool, I already googled it but didint found good results, but 1 more question though, so if I want

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-16 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so I mostly nead to know that to be able to access variables from the main script URL: https://forum.audiogames.net/post/552940/#p552940 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-16 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so @149 nope, my main script contains, the main function, moste of the variables, the game function which handels moste of the game stuf like walking etc, and some other functions related to the game URL:

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-16 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so That is generally not advisable since your main script is what starts your program. URL: https://forum.audiogames.net/post/552934/#p552934 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukogl

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-16 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so hi all, so to call a function from a module.  I tipe module.functionname, but what if I want a module to call something from my main script URL: https://forum.audiogames.net/post/552930/#p552930 -- Audiogames-refl

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-04 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so I know this is a tad bit late to the talk, but thought I'd throw it out there anyways.Py2EXE actually makes quite small exe files. But if you use that, you want to make 200 percent sure hat your code is cythonized,

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-04 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so @145, fair enough, though zip() does make things easier once you do get comfortable with iterators. (FP in general is really nice.) URL: https://forum.audiogames.net/post/548773/#p548773 -- Audiogames-reflector ma

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-04 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so @144Zip works with any number of iterators as-is, but they're asking about the typical O(n^2) collision algorithm everyone starts with, and aren't fully comfortable with the idea of an iterator yet in the first

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-04 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so @142 you could also use zip(). However, note that if your combining more than 2 iterators you can get really, really complex zip() calls (like, 2-3 levels of nesting at least). I wonder if there's something like

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-04 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so @142Probably not at your level of programming experience, but if objects are only 1 tile you can put them all in an array, then do myarray.sort(key = lambda o: o.position).  Then for each index in the array the next obje

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-04 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so so is there anyway to avoid nested for loops? I know they can lag so much, here is a testso if I want to se if a sertin object has reached the sekond object location I do something like that:for i in object: for i2 in o

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-03 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so @139that's kind of a bug on Lucia's side then.  My guess is they don't check before they decide to use it.  Again, I'd open an issue against them, it should throw something that's

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-03 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so You can tell pyinstaller to include binary items in your executable, but then you have to code your executable to know that. URL: https://forum.audiogames.net/post/548453/#p548453 -- Audiogames-reflector mailing

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-03 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so You can tell pyinstaller to include binary items in your executable, but then you have to code your executable to know that. (Side note: I don't trust the cryptography in pyinstaller, especially given that it didn

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-03 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so oh my godi'm sorry yall for annoying you, there was a sound missing, didint thot it can do all of that URL: https://forum.audiogames.net/post/548427/#p548427 -- Audiogames-reflector mailing list Audiogames

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-03 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Make sure that all of the required assets, such as sounds, are in the same directory as your executable. They don’t get copied automatically. URL: https://forum.audiogames.net/post/548420/#p548420 -- Audiogames-refl

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-03 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so @35 I have em all URL: https://forum.audiogames.net/post/548386/#p548386 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/lis

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-03 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so @134I'd open an issue against the Lucia github repository if you can't figure it out. URL: https://forum.audiogames.net/post/548385/#p548385 -- Audiogames-reflector mailing list Audiogames-refle

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-03 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so You need the accessible_output_2 and sound_lib folders in your directory. The ones with the DLL's. URL: https://forum.audiogames.net/post/548384/#p548384 -- Audiogames-reflector mailing list Audiogames-reflector@

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-03 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so here is the error:its only in the compiled versionTraceback (most recent call last):  File "treecrasher.py", line 79, in   File "treecrasher.py", line 62, in main  File "site-packages\lucia\audio\ba

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-03 Thread AudioGames . net Forum — Developers room : bgt lover via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so yeah, that happens with pyinstaller and, quite francly, with every python packaging tool out there. You might wander why this happens? well, the basic thing is that, when tools like pyinstaller "compile", so to

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-03 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Okay? So fix the error? Pyinstaller does make big exe files. I don't know exactly what you want us to tell you. URL: https://forum.audiogames.net/post/548314/#p548314 -- Audiogames-reflector mailing list

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-07-03 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so so I installed pyinstaller, did everything neads to be done to compile a script but...it output'd a 31 mb file while the hole script is 2 kb, and not just that, the 31 mb file doesn't eavin run, it gives a fa

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-26 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so You'll probably want to read a tutorial on Python modules,  but if you do this:import myfileThen you do this:myfile.my_function()If you do this:import my_function from myfileTHen:my_function()works fine.  You should al

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-26 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so You'll probably want to read a tutorial on Python modules,  but if you do this:import myfileThen you do this:myfile.my_function()If you do this:import my_function from myfileTHen:my_function()works fine.  You should al

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-26 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so so I got a questionfirst sorry for reviving this but it dont worth creating a new topic just for itthe question is:if I have a seprit file that has some functionsand I import itto use the functions inside do I nead to

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-11 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so I believe that Lucia does allow you to use open al, theoretically. However, it’s quite buggy and I never got it to work right. I recommend reading through this post and beyond to get some useful links to a wrapper which M

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-11 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so I believe that Lucia does allow you to use open al, theoretically. However, it’s quite buggy and I never got it to work right. I recommend reading through this post and beyond to get some useful links to a rapper which M

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-11 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so so, a question is cominghow to use opan al in lucia, I know its pocible since there are files with lucia about open al, and from I understand open al is a 3d sound cystom, can I use it with sound pool or how URL:

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-11 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so @124, amerikranian has  very useful guides in the artikels room, page 2, read the 3 parts, and then check out his lucia exambles in his signicher, it really helps URL: https://forum.audiogames.net/post/539967/#p5

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-10 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so My signature or the guides I wrote in the articles room could be a good place to start if you’re looking to create games. URL: https://forum.audiogames.net/post/539853/#p539853 -- Audiogames-reflector mailing

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-10 Thread AudioGames . net Forum — Developers room : matt1211 via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Hi. I have some python questions as well, and since this is already a pretty big topic about learning python, figured I'd ask here rather than creating a new one.I was wondering where I could look to learn more about

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-10 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so while loops are faster than for loops, why are peaple useing for loops thenso the first code gives me timer is elapsed 1.999755859375 URL: https://forum.audiogames.net/post/539551/#p539551 -- Audiogames-reflector ma

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-10 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so oh, thanks URL: https://forum.audiogames.net/post/539483/#p539483 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audio

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-10 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so That is correct. The only time you really use the integer approach is when working with multiple lists. URL: https://forum.audiogames.net/post/539478/#p539478 -- Audiogames-reflector mailing list Audiogames-refl

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-10 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so oh? I se,  so if we dofor i in trees:so, i will be a tree?if not how we could  treet it like a tree theni'm sorry but that's new to me, sorry for spamming questions URL: https://forum.audiogames.net/post/

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-10 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Right, but it also gives clear examples of looping through a list directly rather than changing the index to an integer. URL: https://forum.audiogames.net/post/539463/#p539463 -- Audiogames-reflector mailing

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-10 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so cmon 118, I did read it again and that how I knoo I should of used range(len(bla)) URL: https://forum.audiogames.net/post/539417/#p539417 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukogl

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-10 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so cmon 118, I read it again and that how I knoo I should of used range(len(bla)) URL: https://forum.audiogames.net/post/539417/#p539417 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-09 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Please go read post 99. Please. I wrote it for a reason. URL: https://forum.audiogames.net/post/539305/#p539305 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabah

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-09 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so if the range methid be useless i'll be scrood then I dont really know of an other way URL: https://forum.audiogames.net/post/539286/#p539286 -- Audiogames-reflector mailing list Audiogames-reflector@

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-09 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so That's fine, but you could have just used i directly instead of making i be an integer and indexing into map yourself.  Until you understand this, you'll keep having these issues, and you'll have an extr

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-09 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so thanks! I got it to work by doing:for i in range(len(map)) URL: https://forum.audiogames.net/post/539283/#p539283 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabah

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-09 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Well, to be honest, if you have a thing that's made of lists, dicts, ints, floats, and strings only, you can save yourself a lot of trouble and:import json print(json.dumps(thing))And to read/write JSON to a file

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-09 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so ok here is the code I tryed to make a simple thing to make a map cystom, a very simple one, and I think I got it? map=[] def platform(minx,maxx,miny,maxy,minz,maxz,tilename): map.append(str(minx)+":"+str(max

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-09 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so ok here is the code I tryed to make a simple thing to make a map cystom, a very simple one, and I think I got it? map=[] def platform(minx,maxx,miny,maxy,minz,maxz,tilename): map.append(str(minx)+":"+str(max

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-09 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so oh? I didint thot arrays are normily cant be strings..., in bgt we can just do string[] URL: https://forum.audiogames.net/post/539263/#p539263 -- Audiogames-reflector mailing list Audiogames-reflector@sabah

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-09 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Lists are arrays. If you want to do what you're calling string lists, use a dict:x = dict() x["foo"] = 5Or:x = { "foo": 5, "bar": 12, "the_player": player, }Iterating

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-09 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so arg! TypeError: list indices must be integers or slices, not str, that's no good! so I cant make string lists? URL: https://forum.audiogames.net/post/539259/#p539259 -- Audiogames-reflector mailing list

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-08 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so i use pyinstaller. but it is very symple. you can encript your bite code with a key then it is not easy to retrieve your code. URL: https://forum.audiogames.net/post/538930/#p538930 -- Audiogames-reflector mailing

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-08 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so If you’re looking for code protection, Cython  is your best bet. URL: https://forum.audiogames.net/post/538706/#p538706 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabah

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-08 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so so is nuitka good with compiling python scripts? I mean is decompiling with it is as easy as pyinstaller, if not it will be great, I guess? URL: https://forum.audiogames.net/post/538690/#p538690 -- Audiogames-refl

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-08 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so so is nuitka good in compiling python scripts? I mean is decompiling with it is as easy as pyinstaller? if not it will be great, I guess? URL: https://forum.audiogames.net/post/538690/#p538690 -- Audiogames-refl

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-07 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so not like that, I ment something like the followinglets asoom I have a function that do what neads to be done to make a new platform, it takes 5 poramitors, minx, maxxx, miny, maxy, tilenameand I do the followingpla

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-07 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so How you handle the data can have an effect on the kind of response or effect your going for. In a game like Zelda, you can walk fluidly across many tiles in a non-even way, whereas in a roguelike you snap from one tile t

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-07 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so no just topdown, like putting a sand platform at from x 0 to x 100 and from y 10 to y 30, you got the idea URL: https://forum.audiogames.net/post/538513/#p538513 -- Audiogames-reflector mailing list Audiogames-refl

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-07 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so When you say "platform", in what way do you mean? Like a free moving game like Zelda, or like a snap like tile based roguelike? Is it a side scroller or top down? URL: https://forum.audiogames.net/post/

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-07 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so hey all, I didint spammed questions in a while sowhat is the best way to make a map cystom? that's, making the player able to walk on difrint platformsI have a half completed idea in my mind but it cant be done I thi

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-06 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Right. You should have gotten everything you needed from post 99. Feel free to ask for clarification, but I really think I explained it accurately enough to make you understand. URL: https://forum.audiogames.net/post/5

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-06 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so my way is like thatfor i in trees:and then the code go's here URL: https://forum.audiogames.net/post/538089/#p538089 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-06 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so @Meatbag, how does your for loop look when looping through trees? Consider the following example:x = [1, 2, 3, 4, 5, 6, 7, 8, 9] for i in x: print(i)What do you think this code will produce as it's output? If yo

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-06 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so @Meatbag, how does your for loop look when looping through trees? Consider the following example:x = [1, 2, 3, 4, 5, 6, 7, 8, 9] for i in x: print(i)What do you think this code will produce as it's output? If yo

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-06 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so for exampleimport luciaimport syslucia.initialize()lucia.ShowWindow()while 1:    lucia.process_event()    if lucia.key_pressed(lucia.K_Q):        lucia.quit()        sys.exit()    lucia.pygame.time.wait(5)this should fi

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-06 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so oh just use import sys and you put sys.exit above or below where you called your lucia.quit() URL: https://forum.audiogames.net/post/538050/#p538050 -- Audiogames-reflector mailing list Audiogames-reflector@sabah

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-06 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so ok sorry for double posting and spamming questions, I figuered out the error above but got a new one, so I have a list that holds the trees, and a for loop to loop throo them, but 1 thing's rong here, in side th

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-06 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so so what do this error means?pygame.error: video system not initializedand how to fix it? i'm useing lucia URL: https://forum.audiogames.net/post/538035/#p538035 -- Audiogames-reflector mailing list Audiogames

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-05 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Edsharp is all well and good until you start discovering that it crashes at the drop of a hat if you try to do anything advanced and is missing basic features like the ability to save an empty file.The right answer is to

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-05 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Something else is your collision detection:if me.x<0: me.x==0 if me.y<0: me.y==0 if me.x>30: me.x==30 if me.y>30: me.y==30I

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-05 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so oh thanks URL: https://forum.audiogames.net/post/537621/#p537621 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audio

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-05 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so timer is a class. When declaring classes you need parenthesies. walktimer = timer.timer()And as I said, Lucia does have a built in speech and timer module if you ever want to clean up your directory URL:

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-05 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so actually I notessed that and fixed it, here is the codefrom random import randintfrom random import randrangeimport timerfrom speech import speakimport luciaimport syserrors_log = open("errors.log",

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-05 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so actually I notessed that and fixed it, here is the codefrom random import randintfrom random import randrangeimport timerfrom speech import speakimport luciaimport syserrors_log = open("errors.log",

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-05 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so It should be walktimer, not walktime. URL: https://forum.audiogames.net/post/537586/#p537586 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cg

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-05 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so stil same...Traceback (most recent call last):  File "C:\Users\ahmed\projects\python lirning\treecrasher.py", line 50, in     main()  File "C:\Users\ahmed\projects\python lirning\treecrasher.py",

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-05 Thread AudioGames . net Forum — Developers room : ashleygrobler04 via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so that is why you should make use of >= and not only > URL: https://forum.audiogames.net/post/537582/#p537582 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https:/

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-05 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so ok found the error useing the logsTraceback (most recent call last):  File "C:\Users\ahmed\projects\python lirning\treecrasher.py", line 50, in     main()  File "C:\Users\ahmed\projects\python lirning\tree

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-05 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so I do have speech history and I use it already to see any errors that may appear.  but I can't find any error with that URL: https://forum.audiogames.net/post/537563/#p537563 -- Audiogames-reflector mailing list

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-04 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so bro i suggest you to use EdSharp text editor and compile from there so that it will show all the errors as screen reader output after you exit your game. by mistake if you missed it you can view by speech history. you can g

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-04 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so You should go learn how to review the screen with NVDA.  The error is happening, but since the command prompt is not in focus, it doesn’t get read out by the screenreader. URL: https://forum.audiogames.net/post/537456/#p5

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-04 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Sorry for double posting, but lucia has speech and timer built in as well so you don't need external modules for those URL: https://forum.audiogames.net/post/537441/#p537441 -- Audiogames-reflector mailing list

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-04 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Heya meetbag. Try thisimport syserrors_log = open("errors.log", "a")sys.stderr = errors_logThis should log errors to a file if they're unable to be caught by the terminal. Hope this helped URL

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-04 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so The game can write to the console even though it's in a separate window.  If you do python main.py from a command prompt and an error happens, it goes to the console, and you need to check there afterword.  If you

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-04 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so sure, pygame will install with lucia,  I have it URL: https://forum.audiogames.net/post/537433/#p537433 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukogl

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-04 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Hm. Do you have pygame installed? Lucia uses it as a dependancy for keyboard input. URL: https://forum.audiogames.net/post/537432/#p537432 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukogl

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-04 Thread AudioGames . net Forum — Developers room : Meatbag via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so stil same, when it runs it makes a new windo for the game so I dont think it will solv something URL: https://forum.audiogames.net/post/537430/#p537430 -- Audiogames-reflector mailing list Audiogames-reflector@sabah

Re: I want to lirn pithon but pithon doesn't want me to do so

2020-06-04 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to lirn pithon but pithon doesn't want me to do so Are you running this from a command prompt or by clicking the .py file?  If the latter, run it from a command prompt and I bet there will be. URL: https://forum.audiogames.net/post/537429/#p537429 -- Audiogames-refl

  1   2   >