Rune-Server Did you know?
- Items dropped take two minutes to disappear.
PortalForums Server TOP List New - PasteBin WebMail Register FAQ Members List Mark Forums Read
 

Server Top 5

Go Back   Rune-Server > RuneScape Development > RS2 Server > Tutorials


Closed Thread
 
LinkBack Thread Tools
Old 02-29-2008, 09:24 AM   #1 (permalink)
Registered Member
 
druidje's Avatar
 
Join Date: Jan 2007
Posts: 382
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 57
druidje is a jewel in the rough
druidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the rough
bank rearrange [TUT]

Most sources are having the problem when you draw items from your bank an empty spot will appear. When you rebank, this spot is still there...

Purpose: Fill your empty bank spots with the currently available items

Difficulty: 1-10

Assumed Knowledge: C & P... Some logic thinking if you want to understand what i did

Server Base: Pimp (all servers from winterlove? )
Required integers: bankItems[x], bankItemsN[x], playerBankSize
Required voids: openUpBank();

Classes Modified: client

Procedure
Step 1: Open your client.java
Declare this void:
Code:
public void rearrangeBank() { //this fills up the empty spots
int totalItems = 0;
int highestSlot = 0;
	for (int i = 0; i < playerBankSize; i++) {
		if (bankItems[i] != 0) { 
			totalItems ++;
			if (highestSlot <= i) highestSlot = i;
				} }  
		
		for (int i = 0; i <= highestSlot; i++) {
		if (bankItems[i] == 0) {
		boolean stop = false;
			
			for (int k = i; k <= highestSlot; k++) {
				if (bankItems[k] != 0 && !stop) {
					int spots = k - i;
						for (int j = k; j <= highestSlot; j++) {
							bankItems[j-spots] = bankItems[j];
							bankItemsN[j-spots] = bankItemsN[j];
							stop = true;
							bankItems[j] = 0; bankItemsN[j] = 0; 
								}
							}
						}					
					}
				}
		
	int totalItemsAfter = 0;
	for (int i = 0; i < playerBankSize; i++) {
		if (bankItems[i] != 0) { totalItemsAfter ++; } }
		
	if (totalItems != totalItemsAfter) outStream.createFrame(109); //disconnects when duping
		
	}
if you dont know where to put it (doh):
Place it above 'boolean process'

Step 2: making it rearrange when the bank is opened
search for:
Code:
public void openUpBank
then under the first { add:
Code:
rearrangeBank();
resetBank();
And your done

NOTE: i have been testing this for over 15 minuts

Credits: 100% mine


for ppl that haven't got the resetbank void:
Code:
public void resetBank() {
		outStream.createFrameVarSizeWord(53);
		outStream.writeWord(5382); // bank
		outStream.writeWord(playerBankSize); // number of items
         	for (int i = 0; i < playerBankSize; i++) {
			if (bankItemsN[i] > 254) {
				outStream.writeByte(255);
				outStream.writeDWord_v2(bankItemsN[i]);
			} else {
				outStream.writeByte(bankItemsN[i]); //amount	
			}
			if (bankItemsN[i] < 1)
				bankItems[i] = 0;
			if (bankItems[i] > 20000 || bankItems[i] < 0) {
				bankItems[i] = 20000;
			}
			outStream.writeWordBigEndianA(bankItems[i]); // itemID
		}
		outStream.endFrameVarSizeWord();
	}
__________________

Quote:
Originally Posted by zee_best View Post
Get sarah101 to sleep with kevin?
Quote:
Originally Posted by ject View Post
but try ::noclit or whatever
Developing 508!
druidje is offline  
Old 02-29-2008, 09:28 AM   #2 (permalink)
Registered Member
 
Luke132's Avatar
 
Join Date: Dec 2007
Age: 22
Posts: 9,124
Thanks: 48
Thanked 425 Times in 228 Posts
Rep Power: 4011
Luke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-Server
Luke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-ServerLuke132 is an outstanding member at Rune-Server
wouldnt it just have been easier to tell us the line/s you changed?

good work none the less.
__________________
Inactive for the forseeable future .

LEGIT Rune-Server top poster, Vastico's just a cheating cunt who buys post count and merges accounts that aren't his.

Quote:
Originally Posted by 03data
we might disable isaac because those methods are property of jagex
Luke132 is offline  
Old 02-29-2008, 09:28 AM   #3 (permalink)
Rune-Age

 
Join Date: Jan 2008
Posts: 1,804
Thanks: 0
Thanked 6 Times in 6 Posts
Rep Power: 255
Called Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond repute
Called Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond repute
Send a message via MSN to Called Enzo
Ah sweet... needed this... Can you make all other options work also?

Cuz there more options that dont work on servers
Called Enzo is offline  
Old 02-29-2008, 09:33 AM   #4 (permalink)
Registered Member
 
druidje's Avatar
 
Join Date: Jan 2007
Posts: 382
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 57
druidje is a jewel in the rough
druidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the rough
@ Luke: i did not change any lines :P just made a whole new void..
@ Called Enzo: This is not the 'rearrange' option in your bank interface. This is just the empty spot refiller.
__________________

Quote:
Originally Posted by zee_best View Post
Get sarah101 to sleep with kevin?
Quote:
Originally Posted by ject View Post
but try ::noclit or whatever
Developing 508!
druidje is offline  
Old 02-29-2008, 09:38 AM   #5 (permalink)
Rune-Age

 
Join Date: Jan 2008
Posts: 1,804
Thanks: 0
Thanked 6 Times in 6 Posts
Rep Power: 255
Called Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond repute
Called Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond reputeCalled Enzo has a reputation beyond repute
Send a message via MSN to Called Enzo
Oh ok.. still usefull

But is it possible u can make the options work anyway?
Called Enzo is offline  
Old 02-29-2008, 09:40 AM   #6 (permalink)
Registered Member
 
druidje's Avatar
 
Join Date: Jan 2007
Posts: 382
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 57
druidje is a jewel in the rough
druidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the rough
It is possible...
But i can't be bothered making it :P
I found this more annoying
__________________

Quote:
Originally Posted by zee_best View Post
Get sarah101 to sleep with kevin?
Quote:
Originally Posted by ject View Post
but try ::noclit or whatever
Developing 508!
druidje is offline  
Old 02-29-2008, 09:46 AM   #7 (permalink)
Registered Member
 
Dennis's Avatar
 
Join Date: Dec 2007
Age: 19
Posts: 1,067
Thanks: 0
Thanked 4 Times in 3 Posts
Rep Power: 187
Dennis has a reputation beyond reputeDennis has a reputation beyond repute
Dennis has a reputation beyond reputeDennis has a reputation beyond reputeDennis has a reputation beyond reputeDennis has a reputation beyond reputeDennis has a reputation beyond reputeDennis has a reputation beyond reputeDennis has a reputation beyond reputeDennis has a reputation beyond reputeDennis has a reputation beyond reputeDennis has a reputation beyond repute
Send a message via AIM to Dennis Send a message via MSN to Dennis
Cool thanks man r3p++
__________________
Dennis is offline  
Old 02-29-2008, 09:56 AM   #8 (permalink)
Registered Member
 
druidje's Avatar
 
Join Date: Jan 2007
Posts: 382
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 57
druidje is a jewel in the rough
druidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the roughdruidje is a jewel in the rough
Yw (too short)
__________________

Quote:
Originally Posted by zee_best View Post
Get sarah101 to sleep with kevin?
Quote:
Originally Posted by ject View Post
but try ::noclit or whatever
Developing 508!
druidje is offline  
Old 02-29-2008, 10:44 AM   #9 (permalink)
Registered Member
 
Zammynub's Avatar
 
Join Date: Nov 2007
Posts: 138
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 26
Zammynub has a spectacular aura aboutZammynub has a spectacular aura aboutZammynub has a spectacular aura aboutZammynub has a spectacular aura aboutZammynub has a spectacular aura aboutZammynub has a spectacular aura aboutZammynub has a spectacular aura aboutZammynub has a spectacular aura about
Very nice... i used it thanks, r3p fo joo
__________________


~I r teh kopy kat for teh lulz~
Zammynub is offline  
Old 02-29-2008, 12:12 PM   #10 (permalink)
Registered Member
 
holy dang it's Avatar
 
Join Date: Dec 2007
Age: 16
Posts: 148
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 27
holy dang it has a spectacular aura aboutholy dang it has a spectacular aura aboutholy dang it has a spectacular aura aboutholy dang it has a spectacular aura aboutholy dang it has a spectacular aura aboutholy dang it has a spectacular aura aboutholy dang it has a spectacular aura aboutholy dang it has a spectacular aura aboutholy dang it has a spectacular aura aboutholy dang it has a spectacular aura about
Thanks worked for me EAT MY REP
holy dang it is offline  
Closed Thread



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
vBulletin Style by: kreativfantasy.com