Thread: {Delta} 5 error's {delta}

Results 1 to 2 of 2
  1. #1 {Delta} 5 error's {delta} 
    Donator


    Join Date
    May 2008
    Posts
    1,234
    Thanks given
    31
    Thanks received
    25
    Rep Power
    279
    I tryed adding the server side to item on death interface :/

    clickingMost.java:64: cannot find symbol
    symbol : method sendFrame34(int,int,int,int)
    location: class client
    c.sendFrame34(6822, c.it
    emKept1, 0, 1);
    ^
    clickingMost.java:73: cannot find symbol
    symbol : method sendFrame34(int,int,int,int)
    location: class client
    c.sendFrame34(6963, c.itemKept1,
    0, 1);
    ^
    clickingMost.java:77: cannot find symbol
    symbol : method sendFrame34(int,int,int,int)
    location: class client
    c.sendFrame34(6963, c.itemKept2,
    1, 1);
    ^
    clickingMost.java:81: cannot find symbol
    symbol : method sendFrame34(int,int,int,int)
    location: class client
    c.sendFrame34(6963, c.itemKept3,
    2, 1);
    ^
    clickingMost.java:86: cannot find symbol
    symbol : method sendFrame34(int,int,int,int)
    location: class client
    c.sendFrame34(6963, c.it
    emKept4, 3, 1);
    ^
    5 errors
    Press any key to continue . . .
    Reply With Quote  
     

  2. #2  
    Donator

    Join Date
    Oct 2007
    Posts
    817
    Thanks given
    47
    Thanks received
    52
    Rep Power
    184
    add this to your client class

    found this for delta

    Code:
        public void sendFrame34(int frame, int item, int slot, int amount) {
            outStream.createFrameVarSizeWord(34);
            outStream.writeWord(frame);
            outStream.writeByte(slot);
            outStream.writeWord(item + 1);
            outStream.writeByte(255);
            outStream.writeDWord(amount);
            outStream.endFrameVarSizeWord();
        }
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •