Giter Club home page Giter Club logo

bluevex's People

Contributors

callum-ramage avatar

Watchers

 avatar

bluevex's Issues

onPlayerMove

I'm trying to capture the onplayermove event, but the problem is, the
bluevex core does not provide this event.

As such, I'm getting it through the packet capture of 0f, but the playerID
in that capture, and the player ID provided by the bluevex Core don't seem
to match up.

If I'm doing something wrong, or you plan on implimenting this in  the
future, please let me know.  [email protected]

Thanks,
Nick

Original issue reported on code.google.com by [email protected] on 20 Apr 2008 at 4:45

Small bug in AddBeltItem Packet

(Copied unedited from http://redvex.d2help.com/viewtopic.php?f=12&t=7952)


Small bug in AddBeltItem Packet
by BotterX on Sat Aug 02, 2008 3:01 pm 

Line 30-33 in GameClientPackets.cs

Is:


public static byte[] Build(uint uid, ushort x, ushort y)
{
return new byte[] { 0x23, ((byte) uid), ((byte) (uid >> 8)), ((byte) (uid
>> 0x10)), ((byte) (uid >> 0x18)), ((byte) x), ((byte) (x >> 8)), ((byte)
y), ((byte) (y >> 8)) };
}

Should be:

public static byte[] Build(uint uid, ushort x, ushort y)
{
return new byte[] { 0x23, ((byte) uid), ((byte) (uid >> 8)), ((byte) (uid
>> 0x10)), ((byte) (uid >> 0x18)), ((byte) 4 * y + x), 0, 0, 0 };
}

Original issue reported on code.google.com by [email protected] on 7 Aug 2008 at 5:51

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.