Thread: Hello Guys, Ineed Help. Badly..

Results 1 to 5 of 5
  1. #1 Hello Guys, Ineed Help. Badly.. 
    Banned
    Join Date
    Nov 2015
    Posts
    28
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    Oke Guys, When I Host Me Server, Its All Fine, But When i login, And Wear An Item, Me Inventory gets Full With Nulls. And Then It Freezes. Pleas Someone Help me.

    BTW Its SHARDS.
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Nov 2015
    Posts
    64
    Thanks given
    0
    Thanks received
    0
    Rep Power
    11
    hmm 2006 source?

    post your wear.java file pleasee with
    Reply With Quote  
     

  3. #3  
    Banned
    Join Date
    Nov 2015
    Posts
    28
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    its an oldschool source ye

    package com.rs.worldserver.model.player.packet;

    //Shard Revolutions Generic MMORPG Server
    //Copyright (C) 2008 Graham Edgecombe

    //This program is free software: you can redistribute it and/or modify
    //it under the terms of the GNU General Public License as published by
    //the Free Software Foundation, either version 3 of the License, or
    //(at your option) any later version.

    //This program is distributed in the hope that it will be useful,
    //but WITHOUT ANY WARRANTY; without even the implied warranty of
    //MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    //GNU General Public License for more details.

    //You should have received a copy of the GNU General Public License
    //along with this program. If not, see <http://www.gnu.org/licenses/>.

    import com.rs.worldserver.model.player.Client;
    import com.rs.worldserver.model.player.Packet;
    import com.rs.worldserver.model.player.*;
    /**
    * Wear items packet
    *
    * @author Graham
    *
    */
    public class WearItem implements Packet {

    @Override
    public void handlePacket(Client client, int packetType, int packetSize) {
    int wearID = client.getInStream().readUnsignedWord();
    int wearSlot = client.getInStream().readUnsignedWordA();
    @SuppressWarnings("unused")
    int interfaceID = client.getInStream().readUnsignedWordA();
    client.println_debug("WearItem: " + wearID + " slot: " + wearSlot);
    client.getActionAssistant().wear(wearID, wearSlot);
    client.getCombatManager().calculateBonus();
    client.getSpecials().specialBar();
    //client.specOn = false;
    client.getActionAssistant().requestUpdates();
    }

    }





    this is wearitem file
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Oct 2015
    Posts
    23
    Thanks given
    4
    Thanks received
    0
    Rep Power
    12
    Mump Pleas help this kid
    Reply With Quote  
     

  5. #5  
    Super Donator

    StanDev's Avatar
    Join Date
    Apr 2014
    Posts
    660
    Thanks given
    82
    Thanks received
    255
    Rep Power
    592
    Quote Originally Posted by lostlegend View Post
    Mump Pleas help this kid
    Why would you even say that?

    OT: what error shows up? Or just show a picture of what happens.
    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

Similar Threads

  1. Hello Guys Website help Ruse
    By sandyscape in forum Help
    Replies: 3
    Last Post: 10-13-2015, 11:00 AM
  2. Replies: 4
    Last Post: 05-29-2015, 01:24 AM
  3. Replies: 1
    Last Post: 05-23-2013, 07:57 AM
  4. Replies: 0
    Last Post: 05-11-2013, 12:04 PM
  5. Replies: 4
    Last Post: 01-26-2013, 09:32 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •