Jump to content

Anarchy805 Development (CLUB)


Anarchy805

Recommended Posts

fighteronspeed: no problem you are welcome and good luck with the design.

 

on another note i think it might be time to set out some group activities for the club. tomorrow NeriesUmbra and I, shall discuss what would be fitting activities for us all to join in with.

 

I was thinking perhaps some things like areas of Graphics, Audio, Multimedia, Code, Design, General etc;

 

so we will perhaps need someone who can make some audio for a game, some spriters, dome artists for backdrops, some video workers, and designers, and perhaps some creative writers to start a simple project that the whole club can contribute to.

Link to comment
Share on other sites

  • Replies 83
  • Created
  • Last Reply

dhultzer: Yes you can make sockets ( Use sockets in ruby) but it depends entirely what it is that you want to do in it.

 

to make a simple server client that passes a message i will give an example but to help you in learning you at least need to specify what it is that you want to do.

 

here is a simple server and client code to show the socket library working simply.

 

# this is the server part of the code

require 'socket'               # load the socket libraby

server = TCPServer.open(10000)  # set the socket to listen on port 10000
loop {                         # Sdo a loop that continues non stop
 sockClient = server.accept       # Wait for a client to connect
 sockClient.puts "You are connected to the server on port 10000"  # Send a message to the client
 sockClient.puts "Connection Closed By Remote Host!" # send the disconnection message to the client
 sockClient.close                 # close the connection to the client

 

now you can connect with telnet to port 10000 on the pc running this code and it will normally output the messages and disconnect the client

or you can make your own client this is just a simple socket example so i will just make a small client that just reads data from the server and then disconnects.

 

# this is a client to be run on the same pc as the server. if you want it on a different machine then
# you will need to change the part that says local host to the IP or hostname of the server
require 'socket'      # use the socket library

hostname = 'localhost'
port = 10000

sockServer = TCPSocket.open(host, port)

while line = sockServer.gets   # Read in any lines that are sent from the server while lines are being received
 puts line.chop      # And then print them to the screen
end
sockServer.close               # Close the server socket when the reads are finnished

 

that is a very simplified socket server / client code but without knowing exactly what it is that you wish to do it is hard to help with anything in this subject as there are many programs and games that use sockets and until we get specifics there is a myriad of different things that it could be that you want help with. please try to be a little more specific in the future dhultzer. I hope at least some of this helped.

Link to comment
Share on other sites

So here it is anarchy it's not much but it's still fun.

 

tomspokemoncopy.png

 

As of now everyone in this club will get pmd one of these. There is going to be loads of different ways to lvl them up and I may make it possible to battle with these guys.

 

Couple of was to lvl them up.

 

1. every day until hatching the egg will go one step further and I will pm the new pic to you. After that it will go up 1 lvl every 2 days + 2days for every 10 lvls gained. This will be put on hold after 10 days of no posting in this club and spam does not count as a post.

 

2. Every time you get a + rep they will gain a lvl or egg stage.

 

3. I have not got this far but I will soon.

 

What will hatch from the egg is compleatly random it could be a togapi it could be a splice it could be an arcues. The balls colour is random to. I will be selling these in a shop hopefully so you can get more than one.

 

Any more updates on these things will be posted on the main post.

Link to comment
Share on other sites

Nice one NeriesUmbra. and hi members its been a while i was away doing a little business. got back now and was hoping to get some activities going but it seems like Neries has been banned for no apparent reason. might be worth trying to find out the reason as the club is going to be a little bland with just me residing in the Literary seat. Hope to see him on-line again as it will be a little boring without the graphical part of the club. Looks like it has been a bit quiet while I have been gone. now that I am back I hope to get some more time to participate in the club, It has been a bit of a busy time with general development work and off-site consultations. I will try to come on-line in the next few days with some competitions, Graphic and code.

Link to comment
Share on other sites

  • 4 months later...
It seems that Neries is still under a ban even after his ban time has expired. well I have been away for a while and not really updated the sections most of the topic has gone quiet I have been stuck doing allot of work projects lately and not had much time to keep on top of the club. it seems that not many people are interested in development thought someone might have started on a battling card game perhaps or something in the way of games based off cards made on this site. anyway going to be working on a interim network project for the next few weeks then going to post some papers about windows networking and *NIX based tools.
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.


×
×
  • Create New...