Page 1 of 5
Getting started: PySnip/pyspades server software
Posted: Tue Nov 13, 2012 10:12 pm
by izzy
The PySnip project (formerly known as pyspades) provides an open and feature-packed server implementation for Ace of Spades Classic and allows for great customizability with extensions and scripts.
More info:
http://www.buildandshoot.com/viewtopic.php?f=2&t=310
Main project page:
https://bitbucket.org/NateShoffner/pysnip
Install
Windows binary:
https://bitbucket.org/NateShoffner/pysnip/downloads
Linux:
Must be built from
source:
Configure
http://code.google.com/p/pysnip/wiki/ConfigDotTxt
In-game commands
http://code.google.com/p/pysnip/wiki/Commands
Re: Getting started: pyspades repo/download
Posted: Sat Nov 17, 2012 3:21 am
by HoboHob
This is lame, somebody post!
Re: Getting started: pyspades repo/download
Posted: Sat Nov 17, 2012 6:53 am
by a girl
Erm.... what happened to the links?
Oh I see Mat^2 AKA Jagex killed it. Time for some mirrors I guess.
Re: Getting started: pyspades repo/download
Posted: Sat Nov 17, 2012 11:32 am
by [BP]TheKeyToaster
Hii,
These links are dead.
That night, I do a tutorial for linux install, no fail ;)
"Sorry for my very bad english level :)"
Have a nice day ! :)
Re: Getting started: pyspades repo/download
Posted: Sat Nov 17, 2012 11:38 am
by EssigGurkenFred
Hey izzy, are you guys going to reupload all the pyspades stuff on your servers?
Re: Getting started: pyspades repo/download
Posted: Mon Nov 19, 2012 5:14 am
by danhezee
EssigGurkenFred wrote:Hey izzy, are you guys going to reupload all the pyspades stuff on your servers?
We plan on having a new and improved feature server up soon with better selection of maps and scripts that arent broken.
Re: Getting started: pyspades repo/download
Posted: Mon Nov 19, 2012 12:30 pm
by Enari
http://forum.minit.nu/viewtopic.php?f=27&t=30&p=82#p82
If you need to download pyspades before Dan fixes that cool repo thingy you could download it there <3
Re: Getting started: pyspades repo/download
Posted: Wed Nov 21, 2012 1:15 pm
by EssigGurkenFred
Enari wrote:http://forum.minit.nu/viewtopic.php?f=27&t=30&p=82#p82
If you need to download pyspades before Dan fixes that cool repo thingy you could download it there <3
Thanks for this.
Re: Getting started: pyspades repo/download
Posted: Mon Nov 26, 2012 5:17 pm
by LinktersHD
What's the link to a more updated version of Pyspades now?
Re: Getting started: PySnip repo/download
Posted: Sat Dec 15, 2012 6:14 pm
by izzy
All links in first post have been updated.
Re: Getting started: PySnip repo/download
Posted: Sun Jan 06, 2013 5:24 pm
by greenelf
I am getting the following error:
Code: Select allTraceback (most recent call last):
File "run.py", line 87, in <module>
from pyspades.server import (ServerProtocol, ServerConnection, position_data,
File "../pyspades/server.py", line 20, in <module>
from pyspades.protocol import BaseConnection, BaseProtocol
File "../pyspades/protocol.py", line 19, in <module>
from pyspades.bytes import ByteReader, ByteWriter
ImportError: No module named bytes
Can someone help me? I am running Ubuntu server.
Re: Getting started: PySnip repo/download
Posted: Mon Jan 07, 2013 11:47 pm
by colorpinpoint
greenelf wrote:I am getting the following error:
Code: Select allTraceback (most recent call last):
File "run.py", line 87, in <module>
from pyspades.server import (ServerProtocol, ServerConnection, position_data,
File "../pyspades/server.py", line 20, in <module>
from pyspades.protocol import BaseConnection, BaseProtocol
File "../pyspades/protocol.py", line 19, in <module>
from pyspades.bytes import ByteReader, ByteWriter
ImportError: No module named bytes
Can someone help me? I am running Ubuntu server.
Are you sure you did "sh build_all.sh"?
Re: Getting started: PySnip repo/download
Posted: Thu Feb 28, 2013 7:20 am
by MediumShadow
Im able to host the server woot!

Re: Getting started: PySnip repo/download
Posted: Wed Mar 06, 2013 9:38 pm
by LinktersHD
greenelf wrote:I am getting the following error:
Code: Select allTraceback (most recent call last):
File "run.py", line 87, in <module>
from pyspades.server import (ServerProtocol, ServerConnection, position_data,
File "../pyspades/server.py", line 20, in <module>
from pyspades.protocol import BaseConnection, BaseProtocol
File "../pyspades/protocol.py", line 19, in <module>
from pyspades.bytes import ByteReader, ByteWriter
ImportError: No module named bytes
Can someone help me? I am running Ubuntu server.
Looks like you haven't built it or it's didn't build properly.
Do
and then
Re: Getting started: PySnip repo/download
Posted: Wed Mar 06, 2013 10:24 pm
by topo
There is no need to run build_all.sh directly after running buil
d.sh
Code: Select all$ cat build.sh
python build.py build_ext --inplace
cd enet
python setup.py build_ext --inplace
Code: Select all$ cat build_all.sh
find . -type f -name "*.so" -o -name "*.pyc" -o -name "*.pyd" | xargs rm -f
rm -rf build/*
python build.py build_ext -f --inplace
cd enet
python setup.py build_ext -f --inplace