Search This Blog

Friday, June 23, 2017

I realize it has been a while but I wanted to bring the PyCrafters up to date. We got rid of that horrible GGServers account and restarted with AWS (amazon web service). The servers going down for days at a time with no reason why or no notification from the hosting company is over. I feel like such a weight has been lifted from our shoulders. The control of the new server is much better.
As of this morning I got the new security worked out and we can now run scripts from home in the Minecraft game again. Make sure you are using /lpy instead of /py so newer students don't break your script as it is running. 
If your local python script isn't running or throwing an error let me know and I will assign you a new security key.

So... YAY!!! Kate-Bot is back online! Feel free to go to the forum and read her code to see if you can add anything to her conversations.



Also wanted to mention that we upgraded to 1.11.2 and are now able to stay updated as Forge and RBJ are also updated.


The forum that _GrimmCreeper_  started for us is starting to take off. Feel free to join it and start asking questions that you need answers to.
Remember that we also go around the country teaching Python to children and there is also a place for normal Python questions there as well.

If you need the new IP address feel free to send in an e-mail to Kate or Victoria and they can reply with it.



Friday, March 31, 2017

Hi all! This is going to be a quick post to tell you about a forum I just made, where you can ask questions about python. Hopefully we can all benifit from this! You can visit it by clicking here. As always if you have any questions feel free to ask me in the comments!

Monday, March 27, 2017

A who is online notifier.

So I know that people have other things to do other than playing on Minecraft all the time.
So wouldn't it be cool to know if someone is online or not by a computer beep instead of opening the game and checking?
Here is a simple 'beep' function when someone gets on the pycraft server.
1. You will need to put the PyCraft Server IP in the IP part of this script.
2. you need a security key from support@homeschoolhackers.org to run it.


#Check for ppl on the server.
from mc import *
import winsound
import time
mc=Minecraft.create('PYCRAFT_IP')

while True:
    try:
        ctime1= time.ctime()
        EID = mc.getPlayerEntityIds()#returns list [788195]
        print(ctime1,EID)
        Freq = 2500 # Set Frequency To 2500 Hertz
        Dur = 1000 # Set Duration To 1000 ms == 1 second
        winsound.Beep(Freq,Dur)
        time.sleep(20)
    except:
        time.sleep(60)
        ctime1= time.ctime()
        print(ctime1+'-No one is on')
        continue

Saturday, March 25, 2017

Minecraft Chat-bot built with Python

With the pollChat() option in the rbj mod I created a chat-bot named after our assistant in the office Kate. Meet <Kate-Bot> she will go by other names when you need her help. 
She is a work in progress mainly by myself and the students that want to get involved. I have instructions on easy how to's to get started in adding to the project.

To connect to the server you need to enter the IP of our server in the () of Minecraft.connect() or leave blank to use in your game.
It was easy to watch the chat go by with:

while True:
    chat = mc.events.pollChatPosts()
    print(chat)

It would print:
ChatEvent(ChatEvent.POST, 788319, hello)

I couldn't help but want to clean the return up.

chat = mc.events.pollChatPosts()
        if len(str(chat)) > 23:
            log.append(chat)
            ncha=str(chat)
            ncha1 = ncha[35:]
            ncha2 = ncha1[:-2]
            print(ncha2)

We have some students that call out for 'server' to get the attention of Kate or one of us so I thought about building a response to the single string 'server'
so with the following if statement, KateBot was born.

if ncha2 == 'server'"
    mc.postToChat('Please leave a message and server will get back with you')

Since that point I wanted to make her more interactive and fun to talk to so I have a never ending job of testing and trying new responses to questions.

For instance I have a trigger word string, and a response list to choose from.
GREETING_KEYWORDS = ("hello", "hi", "greetings", "sup", "what's up",)
GREETING_RESPONSES = ["<Kate-Bot>'sup PyCrafter", "<Kate-Bot>hey", "<Kate-Bot>*nods*", "<Kate-Bot>Yay PyCraft!!!"]

Then my definition for the greeting:
def greeting():
    if ncha2.lower() in GREETING_KEYWORDS:
        return mc.postToChat(random.choice(GREETING_RESPONSES)) 

So I welcome any submission to the katebot code foundation by either suggesting a trigger and response to it or writing a definition like:


def KB():
    KB_NAMES =('kbot', '<kate-bot>', 'katebot', 'kate-bot', 'kb')
    KB_RESPONSES = ['<Kate-bot>Yo!!', '<Kate-bot>Can I help you?']
    if ncha2.lower() in KB_NAMES:
        return mc.postToChat(random.choice(KB_RESPONSES))

Friday, March 17, 2017

Coding Tips & Tricks

Coding Tips & Tricks? Yes. Hopefully, these will help you keep things organized, and find bugs.


  • Comments. Comments are your best friend. They can help you refine or edit your code, as well as help others edit or refine your code. It is also helpful to someone who is reviewing your code. As you can see in this example, I have placed comments on nearly every line. The lines marked as "Wall 1" or "Wall 2" may seem unclear, but I understand what they mean, and if you have run this yourself you will know that it builds the walls in that order with a short time delay between, so all you have to do is count the walls as it builds them, to see which line builds which wall.
 
this example is a library program I wrote to keep track of all my books, and as you can see there are very few comments. I have put headings, but not comments on each line, and I can see many, many, many places where I should have put comments when I wrote this program.


  • Another thing you can do to help keep your code organized is leave blank spaces between parts of your code.

As you can see from this image, I have drawn lines around "blocks" of code. These are totally subjective. This is just the way I like to lay out my code, but you should change that to fit your needs.

  • The rubber duck method. Yes, this is a real thing. The rubber duck method involves using a rubber duck, toy, stuffed animal, or sibling/parent, to explain your code to. You just explain the code, line by line, to your rubber duck, and this will hopefully help you catch bugs. Now using a rubber duck is ideal, because when you find a bug and say "HOW COULD I NOT SEE THAT?!?!?!" And get mad, and want to throw something (no you are not alone in this feeling) you can throw the rubber duck, while your sibling/parent might object to being thrown. Please pardon the following pun.
Feel free to ask questions, suggest a post, or suggest something else to add to this post!




Friday, March 3, 2017

About: Mods

In case you don't know what a "mod" is, simply put it is a modification to the game. In this instance specifically, mods for Minecraft. I will be talking about one mod in particular in this post: Decocraft. Decocraft has just been installed on our creative server, and some people have been having issues joining after it was added so I will talk a little but about how to install the mod, and then a little about the mod itself and how to use it.

First of all how to install a mod. This is pretty simple, and if you already have Forge and the RJM installed, this should be really easy. I will link a video and give worded instruction so you can choose whichever way you like best. Here is the link to a video made by one of the students, and moderators, heimerdawg. Now as for the written version (Windows version).

  1. Go to this Dropbox link and download "forge-1.10.2-12.18.3.2239-installer-win(1).exe"
  2. Double click the file and select "Install Client" 
  3. After the files download, go back to the Dropbox link and download                         "Decocraft-2.3.4_1.10.2.jar"
  4. Locate your ".minecraft" folder by typing "%appdata%" in the search bar in the lower left-hand corner of your desktop.
  5. You should open the folder that pops up, and find the sub-folder named ".minecraft"
  6. In your ".minecraft" folder find the folder named "mods" if you don't have a "mods" folder, simply make one by right-clicking, selecting "New", and then select "Folder". Make sure to name it "mods" no capitals.
  7. Inside this "mods" folder make another folder named "1.10.2"
  8. Drag and drop the "Decocraft-2.3.4_1.10.2.jar" file you downloaded before into this new "1.10.2" folder.
  9. Load minecraft and select your Forge 1.10.2 profile.
  10. Press play. Lots of things will happen that don't happen when you load normal minecraft. This is normal, so don't freak out and think your minecraft is broken, or you got a virus from this. You WILL NOT get ANY viruses from these downloads. I personally have them, and they are clean.
  11. After it loads, you should have a "Mods" button on the title page. Click this and make sure you have the correct mods installed. There should be one called "Decocraft" and another named "PTRModelsLib" There will be some others too. These are part of Forge itself and don't really modify the game very much, they are just necessary for the loading of the other mods you install. 
  12. You should be able to now play on the creative server!
  13. You can also play on your own worlds, but make sure that if you build with any items from the mod, that you always load that world with the mods installed. If you don't all the items you placed that are from the mod will vanish and you can't get them back.
  14. The video will probably be easier to follow than this, so if you can't get it from this, watch the video, please.
  15. Feel free to ask for help!
Ok now onto how to use the mod! This mod isn't hard to use. All it adds are a bunch of decorations. Basically, you just look in your inventory and find the item you want to use. Hold it in your hand, and you will see an outline of the object. If this outline is red, something is blocking it. If its white you can place it. For more info, you can go to the mod page on the minecraft forum for more info, and a video.

Thanks for reading, and please feel free to ask questions!

Sunday, November 13, 2016

Our place on IRC.rizon.net

Since I can not get to most questions and scripts until the end of my day I have set up a chat window on the rizon network. The room is called #PyCraft.

The actual server is irc.rizon.net

Direct weblink = https://qchat.rizon.net/?channels=PyCraft


You can use a client to chat in it like

What is IRC?

In the simplest of terms, IRC is a network of chatrooms where each individual chatroom is called a channel. Channels are hosted on servers, and each server maintains its own network of channels. Using an IRC client, you can connect to a server and join the channels on that server. By doing so, you’ll be able to chat with other users who have connected to the same channels on those same servers.
IRC first arrived on the scene in 1988 and experienced its peak popularity in the late 1990s and early 2000s. Prior to the current prevalence of Internet forums and message boards, IRC was one of the best ways to foster community and chat with people of similar interests.
Today, IRC is still running strong, though it tends to be used as more of a supplement to web communities that have already been established through websites and forums.

mIRC


mIRC was once the best IRC client for Windows and still remains as one of the most downloaded and most used clients today. Having been in development for over a decade, this client is full of advanced features – like scripting – that outshine its competitors.
The downside to mIRC is that it is shareware – it comes with a 30-day free trial. When the trial runs out, you’ll still be able to use the program, but you’ll need to put up with an annoying splash screen that lasts for a few seconds every time you start up the program.

X-Chat

 


X-Chat was one of the first real contenders to mIRC. Today, it is one of the most well-known IRC clients on the web. The project is open source so not only can X-Chat be used on Windows, it can be used on Linux, too.
Like mIRC, the original X-Chat has since become shareware with a 30-day free trial. Unlike mIRC, X-Chat cannot be used past the initial 30 days. If you aren’t willing to shell out the one-time registration fee of $19.99, then you should look elsewhere.
If you like X-Chat and cannot afford to register it but wouldn’t mind using an older, stripped-down version, you may want to look into X-Chat 2. This is a free build of X-Chat for Windows meant to circumvent the shareware nature of its predecessor.

HydraIRC


HydraIRC is an IRC client that was designed to make the whole IRC experience as easy and painless as possible. Whereas IRC was once usable only by the tech-literate, HydraIRC has constantly worked towards making IRC easy for the newest beginners while still retaining the advanced settings that power-users desire.
The client is free and open source and packed full of awesome features, like themes, plugins, notifications, and reg-ex highlighting.

KVIrc

 


One of the oldest IRC clients around, KVIrc has been in development for over 10 years – and its feature set reflects the time spent in development. In particular, this client has extensive scripting support that allows for user customization. Unlike most full-featured IRC clients, KVIrc is portable, meaning it can be used without first having to install it. Run it straight off of a thumb drive if you wish.
Since KVIrc is built on the Qt GUI toolkit, it is cross-platform. In addition to running on Windows, KVIrc has official binaries for Mac, FreeBSD, and certain flavors of Linux.

Nettalk


Coming out of Germany is Nettalk, a free and open source IRC client with a smart interface built on the Windows standards. The default layout is simple and intuitive, allowing beginner IRC users to grab hold of the reins quickly with ease.
One of the great things about Nettalk is its out-of-the-box support for multiple languages – English, Spanish, Dutch, Russian, Chinese, Hungarian and German. On top of that, it has many of the features that IRC clients are now expected to have – plugin support, scripting support, easy customization, and more.

Quassel

irc clients for windows 7
The developers describe Quassel as a modern, cross-platform, distributed IRC client: modern, meaning full of the features that you would expect from an IRC client today; cross-platform, meaning available on Windows, Mac, and Linux; distributed, meaning something that is uniquely awesome.
Quassel’s defining feature is its distributed nature. As a distributed client, Quassel attaches and detaches itself from a central core that runs permanently online. The core keeps track of your session, so you can detach when you need to leave and reattach when you’re available again – and you won’t have missed a single thing!
Quassel IRC is both free and open source.

ThrashIRC

irc clients
Some might find ThrashIRC to be overly prideful because the development team has self-proclaimed their client to be the “best IRC client for Windows.” Whether or not that’s true is up to you to decide.
ThrashIRC comes equipped with all of the modern features expected of an IRC client with a few extra bonuses. The best thing it has going for itself is that it’s feature-filled while using very few system resources. No adware, no spyware, and lots of stability.
But what’s their best feature? According to their website, ThrashIRC has the “best smileys.”