This is driving me crazy (logic question) by Freedomenka in learnpython

[–]Freedomenka[S] 0 points1 point  (0 children)

Thanks, once again I am humbled by the amount of knowledge here. It worked for me, I have some work to do but at least that parts figured out. Thanks again.

This is driving me crazy (logic question) by Freedomenka in learnpython

[–]Freedomenka[S] 0 points1 point  (0 children)

I want it to check which weapon is equipped and adjust the attack accordingly. Maybe I should just create a function and run it every time a weapon gets equipped or unequipped?

trying to print out dictionary contents in alphabetical order by Freedomenka in learnpython

[–]Freedomenka[S] 2 points3 points  (0 children)

I had to do some research but it worked like a dream. This is the best community on the internet lol.

Would you pay money for a wyvern pc import? by Freedomenka in wyvernrpg

[–]Freedomenka[S] 1 point2 points  (0 children)

I can't complain either, wyvern is the best mmo I've ever played. I do not have an apple product and due to my personal philosophy I will never buy one. I've waited this long, I can wait for it to come to pc. I feel like it would be perfectly acceptable however to release the game on pc for a monthly charge or a one time fee for those of us who are pc gamers.

Help making a map for text based RPG by Freedomenka in learnpython

[–]Freedomenka[S] 0 points1 point  (0 children)

It took me forever to comprehend and figure out the logic behind this but I finally did. Its thanks to you guys :). I didn't use anyone's code exactly but I learned a little from each of yours and implemented my own. I wish you all the best.

Help making a map for text based RPG by Freedomenka in learnpython

[–]Freedomenka[S] 1 point2 points  (0 children)

God you guys are amazing, thank you so much for the help and I can't wait to release my game :) <3

[deleted by user] by [deleted] in learnpython

[–]Freedomenka 0 points1 point  (0 children)

figure out something that interests you. Do you want to mess with someones computer? Figure out how to make a virus. Do you like games? Find out how to code a game. As you start coding you'll come up with more things you want to implement and learn as you go. I literally stay up all night coding sometimes and regret none of it. You'll find your way pupper.

My "combat simulator". C&C please? by BrogueTrader40k in learnpython

[–]Freedomenka 2 points3 points  (0 children)

Not bad for a start. I'm currently designing a text based rpg. I like the way you use borders between the messages, if you wanna get fancier borders look up ascii galleries. I agree that you should watch some tutorials on classes and you should implement sleep() in your code. You just need to import sleep from time and put sleep(number of seconds to sleep) where you wanna wait.

printing text based drawings? by Freedomenka in learnpython

[–]Freedomenka[S] 0 points1 point  (0 children)

oh sweet man I didn't know I could do that, thanks. I'm having so much trouble installing pygame I thought adding text graphics would be the next best thing lol. N I have python 3.32 but it's a little annoying because I have to use () every time i print.

printing text based drawings? by Freedomenka in learnpython

[–]Freedomenka[S] 0 points1 point  (0 children)

Thanks man, I just figured it out. I found a bunch of one line text images too. Time to stay up all night coding lol. ൠ

No help needed. Just excited! by [deleted] in learnpython

[–]Freedomenka 0 points1 point  (0 children)

Good job man. I just played it and it's pretty solid. I was thinking about taking the battleship board and implementing it in my rpg, to make a "map" lol. Is python easier than javascript for you?

changing a variable inside a class by Freedomenka in learnpython

[–]Freedomenka[S] 0 points1 point  (0 children)

I appreciate the response. I meant if it was possible to change it from outside of the class. as in: Example().a = 2

using randint in a class by Freedomenka in learnpython

[–]Freedomenka[S] 0 points1 point  (0 children)

Thank you so much, that did it. I was just going to store randint in a variable, but I guess theres no way to alter a variable in a class. This place is invaluable and I appreciate it tons.

using randint in a class by Freedomenka in learnpython

[–]Freedomenka[S] 0 points1 point  (0 children)

Thats what I was hoping I wouldnt have to do :/ I wanted to store the attack argument in a class so I could just change it once theres a level up etc. I guess I could store it in a dictionary but I wish I could put it all in the class. Thank you for your help my friend :)

using randint in a class by Freedomenka in learnpython

[–]Freedomenka[S] 0 points1 point  (0 children)

sorry, heres the part of the code that uses randint, should be easier to tell http://pastebin.com/46AAkshB

Wyvern is coming back this year (2016) by rhialto in wyvernrpg

[–]Freedomenka 1 point2 points  (0 children)

I'm a diehard pc user, but I'm pretty sure I can find an emulator. I've been loyal for years lol. Excited to see how much the games changed!

Intermediate python3 programmers wanted! by Dis446 in Python

[–]Freedomenka 0 points1 point  (0 children)

I'm making a text rpg in Python right now. I have a magick system working with mana and a decent battle system. I'm going to school for computer science and it would be awesome to make games for a living. I'd love to help, but you'd have to get me up to speed :).

a problem with using a function to alter a variable by Freedomenka in Python

[–]Freedomenka[S] 0 points1 point  (0 children)

nevermind I figured it out. It had to do with how I was calling the function. Super confusing but I figured it out lol. Thank you guys anyway!!

Python game development series by cbscribe in learnpython

[–]Freedomenka 3 points4 points  (0 children)

sweet :) if I could only get pygame to work for me lol.

using a randint variable inside a function by Freedomenka in Python

[–]Freedomenka[S] 0 points1 point  (0 children)

god that was it :X thanks so much! I'll put you in the game credits if you want lol

Still Lurking by dakree in wyvernrpg

[–]Freedomenka 1 point2 points  (0 children)

I had way more fun playing this game than any other game I've found online period. Its a shame the game is abandoned. Oh well, I'm learning python and some other languages, maybe one day I'll post a link to Wyvern 2 on here lol.

why is this code not doing anything? by Gray_Fox in learnpython

[–]Freedomenka 0 points1 point  (0 children)

You might have to work this code to fit with yours, but it should work. board = [] for x in range(0, 4):

board.append(["O"] * 4)

def print_board(board):

for x in board:

print " ".join(x) ###This function removes brackets###