Author Topic: Yet Another JoeBot  (Read 15783 times)

0 Members and 1 Guest are viewing this topic.

Offline Joe

  • B&
  • x86
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Yet Another JoeBot
« on: February 25, 2005, 06:21:10 pm »
This time, its in Java. Seeing as how all the source is going to get out in asking for help anyway, this is going to be open source from the start.


Main.java
Code: [Select]
// Created on Feb 25, 2005
// @author JoeTheOdd

package Bot;
import util.Constants;

public class Main {
public static void main(String[] args)
{
// Display "loaded" message
System.out.println("JoeBot " + version + " loaded.");;
}
}

Constants.java
Code: [Select]
// Created on Feb 25, 2005
// @author JoeTheOdd

package util;

public class Constants
{
// Version Number
public static String version = "0.1";

// VB Declarations. :(
public static String vbNullString = "";

// Packet ID's
public static int SID_NULL = 0x00;
public static int SID_AUTH_INFO = 0x50;
public static int SID_AUTH_CHECK = 0x51;
}
« Last Edit: February 25, 2005, 06:57:14 pm by InsaneJoey[e2] »
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline Newby

  • x86
  • Hero Member
  • *****
  • Posts: 10877
  • Thrash!
    • View Profile
Re: Yet Another JoeBot
« Reply #1 on: February 25, 2005, 06:24:31 pm »
Good luck! :)
- Newby
http://www.x86labs.org

Quote
[17:32:45] * xar sets mode: -oooooooooo algorithm ban chris cipher newby stdio TehUser tnarongi|away vursed warz
[17:32:54] * xar sets mode: +o newby
[17:32:58] <xar> new rule
[17:33:02] <xar> me and newby rule all

I'd bet that you're currently bloated like a water ballon on a hot summer's day.

That analogy doesn't even make sense.  Why would a water balloon be especially bloated on a hot summer's day? For your sake, I hope there wasn't too much logic testing on your LSAT. 

Offline Joe

  • B&
  • x86
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: Yet Another JoeBot
« Reply #2 on: February 25, 2005, 06:45:35 pm »
Thanks.
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline Joe

  • B&
  • x86
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: Yet Another JoeBot
« Reply #3 on: February 25, 2005, 06:58:24 pm »
Omg help! String version cannot be resolved! (The loaded message in Class Main.java)
I'd personally do as Joe suggests

You might be right about that, Joe.