Compare commits

...

27 Commits

Author SHA1 Message Date
dginovker a05175210c Converted a lot of IDs, not all 2020-01-19 23:59:00 -05:00
dginovker 847830c104 Created itemdef.json with same content as itemdefs.gsu. Still need to read from it 2020-01-19 11:36:35 -05:00
dginovker eafe99af0a Latest compile 2020-01-13 07:53:55 -05:00
Mr Extremez 60239a38cf A few changes (#362)
- Stalls now dissapear when thieving them
- Added the missing coal rock in barbarian village
- Added some height level checks for object spawns
2020-01-13 07:53:18 -05:00
Daniel Ginovker 85a0406d9b Add rogues bank (#361) 2020-01-11 21:45:16 -05:00
dginovker dded6b8fd0 2.0 client notif 2020-01-10 18:15:01 -05:00
Mr Extremez db1f5ed785 Some fixes (#359)
- Added message of the week to welcome screen interface
- Added face north when clicking compass
- Disabled the blank tab on game frame
- Fixed all of the dialogue issues I could find in rune mysteries
- Fixed a few typos and did a very minor clean up in the dialogue file still a lot more planned soon
- Disabled resizable on the client seeing as it doesnt work correct currently anyways
2020-01-08 18:27:59 -05:00
Gptaqbc b1eaacf93c Door fix to facilitate Rune Mysteries script (#350)
Now some doors doesnt have forcemove anymore.
2020-01-07 17:57:08 -05:00
MitchvanWijngaarden c48b2575e9 fixed essence mining when multiple people are mining (#349) 2020-01-07 17:56:53 -05:00
dginovker cad66fdcc8 Latest compile 2020-01-06 07:41:36 -05:00
Daniel Ginovker d3a15b1aad Update README.md 2020-01-03 17:23:16 -05:00
Mr Extremez fdbb05597a A few fun fixes (#348)
- Ranging guild now works
- Fletching should no longer randomly stop if more than on person is doing it
- Added dragon longsword special attack

Closes #346
Closes #216
Closes #245
2020-01-03 09:12:09 -05:00
Gptaqbc 6b9d1d5881 Resolved couple special attacks issues(Whip, magic long bows, draggon daggers) (#347)
Resolved couple special attacks issues(Whip, magic long bows, draggon daggers)

I also discovered some issues about the special attack. There is no delay between the special attack and the next hit and the dragon longsword special attack doesnt work at all.
2020-01-02 18:35:04 -05:00
dginovker e3e74a6a25 Track github discord invites 2020-01-01 21:21:46 -05:00
dginovker 9272195db6 Merge branch 'master' of https://github.com/dginovker/2006rebotted 2020-01-01 17:58:04 -05:00
dginovker 3437877fb2 Made creating a new acc more obvious 2020-01-01 17:57:42 -05:00
MitchvanWijngaarden 33ef596bd3 Closes #343. Allows multiple players to steal from a stall at the same tick. (#344) 2020-01-01 12:51:12 -05:00
Mr Extremez d1c2150c60 Random stuff (#342)
- added poison arrows to usable arrows
- cleaned up some code
- changed ardougne tele to correct coords
- enabled pest control (although it needs a lot of work still)
- fixed some typos
- made beads drop a bit more often, so its more accurate like real rs
2019-12-31 12:42:53 -05:00
dginovker e8bfe7f88a Fix ::Stuck & stacktrace (regression) 2019-12-30 23:47:23 -05:00
Gptaqbc e88c5eaca8 Fixed the delay on banking a non stackable item (#341)
Brought back old code as what I previously did affected the time it takes to bank items.
2019-12-30 23:25:01 -05:00
DavidVarbit 1b5f185944 * Fix: Runes are consumed even if you cant tele from wildy after level 20 #337 (#340)
* Cleaned up Spell teleports
2019-12-30 18:53:09 -05:00
Gptaqbc c27e629da2 Bank stuff (#339)
* Fixed dcing on picking up items when inventory is full that I introduced

* Added Shantay Pass bank area and changed Jukats shop stock
2019-12-30 15:37:27 -05:00
dginovker bd97bdca3c Quick compile 2019-12-30 13:48:25 -05:00
Gptaqbc 6ce09f3091 Fixed dcing on picking up items when inventory is full that I introduced (#338) 2019-12-30 13:45:05 -05:00
dginovker e6e18efe34 December 30th update early :) 2019-12-29 20:28:42 -05:00
Daniel Ginovker c87f135e97 Fixed some items dcing client (#330) 2019-12-27 12:47:56 -05:00
dginovker 54dc827dfa Tee output so we can see if there's a server crash 2019-12-27 12:46:34 -05:00
3070 changed files with 1276421 additions and 1718 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -7,6 +7,7 @@ import java.math.BigInteger;
public class ClientSettings {
public static String SNOW_MONTH = ".12";
/**
* The Servers Name
*/
+6
View File
@@ -21,6 +21,12 @@ public final class Flo {
}
}
public static String getTodaysDate() {
Calendar date = new GregorianCalendar();
return date.get(Calendar.DAY_OF_MONTH) + "."+ (date.get(Calendar.MONTH) + 1) + "." + date.get(Calendar.YEAR);
}
private void readValues(Stream stream) {
do {
int i = stream.readUnsignedByte();
+82 -100
View File
@@ -29,8 +29,14 @@ import java.util.Date;
*/
@SuppressWarnings("serial")
public class Game extends RSApplet {
private boolean graphicsEnabled = true;
public static int random(final float range) {
return (int) (java.lang.Math.random() * (range + 1));
}
public static String intToKOrMilLongName(int i) {
String s = String.valueOf(i);
for (int k = s.length() - 3; k > 0; k -= 3) {
@@ -522,9 +528,9 @@ public class Game extends RSApplet {
}
}
public void processMenuClick() {
public boolean processMenuClick() {
if (activeInterfaceType != 0) {
return;
return false;
}
int j = super.clickMode3;
if (spellSelected == 1 && super.saveClickX >= 516 && super.saveClickY >= 160 && super.saveClickX <= 765 && super.saveClickY <= 205) {
@@ -614,7 +620,7 @@ public class Game extends RSApplet {
if (RSInterface.interfaceCache[j2].parentID == backDialogID) {
activeInterfaceType = 3;
}
return;
return true;
}
}
}
@@ -628,6 +634,7 @@ public class Game extends RSApplet {
determineMenuSize();
}
}
return false;
}
public void saveMidi(boolean flag, byte abyte0[]) {
@@ -3049,8 +3056,7 @@ public class Game extends RSApplet {
inputTaken = true;
super.clickMode3 = 0;
}
processMenuClick();
if (fullScreenBackDialogID == -1) {
if (!processMenuClick()) {
processMainScreenClick();
processTabClick();
processChatModeClick();
@@ -3453,6 +3459,10 @@ public class Game extends RSApplet {
if (l >= 2000) {
l -= 2000;
}
if (l == 696) {
minimapInt1 = 0;
anInt1184 = 120;
}
if (l == 582) {
NPC npc = npcArray[i1];
if (npc != null) {
@@ -4763,7 +4773,7 @@ public class Game extends RSApplet {
inputDialogState = 0;
inputTaken = true;
}
} else if (backDialogID == -1 && fullScreenBackDialogID == -1) {
} else {
if (j >= 32 && j <= 122 && inputString.length() < 80) {
inputString += (char) j;
inputTaken = true;
@@ -5346,6 +5356,16 @@ public class Game extends RSApplet {
chatMessages[0] = s;
}
public void processMinimapActions() {
int x = super.mouseX;
int y = super.mouseY;
if (x >= 551 && x <= 577 && y >= 7 && y <= 40) {
menuActionName[1] = "Face North";
menuActionID[1] = 696;
menuActionRow = 2;
}
}
public void processTabClick() {
if (super.clickMode3 == 1) {
if (super.saveClickX >= 539 && super.saveClickX <= 573 && super.saveClickY >= 169 && super.saveClickY < 205 && tabInterfaceIDs[0] != -1) {
@@ -5383,11 +5403,11 @@ public class Game extends RSApplet {
tabID = 6;
tabAreaAltered = true;
}
if (super.saveClickX >= 540 && super.saveClickX <= 574 && super.saveClickY >= 466 && super.saveClickY < 502 && tabInterfaceIDs[7] != -1) {
/*if (super.saveClickX >= 540 && super.saveClickX <= 574 && super.saveClickY >= 466 && super.saveClickY < 502 && tabInterfaceIDs[7] != -1) {
needDrawTabArea = true;
tabID = 7;
tabAreaAltered = true;
}
}*/
if (super.saveClickX >= 572 && super.saveClickX <= 602 && super.saveClickY >= 466 && super.saveClickY < 503 && tabInterfaceIDs[8] != -1) {
needDrawTabArea = true;
tabID = 8;
@@ -5541,9 +5561,9 @@ public class Game extends RSApplet {
menuActionName[0] = "Cancel";
menuActionID[0] = 1107;
menuActionRow = 1;
if(fullScreenBackDialogID != -1) {
if (fullScreenInterfaceId != -1) {
anInt886 = 0;
buildInterfaceMenu(0, RSInterface.interfaceCache[fullScreenBackDialogID], super.mouseX, 0, super.mouseY, 0);
buildInterfaceMenu(0, RSInterface.interfaceCache[fullScreenInterfaceId], super.mouseX, 0, super.mouseY, 0);
if (anInt886 != anInt1026) {
anInt1026 = anInt886;
}
@@ -5587,6 +5607,7 @@ public class Game extends RSApplet {
inputTaken = true;
anInt1039 = anInt886;
}
processMinimapActions();
boolean flag = false;
while (!flag) {
flag = true;
@@ -5763,7 +5784,6 @@ public class Game extends RSApplet {
backDialogID = -1;
openInterfaceID = -1;
invOverlayInterfaceID = -1;
fullScreenBackDialogID = -1;
fullScreenInterfaceId = -1;
anInt1018 = -1;
aBoolean1149 = false;
@@ -7466,9 +7486,9 @@ public class Game extends RSApplet {
}
public void drawGameScreen() {
if (fullScreenBackDialogID != -1 && (loadingStage == 2 || super.fullGameScreen != null)) {
if (fullScreenInterfaceId != -1 && (loadingStage == 2 || super.fullGameScreen != null)) {
if (loadingStage == 2) {
method119(anInt945, fullScreenBackDialogID);
method119(anInt945, fullScreenInterfaceId);
if (fullScreenInterfaceId != -1)
method119(anInt945, fullScreenInterfaceId);
anInt945 = 0;
@@ -7477,15 +7497,8 @@ public class Game extends RSApplet {
Texture.lineOffsets = gameScreenOffsets;
DrawingArea.setAllPixelsToZero();
welcomeScreenRaised = true;
RSInterface rSInterface = RSInterface.interfaceCache[fullScreenBackDialogID];
if (rSInterface.width == 512 && rSInterface.height == 334
&& rSInterface.type == 0) {
rSInterface.width = 765;
rSInterface.height = 503;
}
drawInterface(0, 0, rSInterface, 0);
if (fullScreenInterfaceId != -1) {
RSInterface class13_1 = RSInterface.interfaceCache[fullScreenInterfaceId];
if (openInterfaceID != -1) {
RSInterface class13_1 = RSInterface.interfaceCache[openInterfaceID];
if (class13_1.width == 512 && class13_1.height == 334
&& class13_1.type == 0) {
class13_1.width = 765;
@@ -7493,6 +7506,13 @@ public class Game extends RSApplet {
}
drawInterface(0, 0, class13_1, 0);
}
RSInterface rSInterface = RSInterface.interfaceCache[fullScreenInterfaceId];
if (rSInterface.width == 512 && rSInterface.height == 334
&& rSInterface.type == 0) {
rSInterface.width = 765;
rSInterface.height = 503;
}
drawInterface(0, 0, rSInterface, 0);
if (!menuOpen) {
processRightClick();
drawTooltip();
@@ -8468,10 +8488,12 @@ public class Game extends RSApplet {
if (anInt1055 == 1) {
multiOverlay.drawSprite(472, 296);
}
int k = 20;
int i1 = 0xffff00;
int x = baseX + (myPlayer.x - 6 >> 7);
int y = baseY + (myPlayer.y - 6 >> 7);
if (fpsOn) {
char c = '\u01FB';
int k = 20;
int i1 = 0xffff00;
if (super.fps < 15) {
i1 = 0xff0000;
}
@@ -8486,6 +8508,20 @@ public class Game extends RSApplet {
aTextDrawingArea_1271.method380("Mem:" + j1 + "k", c, 0xffff00, k);
k += 15;
}
if (showInfo) {
if (super.fps < 15)
i1 = 0xff0000;
aTextDrawingArea_1271.method385(0xffff00, "Fps:" + super.fps, 285, 5);
Runtime runtime = Runtime.getRuntime();
int j1 = (int) ((runtime.totalMemory() - runtime.freeMemory()) / 1024L);
i1 = 0xffff00;
if (j1 > 0x2000000 && lowMem)
i1 = 0xff0000;
k += 15;
aTextDrawingArea_1271.method385(0xffff00, "Mem:" + j1 + "k", 299, 5);
aTextDrawingArea_1271.method385(0xffff00, "Mouse X: " + super.mouseX + " , Mouse Y: " + super.mouseY, 314, 5);
aTextDrawingArea_1271.method385(0xffff00, "Coords: " + x + ", " + y, 329, 5);
}
if (anInt1104 != 0) {
int j = anInt1104 / 50;
int l = j / 60;
@@ -9503,13 +9539,13 @@ public class Game extends RSApplet {
if (loginScreenState == 3) {
chatTextDrawingArea.method382(0xffff00, c / 2, "Create a free account", c1 / 2 - 60, true);
int k = c1 / 2 - 35;
chatTextDrawingArea.method382(0xffffff, c / 2, "To create a new account you need to", k, true);
chatTextDrawingArea.method382(0xffffff, c / 2, "To create a new account just click", k, true);
k += 15;
chatTextDrawingArea.method382(0xffffff, c / 2, "go back to the main " + ClientSettings.SERVER_NAME + " webpage", k, true);
chatTextDrawingArea.method382(0xffffff, c / 2, "\"Cancel\" below, and click \"Existing User\".", k, true);
k += 15;
chatTextDrawingArea.method382(0xffffff, c / 2, "and choose the red 'create account'", k, true);
chatTextDrawingArea.method382(0xffffff, c / 2, "Log in with any credentials you want and an", k, true);
k += 15;
chatTextDrawingArea.method382(0xffffff, c / 2, "button at the top right of that page.", k, true);
chatTextDrawingArea.method382(0xffffff, c / 2, "account will automatically be created for you.", k, true);
k += 15;
int j1 = c / 2;
int i2 = c1 / 2 + 50;
@@ -10867,10 +10903,6 @@ public class Game extends RSApplet {
backDialogID = -1;
inputTaken = true;
}
if (fullScreenBackDialogID != -1) {
fullScreenBackDialogID = -1;
welcomeScreenRaised = true;
}
if (fullScreenInterfaceId != -1) {
fullScreenInterfaceId = -1;
}
@@ -11002,10 +11034,6 @@ public class Game extends RSApplet {
backDialogID = -1;
inputTaken = true;
}
if (fullScreenBackDialogID != -1) {
fullScreenBackDialogID = -1;
welcomeScreenRaised = true;
}
if (fullScreenInterfaceId != -1) {
fullScreenInterfaceId = -1;
}
@@ -11067,9 +11095,6 @@ public class Game extends RSApplet {
if (backDialogID != -1) {
backDialogID = -1;
}
if (fullScreenBackDialogID != k15) {
fullScreenBackDialogID = k15;
}
if (fullScreenInterfaceId != k15) {
fullScreenInterfaceId = k9;
}
@@ -11201,61 +11226,31 @@ public class Game extends RSApplet {
backDialogID = -1;
inputTaken = true;
}
if (fullScreenBackDialogID != -1) {
fullScreenBackDialogID = -1;
welcomeScreenRaised = true;
}
if (fullScreenInterfaceId != -1) {
fullScreenInterfaceId = -1;
}
/*if (openInterfaceID != l7) {
openInterfaceID = l7;
}*/
if (inputDialogState != 0) {
inputDialogState = 0;
inputTaken = true;
}
/*
* 15244 = main Interface ID
* 17511 = Question Type
* 15819 = Christmas Type
* 15812 = Security Type
* 15801 = Item Scam Type
* 15791 = Password Safety
* 15774 = Good/Bad Password
* 15767 = Drama Type
*/
// 17511 = Question Type
// 15819 = Christmas Type
// 15812 = Security Type
// 15801 = Item Scam Type
// 15791 = Password Safety ?
// 15774 = Good/Bad Password
// 15767 = Drama Type ????
int[] welcome = {17511, 15812, 15801, 15791, 15774, 15767};
if (l7 == 15244) {
openInterfaceID = 15812;//secondary/bottom part
fullScreenBackDialogID = 15244;
/*} else if (l7 == 17511) {
openInterfaceID = 17511;
fullScreenBackDialogID = 15244;
} else if (l7 == 15819) {
openInterfaceID = 15819;
fullScreenBackDialogID = 15244;
} else if (l7 == 15812) {
openInterfaceID = 15812;
fullScreenBackDialogID = 15244;
} else if (l7 == 15801) {
openInterfaceID = 15801;
fullScreenBackDialogID = 15244;
} else if (l7 == 15791) {
openInterfaceID = 15791;
fullScreenBackDialogID = 15244;
} else if (l7 == 15774) {
openInterfaceID = 15774;
fullScreenBackDialogID = 15244;
} else if (l7 == 15767) {
openInterfaceID = 15767;
fullScreenBackDialogID = 15244;*/
} else {
openInterfaceID = l7;
}
if (Flo.getTodaysDate().contains(ClientSettings.SNOW_MONTH)) {
openInterfaceID = welcome[random(5)];
} else {
openInterfaceID = welcome[random(5)];
}
fullScreenInterfaceId = 15244;
} else {
openInterfaceID = l7;
}
aBoolean1149 = false;
pktType = -1;
return true;
return true;
}
if (pktType == 218) {
int i8 = inStream.method438();
@@ -11321,10 +11316,6 @@ public class Game extends RSApplet {
backDialogID = -1;
inputTaken = true;
}
if (fullScreenBackDialogID != -1) {
fullScreenBackDialogID = -1;
welcomeScreenRaised = true;
}
if (fullScreenInterfaceId != -1) {
fullScreenInterfaceId = -1;
}
@@ -11378,10 +11369,6 @@ public class Game extends RSApplet {
needDrawTabArea = true;
tabAreaAltered = true;
}
if (fullScreenBackDialogID != -1) {
fullScreenBackDialogID = -1;
welcomeScreenRaised = true;
}
if (fullScreenInterfaceId != -1) {
fullScreenInterfaceId = -1;
}
@@ -11514,10 +11501,6 @@ public class Game extends RSApplet {
inputTaken = true;
aBoolean1149 = false;
}
if (fullScreenBackDialogID != -1) {
fullScreenBackDialogID = -1;
welcomeScreenRaised = true;
}
if (fullScreenInterfaceId != -1) {
fullScreenInterfaceId = -1;
}
@@ -11721,7 +11704,6 @@ public class Game extends RSApplet {
public static int anInt854;
public int anInt855;
public int openInterfaceID;
public int fullScreenBackDialogID = -1;
public int fullScreenInterfaceId = -1;
public int xCameraPos;
public int zCameraPos;
+5 -1
View File
@@ -190,7 +190,11 @@ public final class ItemDef {
cacheIndex = (cacheIndex + 1) % 10;
ItemDef itemDef = cache[cacheIndex];
stream.currentOffset = streamIndices[i];
try {
stream.currentOffset = streamIndices[i];
} catch (Exception e) {
System.out.println("Itemdef issue? Apparently this ID is out of bounds: " + e);
}
itemDef.id = i;
itemDef.setDefaults();
itemDef.readValues(stream);
+1 -1
View File
@@ -10,7 +10,7 @@ final class RSFrame extends Frame {
public RSFrame(RSApplet RSApplet_, int i, int j) {
rsApplet = RSApplet_;
setTitle(ClientSettings.SERVER_NAME);
setResizable(true);
setResizable(false);
setMinimumSize(new Dimension(i + 8, j + 28));
setVisible(true);
toFront();
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,3 +0,0 @@
private static final BigInteger RSA_MODULUS = new BigInteger("91553247461173033466542043374346300088148707506479543786501537350363031301992107112953015516557748875487935404852620239974482067336878286174236183516364787082711186740254168914127361643305190640280157664988536979163450791820893999053469529344247707567448479470137716627440246788713008490213212272520901741443");
private static final BigInteger RSA_EXPONENT = new BigInteger("33280025241734061313051117678670856264399753710527826596057587687835856000539511539311834363046145710983857746766009612538140077973762171163294453513440619295457626227183742315140865830778841533445402605660729039310637444146319289077374748018792349647460850308384280105990607337322160553135806205784213241305");
@@ -1,3 +0,0 @@
private static final BigInteger RSA_MODULUS = new BigInteger("91553247461173033466542043374346300088148707506479543786501537350363031301992107112953015516557748875487935404852620239974482067336878286174236183516364787082711186740254168914127361643305190640280157664988536979163450791820893999053469529344247707567448479470137716627440246788713008490213212272520901741443");
private static final BigInteger RSA_EXPONENT = new BigInteger("65537");
+1 -1
View File
@@ -103,7 +103,7 @@ shop = 102 Zanaris_General_Store 1 1 1931 30 1935 10 1735 10 1925 30 1923 10 590
shop = 103 Shantay_Store 2 2 1823 30 1831 30 1937 10 1921 10 1929 10 946 10 1833 10 1835 10 1837 10 2349 0 314 1000 2347 10 1925 30 1923 10 1935 10 954 100 1854 100
shop = 104 Varrock_Sword_Shop 2 2 1277 10 1279 10 1281 10 1283 10 1285 10 1287 10 1291 10 1293 10 1295 10 1297 10 1299 10 1301 10 1205 10 1203 10 1207 10 1209 10 1211 10
shop = 105 Taverly_Sword_Shop 2 2 1307 10 1309 10 1311 10 1313 10 1315 10 1317 10
shop = 106 Jukats_Sword_Shop 2 2 1305 10 1215 30
shop = 106 Jukats_Sword_Shop 2 2 1305 2 1215 2
shop = 107 Oziachs_Armour 2 2 1127 10 1135 10
shop = 108 Fur_Trader 2 2 948 10 958 10
shop = 109 Slayer_Shop 2 2 4155 10 4166 10 4161 20 6696 20 7051 10 4551 10 7159 10 6720 10 4168 10 4164 10 4158 10 4172 50000 4170 10 7432 10 7421 1000 4162 10 4156 10
Binary file not shown.
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,428 @@
<!DOCTYPE html>
<html class="no-js" lang="en-US" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<title>Item Information - RuneLocus</title>
<script src="https://www.google.com/recaptcha/api.js?render=6LeA6poUAAAAAM_dS5qHDLBFsUuuiwHdzHAzzLKJ"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<style type="text/css">
@media screen and (max-width:990px)
{
.sam-place img {
width:95% !important;
}
}
.wpdberror {
display: none;
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-36652818-1', 'auto');
ga('send', 'pageview');
</script>
<script>
var trackOutboundLink = function(url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon',
'hitCallback': function(){document.location = url;}
});
}
</script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1656754394599880');
fbq('track', "PageView");</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1656754394599880&ev=PageView&noscript=1"
/></noscript>
<link rel="canonical" href="https://www.runelocus.com/item-details/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Item Information - RuneLocus" />
<meta property="og:url" content="https://www.runelocus.com/item-details/" />
<meta property="og:site_name" content="RuneLocus" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Item Information - RuneLocus" />
<link rel='dns-prefetch' href='//www.google.com' />
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='otw_grid_manager-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_grid_manager_light/css/otw-grid.css?ver=0.1' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac-font-awesome-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/font-awesome/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac_bootstrap-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/bootstrap-front.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpbanners-css' href='https://www.runelocus.com/wp-content/plugins/rlav/css/style.css' type='text/css' media='all' />
<link rel='stylesheet' id='runelocus-style1-css' href='https://www.runelocus.com/wp-content/plugins/runelocus/css/runelocus.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-font-awesome-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/otw_shortcode.css?ver=4.9.13' type='text/css' media='all' />
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script type='text/javascript' src='https://www.google.com/jsapi?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/runelocus/tinymce/tinymce.min.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode_core.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode.js?ver=4.9.13'></script>
<link rel='https://api.w.org/' href='https://www.runelocus.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.runelocus.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.runelocus.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.9.13" />
<link rel='shortlink' href='https://www.runelocus.com/?p=294' />
<style type="text/css" id="wp-custom-css">
#menu-item-17 {
background: rgba(0, 0, 0, 0.34) !important;
}
@media screen and (min-width: 700px) {
#wpsm_accordion_1951 {
display: none !important;
}
}
.grecaptcha-badge {
display: none !important;
}
.list-item p {
font-size:14px !important;
height: 45px !important;
overflow:hidden !important;
}
</style>
<link rel="stylesheet" property="stylesheet" href="https://www.runelocus.com/wp-content/themes/x5-theme/styles/main.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
document.querySelector('html').classList.remove('no-js');
window.ajax_url = 'https://www.runelocus.com/wp-admin/admin-ajax.php';
</script>
</head>
<body class="page-template-default page page-id-294 innerpage" style="background-image: url('https://www.runelocus.com/wp-content/themes/x5-theme/assets/images/design/banner.jpg')" class="page-template-default page page-id-294 innerpage">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_EN/sdk.js#xfbml=1&version=v2.5&appId=214595121924413";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<header class="c-header">
<div class="i-wrapper">
<div class="logo-wrapper">
<a href="https://www.runelocus.com" class="logo" rel="home">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="">
</a>
</div>
<nav class="navigation-wrapper">
<ul class="main-navigation">
<li id="menu-item-14" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li id="menu-item-15" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li id="menu-item-1857" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li id="menu-item-16" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li id="menu-item-17" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="user-navigation">
<li id="menu-item-21" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="/wp-login.php">Login</a></li>
<li id="menu-item-22" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22"><a href="/wp-login.php?action=register">Register</a></li>
</ul>
</nav>
<div class="hamburger-icon">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</header><div class="o-wrapper">
<section class="banner">
<div class="content-inner">
<h1 class="page-title" title="Item Information">Item Information</h1>
</div>
</section>
</div>
<section class="main-wrapper">
<div class="bg-holder"></div>
<div class="o-wrapper">
<div class="cnt-left match-height u-float-left">
<div class="content-inner">
<style>
.bgusp {
background: url('/wp-content/themes/x5-theme/assets/images/design/bg-pattern.jpg');
min-height: 60px;
padding-top: 15px;
margin-bottom:30px;
}
.usp {
list-style-type: none;
padding: 0;
overflow: hidden;
padding-left:8px;
}
.usp li {
float: left;
font-size: 13px;
padding-right: 30px;
}
.usp li:last-child {
padding-right:0px;
}
</style>
<div class="bgusp">
<center>
<ul class="usp">
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/heart.png' /> First RSPS toplist since 2007 </li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/defence.png' /> Unlike others, we fight vote bots</li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/stats.png' /> Blocking 100k+ vote bots<span style="font-size:10px;">/mo</span></li>
</ul>
</center>
</div>
<div class="content">
<h2>Information about 'Toolkit'</h2>
<table class="table">
<tr>
<td>Item ID: </td> <td> 1</td>
</tr>
<tr>
<td>Examine: </td> <td> Good for repairing a broken cannon.</td>
</tr>
<tr>
<td>Members only? </td> <td> true</td>
</tr>
<tr>
<td>Lendable? </td> <td> false</td>
</tr>
<tr>
<td>Stackable? </td> <td> false</td>
</tr>
<tr>
<td>Shop value </td> <td> 0</td>
</tr>
<tr>
<td>Equipment slot </td> <td> -1</td>
</tr>
<tr>
<td>Remove beard </td> <td> false</td>
</tr>
<tr>
<td>Remove hair </td> <td> false</td>
</tr>
<tr>
<td>Remove sleeves </td> <td> false</td>
</tr>
<tr>
<td>Weapon type </td> <td> N/A</td>
</tr>
<tr>
<td>Interface model: </td> <td> 2679</td>
</tr>
<tr>
<td>Male model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Model position X: </td> <td> -3</td>
</tr>
<tr>
<td>Model position Y: </td> <td> 2</td>
</tr>
<tr>
<td>Model rotation X: </td> <td> 2026</td>
</tr>
<tr>
<td>Model rotation Y: </td> <td> 477</td>
</tr>
<tr>
<td>Model rotation Z: </td> <td> 0</td>
</tr>
<tr>
<td>Model zoom: </td> <td> 1164</td>
</tr>
<tr>
<td>Interface options: </td> <td> [null, null, null, null, Destroy]</td>
</tr>
<tr>
<td>Ground options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Tradeable: </td> <td> No</td>
</tr>
<tr>
<td>High alch: </td> <td> 0 coins</td>
</tr>
<tr>
<td>Low alch: </td> <td> 0 coins</td>
</tr>
<tr>
<td>Destroy: </td> <td> I got this from Captain Lawgof.</td>
</tr>
<tr>
<td>Exchange: </td> <td> ?</td>
</tr>
<tr>
<td>Weight: </td> <td> 0 kg</td>
</tr>
<tr>
<td>Quest: </td> <td> Dwarf Cannon</td>
</tr>
</table>
</div>
</div>
</div>
<aside class="sidebar match-height u-float-right">
<div class="content-inner">
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
<div class="block">
<h2>Join Discord</h2>
<a href="https://discord.gg/6rK7dcr" target="_blank"><img src="https://www.runelocus.com/wp-content/uploads/2018/08/disc.jpg" alt="Discord" /></a> </div>
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
</div>
</div>
</aside>
</div>
</section>
<footer class="c-footer u-text-center ">
<div class="o-wrapper">
<div class="content-inner">
<a class="logo-footer">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="Footer Logo">
</a>
<ul class="footer-navigation">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="social-links">
<li>
<a href="https://www.facebook.com/Runelocus/" title="Social Link">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://www.twitter.com/Runelocus/" title="Social Link">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</li>
</ul>
<p class="copyright">Copyright © 2018 Runelocus <br />
The first RSPS list ever since 2007</p>
</div>
</div>
</footer>
<script src="https://www.runelocus.com/wp-content/themes/x5-theme/scripts/bundle.js" async></script>
</body>
<div id="fb-root"></div>
<script>
(function (d, s, id)
{
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id))
return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/bootstrap.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/accordion.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/rlav/js/script.js'></script>
<script type="text/javascript">
var wpbanners_action = "https://www.runelocus.com/wp-admin/admin-ajax.php";
var wpbanners_reference_period_days = 30;
var wpbanners_rotation_period = 0;
var wpbanners_banners = {"1":["1042","1063","1061","1000","1050","1066","997","1065"],"2":["992","977","985","979","969"],"3":["975","1005","999","976"],"4":["1064","1054","1058","1060","1062"],"5":["1001","966","1027","1028","967","1052"],"6":["649"]};
var wpbanners_idxs = {"1":0,"2":0,"3":0,"4":0,"5":0,"6":0};
var wpbanners_fresh = {"1":1,"2":1,"3":1,"4":1,"5":1,"6":1};
if (typeof wpbanners_sort == "function" && typeof wpbanners_sort == "function") {
wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});
} else {
jQuery(document).ready(function(){wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});});
}
</script></html>
@@ -0,0 +1,427 @@
<!DOCTYPE html>
<html class="no-js" lang="en-US" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<title>Item Information - RuneLocus</title>
<script src="https://www.google.com/recaptcha/api.js?render=6LeA6poUAAAAAM_dS5qHDLBFsUuuiwHdzHAzzLKJ"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<style type="text/css">
@media screen and (max-width:990px)
{
.sam-place img {
width:95% !important;
}
}
.wpdberror {
display: none;
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-36652818-1', 'auto');
ga('send', 'pageview');
</script>
<script>
var trackOutboundLink = function(url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon',
'hitCallback': function(){document.location = url;}
});
}
</script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1656754394599880');
fbq('track', "PageView");</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1656754394599880&ev=PageView&noscript=1"
/></noscript>
<link rel="canonical" href="https://www.runelocus.com/item-details/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Item Information - RuneLocus" />
<meta property="og:url" content="https://www.runelocus.com/item-details/" />
<meta property="og:site_name" content="RuneLocus" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Item Information - RuneLocus" />
<link rel='dns-prefetch' href='//www.google.com' />
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='otw_grid_manager-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_grid_manager_light/css/otw-grid.css?ver=0.1' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac-font-awesome-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/font-awesome/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac_bootstrap-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/bootstrap-front.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpbanners-css' href='https://www.runelocus.com/wp-content/plugins/rlav/css/style.css' type='text/css' media='all' />
<link rel='stylesheet' id='runelocus-style1-css' href='https://www.runelocus.com/wp-content/plugins/runelocus/css/runelocus.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-font-awesome-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/otw_shortcode.css?ver=4.9.13' type='text/css' media='all' />
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script type='text/javascript' src='https://www.google.com/jsapi?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/runelocus/tinymce/tinymce.min.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode_core.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode.js?ver=4.9.13'></script>
<link rel='https://api.w.org/' href='https://www.runelocus.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.runelocus.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.runelocus.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.9.13" />
<link rel='shortlink' href='https://www.runelocus.com/?p=294' />
<style type="text/css" id="wp-custom-css">
#menu-item-17 {
background: rgba(0, 0, 0, 0.34) !important;
}
@media screen and (min-width: 700px) {
#wpsm_accordion_1951 {
display: none !important;
}
}
.grecaptcha-badge {
display: none !important;
}
.list-item p {
font-size:14px !important;
height: 45px !important;
overflow:hidden !important;
}
</style>
<link rel="stylesheet" property="stylesheet" href="https://www.runelocus.com/wp-content/themes/x5-theme/styles/main.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
document.querySelector('html').classList.remove('no-js');
window.ajax_url = 'https://www.runelocus.com/wp-admin/admin-ajax.php';
</script>
</head>
<body class="page-template-default page page-id-294 innerpage" style="background-image: url('https://www.runelocus.com/wp-content/themes/x5-theme/assets/images/design/banner.jpg')" class="page-template-default page page-id-294 innerpage">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_EN/sdk.js#xfbml=1&version=v2.5&appId=214595121924413";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<header class="c-header">
<div class="i-wrapper">
<div class="logo-wrapper">
<a href="https://www.runelocus.com" class="logo" rel="home">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="">
</a>
</div>
<nav class="navigation-wrapper">
<ul class="main-navigation">
<li id="menu-item-14" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li id="menu-item-15" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li id="menu-item-1857" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li id="menu-item-16" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li id="menu-item-17" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="user-navigation">
<li id="menu-item-21" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="/wp-login.php">Login</a></li>
<li id="menu-item-22" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22"><a href="/wp-login.php?action=register">Register</a></li>
</ul>
</nav>
<div class="hamburger-icon">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</header><div class="o-wrapper">
<section class="banner">
<div class="content-inner">
<h1 class="page-title" title="Item Information">Item Information</h1>
</div>
</section>
</div>
<section class="main-wrapper">
<div class="bg-holder"></div>
<div class="o-wrapper">
<div class="cnt-left match-height u-float-left">
<div class="content-inner">
<style>
.bgusp {
background: url('/wp-content/themes/x5-theme/assets/images/design/bg-pattern.jpg');
min-height: 60px;
padding-top: 15px;
margin-bottom:30px;
}
.usp {
list-style-type: none;
padding: 0;
overflow: hidden;
padding-left:8px;
}
.usp li {
float: left;
font-size: 13px;
padding-right: 30px;
}
.usp li:last-child {
padding-right:0px;
}
</style>
<div class="bgusp">
<center>
<ul class="usp">
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/heart.png' /> First RSPS toplist since 2007 </li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/defence.png' /> Unlike others, we fight vote bots</li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/stats.png' /> Blocking 100k+ vote bots<span style="font-size:10px;">/mo</span></li>
</ul>
</center>
</div>
<div class="content">
<h2>Information about 'Cannon barrels'</h2>
<table class="table">
<tr>
<td>Item ID: </td> <td> 10</td>
</tr>
<tr>
<td>Examine: </td> <td> The barrels for the multicannon.</td>
</tr>
<tr>
<td>Members only? </td> <td> true</td>
</tr>
<tr>
<td>Lendable? </td> <td> false</td>
</tr>
<tr>
<td>Stackable? </td> <td> false</td>
</tr>
<tr>
<td>Shop value </td> <td> 187500</td>
</tr>
<tr>
<td>Equipment slot </td> <td> -1</td>
</tr>
<tr>
<td>Remove beard </td> <td> false</td>
</tr>
<tr>
<td>Remove hair </td> <td> false</td>
</tr>
<tr>
<td>Remove sleeves </td> <td> false</td>
</tr>
<tr>
<td>Weapon type </td> <td> N/A</td>
</tr>
<tr>
<td>Interface model: </td> <td> 63868</td>
</tr>
<tr>
<td>Male model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Model position X: </td> <td> 0</td>
</tr>
<tr>
<td>Model position Y: </td> <td> -3</td>
</tr>
<tr>
<td>Model rotation X: </td> <td> 1872</td>
</tr>
<tr>
<td>Model rotation Y: </td> <td> 188</td>
</tr>
<tr>
<td>Model rotation Z: </td> <td> 0</td>
</tr>
<tr>
<td>Model zoom: </td> <td> 0</td>
</tr>
<tr>
<td>Interface options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Ground options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Tradeable: </td> <td> Yes</td>
</tr>
<tr>
<td>High alch: </td> <td> 112,500 coins</td>
</tr>
<tr>
<td>Low alch: </td> <td> 75,000 coins</td>
</tr>
<tr>
<td>Destroy: </td> <td> Drop</td>
</tr>
<tr>
<td>Exchange: </td> <td> 125522</td>
</tr>
<tr>
<td>Weight: </td> <td> 15 kg</td>
</tr>
<tr>
<td>Quest: </td> <td> Dwarf Cannon</td>
</tr>
</table>
</div>
</div>
</div>
<aside class="sidebar match-height u-float-right">
<div class="content-inner">
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
<div class="block">
<h2>Join Discord</h2>
<a href="https://discord.gg/6rK7dcr" target="_blank"><img src="https://www.runelocus.com/wp-content/uploads/2018/08/disc.jpg" alt="Discord" /></a> </div>
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
</div>
</div>
</aside>
</div>
</section>
<footer class="c-footer u-text-center ">
<div class="o-wrapper">
<div class="content-inner">
<a class="logo-footer">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="Footer Logo">
</a>
<ul class="footer-navigation">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="social-links">
<li>
<a href="https://www.facebook.com/Runelocus/" title="Social Link">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://www.twitter.com/Runelocus/" title="Social Link">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</li>
</ul>
<p class="copyright">Copyright © 2018 Runelocus <br />
The first RSPS list ever since 2007</p>
</div>
</div>
</footer>
<script src="https://www.runelocus.com/wp-content/themes/x5-theme/scripts/bundle.js" async></script>
</body>
<div id="fb-root"></div>
<script>
(function (d, s, id)
{
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id))
return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/bootstrap.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/accordion.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/rlav/js/script.js'></script>
<script type="text/javascript">
var wpbanners_action = "https://www.runelocus.com/wp-admin/admin-ajax.php";
var wpbanners_reference_period_days = 30;
var wpbanners_rotation_period = 0;
var wpbanners_banners = {"1":["1061","1050","1063","997","1065","1042","1066","1000"],"2":["985","992","979","969","977"],"3":["1005","976","975","999"],"4":["1054","1060","1058","1062","1064"],"5":["1001","1028","1027","966","967","1052"],"6":["649"]};
var wpbanners_idxs = {"1":0,"2":0,"3":0,"4":0,"5":0,"6":0};
var wpbanners_fresh = {"1":1,"2":1,"3":1,"4":1,"5":1,"6":1};
if (typeof wpbanners_sort == "function" && typeof wpbanners_sort == "function") {
wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});
} else {
jQuery(document).ready(function(){wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});});
}
</script></html>
@@ -0,0 +1,429 @@
<!DOCTYPE html>
<html class="no-js" lang="en-US" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<title>Item Information - RuneLocus</title>
<script src="https://www.google.com/recaptcha/api.js?render=6LeA6poUAAAAAM_dS5qHDLBFsUuuiwHdzHAzzLKJ"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<style type="text/css">
@media screen and (max-width:990px)
{
.sam-place img {
width:95% !important;
}
}
.wpdberror {
display: none;
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-36652818-1', 'auto');
ga('send', 'pageview');
</script>
<script>
var trackOutboundLink = function(url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon',
'hitCallback': function(){document.location = url;}
});
}
</script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1656754394599880');
fbq('track', "PageView");</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1656754394599880&ev=PageView&noscript=1"
/></noscript>
<link rel="canonical" href="https://www.runelocus.com/item-details/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Item Information - RuneLocus" />
<meta property="og:url" content="https://www.runelocus.com/item-details/" />
<meta property="og:site_name" content="RuneLocus" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Item Information - RuneLocus" />
<link rel='dns-prefetch' href='//www.google.com' />
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='otw_grid_manager-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_grid_manager_light/css/otw-grid.css?ver=0.1' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac-font-awesome-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/font-awesome/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac_bootstrap-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/bootstrap-front.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpbanners-css' href='https://www.runelocus.com/wp-content/plugins/rlav/css/style.css' type='text/css' media='all' />
<link rel='stylesheet' id='runelocus-style1-css' href='https://www.runelocus.com/wp-content/plugins/runelocus/css/runelocus.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-font-awesome-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/otw_shortcode.css?ver=4.9.13' type='text/css' media='all' />
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script type='text/javascript' src='https://www.google.com/jsapi?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/runelocus/tinymce/tinymce.min.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode_core.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode.js?ver=4.9.13'></script>
<link rel='https://api.w.org/' href='https://www.runelocus.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.runelocus.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.runelocus.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.9.13" />
<link rel='shortlink' href='https://www.runelocus.com/?p=294' />
<style type="text/css" id="wp-custom-css">
#menu-item-17 {
background: rgba(0, 0, 0, 0.34) !important;
}
@media screen and (min-width: 700px) {
#wpsm_accordion_1951 {
display: none !important;
}
}
.grecaptcha-badge {
display: none !important;
}
.list-item p {
font-size:14px !important;
height: 45px !important;
overflow:hidden !important;
}
</style>
<link rel="stylesheet" property="stylesheet" href="https://www.runelocus.com/wp-content/themes/x5-theme/styles/main.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
document.querySelector('html').classList.remove('no-js');
window.ajax_url = 'https://www.runelocus.com/wp-admin/admin-ajax.php';
</script>
</head>
<body class="page-template-default page page-id-294 innerpage" style="background-image: url('https://www.runelocus.com/wp-content/themes/x5-theme/assets/images/design/banner.jpg')" class="page-template-default page page-id-294 innerpage">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_EN/sdk.js#xfbml=1&version=v2.5&appId=214595121924413";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<header class="c-header">
<div class="i-wrapper">
<div class="logo-wrapper">
<a href="https://www.runelocus.com" class="logo" rel="home">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="">
</a>
</div>
<nav class="navigation-wrapper">
<ul class="main-navigation">
<li id="menu-item-14" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li id="menu-item-15" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li id="menu-item-1857" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li id="menu-item-16" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li id="menu-item-17" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="user-navigation">
<li id="menu-item-21" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="/wp-login.php">Login</a></li>
<li id="menu-item-22" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22"><a href="/wp-login.php?action=register">Register</a></li>
</ul>
</nav>
<div class="hamburger-icon">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</header><div class="o-wrapper">
<section class="banner">
<div class="content-inner">
<h1 class="page-title" title="Item Information">Item Information</h1>
</div>
</section>
</div>
<section class="main-wrapper">
<div class="bg-holder"></div>
<div class="o-wrapper">
<div class="cnt-left match-height u-float-left">
<div class="content-inner">
<style>
.bgusp {
background: url('/wp-content/themes/x5-theme/assets/images/design/bg-pattern.jpg');
min-height: 60px;
padding-top: 15px;
margin-bottom:30px;
}
.usp {
list-style-type: none;
padding: 0;
overflow: hidden;
padding-left:8px;
}
.usp li {
float: left;
font-size: 13px;
padding-right: 30px;
}
.usp li:last-child {
padding-right:0px;
}
</style>
<div class="bgusp">
<center>
<ul class="usp">
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/heart.png' /> First RSPS toplist since 2007 </li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/defence.png' /> Unlike others, we fight vote bots</li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/stats.png' /> Blocking 100k+ vote bots<span style="font-size:10px;">/mo</span></li>
</ul>
</center>
</div>
<div class="content">
<h2>Information about 'Ranarr potion (unf)'</h2>
<table class="table">
<tr>
<td>Item ID: </td> <td> 100</td>
</tr>
<tr>
<td>Examine: </td> <td> I need another ingredient to finish this ranarr potion.</td>
</tr>
<tr>
<td>Members only? </td> <td> true</td>
</tr>
<tr>
<td>Lendable? </td> <td> false</td>
</tr>
<tr>
<td>Stackable? </td> <td> true</td>
</tr>
<tr>
<td>Shop value </td> <td> 25</td>
</tr>
<tr>
<td>Equipment slot </td> <td> -1</td>
</tr>
<tr>
<td>Remove beard </td> <td> false</td>
</tr>
<tr>
<td>Remove hair </td> <td> false</td>
</tr>
<tr>
<td>Remove sleeves </td> <td> false</td>
</tr>
<tr>
<td>Weapon type </td> <td> N/A</td>
</tr>
<tr>
<td>Interface model: </td> <td> 2429</td>
</tr>
<tr>
<td>Male model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Model position X: </td> <td> 0</td>
</tr>
<tr>
<td>Model position Y: </td> <td> 2</td>
</tr>
<tr>
<td>Model rotation X: </td> <td> 28</td>
</tr>
<tr>
<td>Model rotation Y: </td> <td> 552</td>
</tr>
<tr>
<td>Model rotation Z: </td> <td> 0</td>
</tr>
<tr>
<td>Model zoom: </td> <td> 760</td>
</tr>
<tr>
<td>Interface options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Ground options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Tradeable: </td> <td> Yes</td>
</tr>
<tr>
<td>High alch: </td> <td> 15 coins</td>
</tr>
<tr>
<td>Low alch: </td> <td> 10 coins</td>
</tr>
<tr>
<td>Destroy: </td> <td> Drop</td>
</tr>
<tr>
<td>Exchange: </td> <td> 3085</td>
</tr>
<tr>
<td>Weight: </td> <td> 0 kg</td>
</tr>
<tr>
<td>Quest: </td> <td> No</td>
</tr>
</table>
</div>
</div>
</div>
<aside class="sidebar match-height u-float-right">
<div class="content-inner">
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
<div class="block">
<h2>Join Discord</h2>
<a href="https://discord.gg/6rK7dcr" target="_blank"><img src="https://www.runelocus.com/wp-content/uploads/2018/08/disc.jpg" alt="Discord" /></a> </div>
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
</div>
</div>
</aside>
</div>
</section>
<footer class="c-footer u-text-center ">
<div class="o-wrapper">
<div class="content-inner">
<a class="logo-footer">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="Footer Logo">
</a>
<ul class="footer-navigation">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="social-links">
<li>
<a href="https://www.facebook.com/Runelocus/" title="Social Link">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://www.twitter.com/Runelocus/" title="Social Link">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</li>
</ul>
<p class="copyright">Copyright © 2018 Runelocus <br />
The first RSPS list ever since 2007</p>
</div>
</div>
</footer>
<script src="https://www.runelocus.com/wp-content/themes/x5-theme/scripts/bundle.js" async></script>
</body>
<div id="fb-root"></div>
<script>
(function (d, s, id)
{
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id))
return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/bootstrap.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/accordion.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/rlav/js/script.js'></script>
<script type="text/javascript">
var wpbanners_action = "https://www.runelocus.com/wp-admin/admin-ajax.php";
var wpbanners_reference_period_days = 30;
var wpbanners_rotation_period = 0;
var wpbanners_banners = {"1":["1000","1063","997","1065","1042","1061","1066","1050"],"2":["979","985","977","969","992"],"3":["1005","999","976","975"],"4":["1060","1062","1064","1058","1054"],"5":["1027","1001","1052","967","1028","966"],"6":["649"]};
var wpbanners_idxs = {"1":0,"2":0,"3":0,"4":0,"5":0,"6":0};
var wpbanners_fresh = {"1":1,"2":1,"3":1,"4":1,"5":1,"6":1};
if (typeof wpbanners_sort == "function" && typeof wpbanners_sort == "function") {
wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});
} else {
jQuery(document).ready(function(){wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});});
}
</script></html>
@@ -0,0 +1,427 @@
<!DOCTYPE html>
<html class="no-js" lang="en-US" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<title>Item Information - RuneLocus</title>
<script src="https://www.google.com/recaptcha/api.js?render=6LeA6poUAAAAAM_dS5qHDLBFsUuuiwHdzHAzzLKJ"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<style type="text/css">
@media screen and (max-width:990px)
{
.sam-place img {
width:95% !important;
}
}
.wpdberror {
display: none;
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-36652818-1', 'auto');
ga('send', 'pageview');
</script>
<script>
var trackOutboundLink = function(url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon',
'hitCallback': function(){document.location = url;}
});
}
</script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1656754394599880');
fbq('track', "PageView");</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1656754394599880&ev=PageView&noscript=1"
/></noscript>
<link rel="canonical" href="https://www.runelocus.com/item-details/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Item Information - RuneLocus" />
<meta property="og:url" content="https://www.runelocus.com/item-details/" />
<meta property="og:site_name" content="RuneLocus" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Item Information - RuneLocus" />
<link rel='dns-prefetch' href='//www.google.com' />
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='otw_grid_manager-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_grid_manager_light/css/otw-grid.css?ver=0.1' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac-font-awesome-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/font-awesome/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac_bootstrap-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/bootstrap-front.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpbanners-css' href='https://www.runelocus.com/wp-content/plugins/rlav/css/style.css' type='text/css' media='all' />
<link rel='stylesheet' id='runelocus-style1-css' href='https://www.runelocus.com/wp-content/plugins/runelocus/css/runelocus.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-font-awesome-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/otw_shortcode.css?ver=4.9.13' type='text/css' media='all' />
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script type='text/javascript' src='https://www.google.com/jsapi?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/runelocus/tinymce/tinymce.min.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode_core.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode.js?ver=4.9.13'></script>
<link rel='https://api.w.org/' href='https://www.runelocus.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.runelocus.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.runelocus.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.9.13" />
<link rel='shortlink' href='https://www.runelocus.com/?p=294' />
<style type="text/css" id="wp-custom-css">
#menu-item-17 {
background: rgba(0, 0, 0, 0.34) !important;
}
@media screen and (min-width: 700px) {
#wpsm_accordion_1951 {
display: none !important;
}
}
.grecaptcha-badge {
display: none !important;
}
.list-item p {
font-size:14px !important;
height: 45px !important;
overflow:hidden !important;
}
</style>
<link rel="stylesheet" property="stylesheet" href="https://www.runelocus.com/wp-content/themes/x5-theme/styles/main.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
document.querySelector('html').classList.remove('no-js');
window.ajax_url = 'https://www.runelocus.com/wp-admin/admin-ajax.php';
</script>
</head>
<body class="page-template-default page page-id-294 innerpage" style="background-image: url('https://www.runelocus.com/wp-content/themes/x5-theme/assets/images/design/banner.jpg')" class="page-template-default page page-id-294 innerpage">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_EN/sdk.js#xfbml=1&version=v2.5&appId=214595121924413";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<header class="c-header">
<div class="i-wrapper">
<div class="logo-wrapper">
<a href="https://www.runelocus.com" class="logo" rel="home">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="">
</a>
</div>
<nav class="navigation-wrapper">
<ul class="main-navigation">
<li id="menu-item-14" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li id="menu-item-15" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li id="menu-item-1857" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li id="menu-item-16" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li id="menu-item-17" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="user-navigation">
<li id="menu-item-21" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="/wp-login.php">Login</a></li>
<li id="menu-item-22" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22"><a href="/wp-login.php?action=register">Register</a></li>
</ul>
</nav>
<div class="hamburger-icon">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</header><div class="o-wrapper">
<section class="banner">
<div class="content-inner">
<h1 class="page-title" title="Item Information">Item Information</h1>
</div>
</section>
</div>
<section class="main-wrapper">
<div class="bg-holder"></div>
<div class="o-wrapper">
<div class="cnt-left match-height u-float-left">
<div class="content-inner">
<style>
.bgusp {
background: url('/wp-content/themes/x5-theme/assets/images/design/bg-pattern.jpg');
min-height: 60px;
padding-top: 15px;
margin-bottom:30px;
}
.usp {
list-style-type: none;
padding: 0;
overflow: hidden;
padding-left:8px;
}
.usp li {
float: left;
font-size: 13px;
padding-right: 30px;
}
.usp li:last-child {
padding-right:0px;
}
</style>
<div class="bgusp">
<center>
<ul class="usp">
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/heart.png' /> First RSPS toplist since 2007 </li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/defence.png' /> Unlike others, we fight vote bots</li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/stats.png' /> Blocking 100k+ vote bots<span style="font-size:10px;">/mo</span></li>
</ul>
</center>
</div>
<div class="content">
<h2>Information about '0'</h2>
<table class="table">
<tr>
<td>Item ID: </td> <td> 1000</td>
</tr>
<tr>
<td>Examine: </td> <td> ?</td>
</tr>
<tr>
<td>Members only? </td> <td> false</td>
</tr>
<tr>
<td>Lendable? </td> <td> false</td>
</tr>
<tr>
<td>Stackable? </td> <td> true</td>
</tr>
<tr>
<td>Shop value </td> <td> 0</td>
</tr>
<tr>
<td>Equipment slot </td> <td> -1</td>
</tr>
<tr>
<td>Remove beard </td> <td> false</td>
</tr>
<tr>
<td>Remove hair </td> <td> false</td>
</tr>
<tr>
<td>Remove sleeves </td> <td> false</td>
</tr>
<tr>
<td>Weapon type </td> <td> N/A</td>
</tr>
<tr>
<td>Interface model: </td> <td> 2667</td>
</tr>
<tr>
<td>Male model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Model position X: </td> <td> 3</td>
</tr>
<tr>
<td>Model position Y: </td> <td> 0</td>
</tr>
<tr>
<td>Model rotation X: </td> <td> 2012</td>
</tr>
<tr>
<td>Model rotation Y: </td> <td> 184</td>
</tr>
<tr>
<td>Model rotation Z: </td> <td> 0</td>
</tr>
<tr>
<td>Model zoom: </td> <td> 710</td>
</tr>
<tr>
<td>Interface options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Ground options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Tradeable: </td> <td> ?</td>
</tr>
<tr>
<td>High alch: </td> <td> ?</td>
</tr>
<tr>
<td>Low alch: </td> <td> ?</td>
</tr>
<tr>
<td>Destroy: </td> <td> ?</td>
</tr>
<tr>
<td>Exchange: </td> <td> ?</td>
</tr>
<tr>
<td>Weight: </td> <td> ?</td>
</tr>
<tr>
<td>Quest: </td> <td> ?</td>
</tr>
</table>
</div>
</div>
</div>
<aside class="sidebar match-height u-float-right">
<div class="content-inner">
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
<div class="block">
<h2>Join Discord</h2>
<a href="https://discord.gg/6rK7dcr" target="_blank"><img src="https://www.runelocus.com/wp-content/uploads/2018/08/disc.jpg" alt="Discord" /></a> </div>
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
</div>
</div>
</aside>
</div>
</section>
<footer class="c-footer u-text-center ">
<div class="o-wrapper">
<div class="content-inner">
<a class="logo-footer">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="Footer Logo">
</a>
<ul class="footer-navigation">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="social-links">
<li>
<a href="https://www.facebook.com/Runelocus/" title="Social Link">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://www.twitter.com/Runelocus/" title="Social Link">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</li>
</ul>
<p class="copyright">Copyright © 2018 Runelocus <br />
The first RSPS list ever since 2007</p>
</div>
</div>
</footer>
<script src="https://www.runelocus.com/wp-content/themes/x5-theme/scripts/bundle.js" async></script>
</body>
<div id="fb-root"></div>
<script>
(function (d, s, id)
{
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id))
return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/bootstrap.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/accordion.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/rlav/js/script.js'></script>
<script type="text/javascript">
var wpbanners_action = "https://www.runelocus.com/wp-admin/admin-ajax.php";
var wpbanners_reference_period_days = 30;
var wpbanners_rotation_period = 0;
var wpbanners_banners = {"1":["1061","1000","1065","1063","1066","1050","997","1042"],"2":["969","992","979","985","977"],"3":["976","975","1005","999"],"4":["1054","1062","1060","1058","1064"],"5":["1027","967","1001","966","1052","1028"],"6":["649"]};
var wpbanners_idxs = {"1":0,"2":0,"3":0,"4":0,"5":0,"6":0};
var wpbanners_fresh = {"1":1,"2":1,"3":1,"4":1,"5":1,"6":1};
if (typeof wpbanners_sort == "function" && typeof wpbanners_sort == "function") {
wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});
} else {
jQuery(document).ready(function(){wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});});
}
</script></html>
@@ -0,0 +1,430 @@
<!DOCTYPE html>
<html class="no-js" lang="en-US" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<title>Item Information - RuneLocus</title>
<script src="https://www.google.com/recaptcha/api.js?render=6LeA6poUAAAAAM_dS5qHDLBFsUuuiwHdzHAzzLKJ"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<style type="text/css">
@media screen and (max-width:990px)
{
.sam-place img {
width:95% !important;
}
}
.wpdberror {
display: none;
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-36652818-1', 'auto');
ga('send', 'pageview');
</script>
<script>
var trackOutboundLink = function(url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon',
'hitCallback': function(){document.location = url;}
});
}
</script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1656754394599880');
fbq('track', "PageView");</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1656754394599880&ev=PageView&noscript=1"
/></noscript>
<link rel="canonical" href="https://www.runelocus.com/item-details/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Item Information - RuneLocus" />
<meta property="og:url" content="https://www.runelocus.com/item-details/" />
<meta property="og:site_name" content="RuneLocus" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Item Information - RuneLocus" />
<link rel='dns-prefetch' href='//www.google.com' />
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='otw_grid_manager-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_grid_manager_light/css/otw-grid.css?ver=0.1' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac-font-awesome-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/font-awesome/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac_bootstrap-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/bootstrap-front.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpbanners-css' href='https://www.runelocus.com/wp-content/plugins/rlav/css/style.css' type='text/css' media='all' />
<link rel='stylesheet' id='runelocus-style1-css' href='https://www.runelocus.com/wp-content/plugins/runelocus/css/runelocus.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-font-awesome-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/otw_shortcode.css?ver=4.9.13' type='text/css' media='all' />
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script type='text/javascript' src='https://www.google.com/jsapi?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/runelocus/tinymce/tinymce.min.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode_core.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode.js?ver=4.9.13'></script>
<link rel='https://api.w.org/' href='https://www.runelocus.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.runelocus.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.runelocus.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.9.13" />
<link rel='shortlink' href='https://www.runelocus.com/?p=294' />
<style type="text/css" id="wp-custom-css">
#menu-item-17 {
background: rgba(0, 0, 0, 0.34) !important;
}
@media screen and (min-width: 700px) {
#wpsm_accordion_1951 {
display: none !important;
}
}
.grecaptcha-badge {
display: none !important;
}
.list-item p {
font-size:14px !important;
height: 45px !important;
overflow:hidden !important;
}
</style>
<link rel="stylesheet" property="stylesheet" href="https://www.runelocus.com/wp-content/themes/x5-theme/styles/main.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
document.querySelector('html').classList.remove('no-js');
window.ajax_url = 'https://www.runelocus.com/wp-admin/admin-ajax.php';
</script>
</head>
<body class="page-template-default page page-id-294 innerpage" style="background-image: url('https://www.runelocus.com/wp-content/themes/x5-theme/assets/images/design/banner.jpg')" class="page-template-default page page-id-294 innerpage">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_EN/sdk.js#xfbml=1&version=v2.5&appId=214595121924413";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<header class="c-header">
<div class="i-wrapper">
<div class="logo-wrapper">
<a href="https://www.runelocus.com" class="logo" rel="home">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="">
</a>
</div>
<nav class="navigation-wrapper">
<ul class="main-navigation">
<li id="menu-item-14" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li id="menu-item-15" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li id="menu-item-1857" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li id="menu-item-16" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li id="menu-item-17" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="user-navigation">
<li id="menu-item-21" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="/wp-login.php">Login</a></li>
<li id="menu-item-22" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22"><a href="/wp-login.php?action=register">Register</a></li>
</ul>
</nav>
<div class="hamburger-icon">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</header><div class="o-wrapper">
<section class="banner">
<div class="content-inner">
<h1 class="page-title" title="Item Information">Item Information</h1>
</div>
</section>
</div>
<section class="main-wrapper">
<div class="bg-holder"></div>
<div class="o-wrapper">
<div class="cnt-left match-height u-float-left">
<div class="content-inner">
<style>
.bgusp {
background: url('/wp-content/themes/x5-theme/assets/images/design/bg-pattern.jpg');
min-height: 60px;
padding-top: 15px;
margin-bottom:30px;
}
.usp {
list-style-type: none;
padding: 0;
overflow: hidden;
padding-left:8px;
}
.usp li {
float: left;
font-size: 13px;
padding-right: 30px;
}
.usp li:last-child {
padding-right:0px;
}
</style>
<div class="bgusp">
<center>
<ul class="usp">
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/heart.png' /> First RSPS toplist since 2007 </li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/defence.png' /> Unlike others, we fight vote bots</li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/stats.png' /> Blocking 100k+ vote bots<span style="font-size:10px;">/mo</span></li>
</ul>
</center>
</div>
<div class="content">
<h2>Information about '0'</h2>
<table class="table">
<tr>
<td>Item ID: </td> <td> 1001</td>
</tr>
<tr>
<td>Examine: </td> <td> ?</td>
</tr>
<tr>
<td>Members only? </td> <td> false</td>
</tr>
<tr>
<td>Lendable? </td> <td> false</td>
</tr>
<tr>
<td>Stackable? </td> <td> true</td>
</tr>
<tr>
<td>Shop value </td> <td> 0</td>
</tr>
<tr>
<td>Equipment slot </td> <td> -1</td>
</tr>
<tr>
<td>Remove beard </td> <td> false</td>
</tr>
<tr>
<td>Remove hair </td> <td> false</td>
</tr>
<tr>
<td>Remove sleeves </td> <td> false</td>
</tr>
<tr>
<td>Weapon type </td> <td> N/A</td>
</tr>
<tr>
<td>Interface model: </td> <td> 2825</td>
</tr>
<tr>
<td>Male model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Model position X: </td> <td> 3</td>
</tr>
<tr>
<td>Model position Y: </td> <td> 0</td>
</tr>
<tr>
<td>Model rotation X: </td> <td> 2012</td>
</tr>
<tr>
<td>Model rotation Y: </td> <td> 184</td>
</tr>
<tr>
<td>Model rotation Z: </td> <td> 0</td>
</tr>
<tr>
<td>Model zoom: </td> <td> 710</td>
</tr>
<tr>
<td>Interface options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Ground options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Tradeable: </td> <td> ?</td>
</tr>
<tr>
<td>High alch: </td> <td> ?</td>
</tr>
<tr>
<td>Low alch: </td> <td> ?</td>
</tr>
<tr>
<td>Destroy: </td> <td> ?</td>
</tr>
<tr>
<td>Exchange: </td> <td> ?</td>
</tr>
<tr>
<td>Weight: </td> <td> ?</td>
</tr>
<tr>
<td>Quest: </td> <td> ?</td>
</tr>
</table>
</div>
</div>
</div>
<aside class="sidebar match-height u-float-right">
<div class="content-inner">
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
<div class="block">
<h2>Join Discord</h2>
<a href="https://discord.gg/6rK7dcr" target="_blank"><img src="https://www.runelocus.com/wp-content/uploads/2018/08/disc.jpg" alt="Discord" /></a> </div>
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
</div>
</div>
</aside>
</div>
</section>
<footer class="c-footer u-text-center ">
<div class="o-wrapper">
<div class="content-inner">
<a class="logo-footer">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="Footer Logo">
</a>
<ul class="footer-navigation">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="social-links">
<li>
<a href="https://www.facebook.com/Runelocus/" title="Social Link">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://www.twitter.com/Runelocus/" title="Social Link">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</li>
</ul>
<p class="copyright">Copyright © 2018 Runelocus <br />
The first RSPS list ever since 2007</p>
</div>
</div>
</footer>
<script src="https://www.runelocus.com/wp-content/themes/x5-theme/scripts/bundle.js" async></script>
</body>
<div id="fb-root"></div>
<script>
(function (d, s, id)
{
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id))
return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/bootstrap.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/accordion.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/rlav/js/script.js'></script>
<script type="text/javascript">
var wpbanners_action = "https://www.runelocus.com/wp-admin/admin-ajax.php";
var wpbanners_reference_period_days = 30;
var wpbanners_rotation_period = 0;
var wpbanners_banners = {"1":["1050","1042","1000","1061","1066","1063","997","1065"],"2":["969","985","992","979","977"],"3":["999","976","1005","975"],"4":["1062","1064","1060","1054","1058"],"5":["1001","1052","1028","966","967","1027"],"6":["649"]};
var wpbanners_idxs = {"1":0,"2":0,"3":0,"4":0,"5":0,"6":0};
var wpbanners_fresh = {"1":1,"2":1,"3":1,"4":1,"5":1,"6":1};
if (typeof wpbanners_sort == "function" && typeof wpbanners_sort == "function") {
wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});
} else {
jQuery(document).ready(function(){wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});});
}
</script></html>
@@ -0,0 +1,428 @@
<!DOCTYPE html>
<html class="no-js" lang="en-US" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<title>Item Information - RuneLocus</title>
<script src="https://www.google.com/recaptcha/api.js?render=6LeA6poUAAAAAM_dS5qHDLBFsUuuiwHdzHAzzLKJ"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<style type="text/css">
@media screen and (max-width:990px)
{
.sam-place img {
width:95% !important;
}
}
.wpdberror {
display: none;
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-36652818-1', 'auto');
ga('send', 'pageview');
</script>
<script>
var trackOutboundLink = function(url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon',
'hitCallback': function(){document.location = url;}
});
}
</script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1656754394599880');
fbq('track', "PageView");</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1656754394599880&ev=PageView&noscript=1"
/></noscript>
<link rel="canonical" href="https://www.runelocus.com/item-details/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Item Information - RuneLocus" />
<meta property="og:url" content="https://www.runelocus.com/item-details/" />
<meta property="og:site_name" content="RuneLocus" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Item Information - RuneLocus" />
<link rel='dns-prefetch' href='//www.google.com' />
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='otw_grid_manager-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_grid_manager_light/css/otw-grid.css?ver=0.1' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac-font-awesome-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/font-awesome/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac_bootstrap-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/bootstrap-front.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpbanners-css' href='https://www.runelocus.com/wp-content/plugins/rlav/css/style.css' type='text/css' media='all' />
<link rel='stylesheet' id='runelocus-style1-css' href='https://www.runelocus.com/wp-content/plugins/runelocus/css/runelocus.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-font-awesome-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/otw_shortcode.css?ver=4.9.13' type='text/css' media='all' />
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script type='text/javascript' src='https://www.google.com/jsapi?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/runelocus/tinymce/tinymce.min.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode_core.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode.js?ver=4.9.13'></script>
<link rel='https://api.w.org/' href='https://www.runelocus.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.runelocus.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.runelocus.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.9.13" />
<link rel='shortlink' href='https://www.runelocus.com/?p=294' />
<style type="text/css" id="wp-custom-css">
#menu-item-17 {
background: rgba(0, 0, 0, 0.34) !important;
}
@media screen and (min-width: 700px) {
#wpsm_accordion_1951 {
display: none !important;
}
}
.grecaptcha-badge {
display: none !important;
}
.list-item p {
font-size:14px !important;
height: 45px !important;
overflow:hidden !important;
}
</style>
<link rel="stylesheet" property="stylesheet" href="https://www.runelocus.com/wp-content/themes/x5-theme/styles/main.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
document.querySelector('html').classList.remove('no-js');
window.ajax_url = 'https://www.runelocus.com/wp-admin/admin-ajax.php';
</script>
</head>
<body class="page-template-default page page-id-294 innerpage" style="background-image: url('https://www.runelocus.com/wp-content/themes/x5-theme/assets/images/design/banner.jpg')" class="page-template-default page page-id-294 innerpage">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_EN/sdk.js#xfbml=1&version=v2.5&appId=214595121924413";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<header class="c-header">
<div class="i-wrapper">
<div class="logo-wrapper">
<a href="https://www.runelocus.com" class="logo" rel="home">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="">
</a>
</div>
<nav class="navigation-wrapper">
<ul class="main-navigation">
<li id="menu-item-14" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li id="menu-item-15" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li id="menu-item-1857" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li id="menu-item-16" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li id="menu-item-17" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="user-navigation">
<li id="menu-item-21" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="/wp-login.php">Login</a></li>
<li id="menu-item-22" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22"><a href="/wp-login.php?action=register">Register</a></li>
</ul>
</nav>
<div class="hamburger-icon">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</header><div class="o-wrapper">
<section class="banner">
<div class="content-inner">
<h1 class="page-title" title="Item Information">Item Information</h1>
</div>
</section>
</div>
<section class="main-wrapper">
<div class="bg-holder"></div>
<div class="o-wrapper">
<div class="cnt-left match-height u-float-left">
<div class="content-inner">
<style>
.bgusp {
background: url('/wp-content/themes/x5-theme/assets/images/design/bg-pattern.jpg');
min-height: 60px;
padding-top: 15px;
margin-bottom:30px;
}
.usp {
list-style-type: none;
padding: 0;
overflow: hidden;
padding-left:8px;
}
.usp li {
float: left;
font-size: 13px;
padding-right: 30px;
}
.usp li:last-child {
padding-right:0px;
}
</style>
<div class="bgusp">
<center>
<ul class="usp">
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/heart.png' /> First RSPS toplist since 2007 </li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/defence.png' /> Unlike others, we fight vote bots</li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/stats.png' /> Blocking 100k+ vote bots<span style="font-size:10px;">/mo</span></li>
</ul>
</center>
</div>
<div class="content">
<h2>Information about '0'</h2>
<table class="table">
<tr>
<td>Item ID: </td> <td> 1002</td>
</tr>
<tr>
<td>Examine: </td> <td> ?</td>
</tr>
<tr>
<td>Members only? </td> <td> false</td>
</tr>
<tr>
<td>Lendable? </td> <td> false</td>
</tr>
<tr>
<td>Stackable? </td> <td> true</td>
</tr>
<tr>
<td>Shop value </td> <td> 0</td>
</tr>
<tr>
<td>Equipment slot </td> <td> -1</td>
</tr>
<tr>
<td>Remove beard </td> <td> false</td>
</tr>
<tr>
<td>Remove hair </td> <td> false</td>
</tr>
<tr>
<td>Remove sleeves </td> <td> false</td>
</tr>
<tr>
<td>Weapon type </td> <td> N/A</td>
</tr>
<tr>
<td>Interface model: </td> <td> 2423</td>
</tr>
<tr>
<td>Male model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Model position X: </td> <td> 2</td>
</tr>
<tr>
<td>Model position Y: </td> <td> -2</td>
</tr>
<tr>
<td>Model rotation X: </td> <td> 2044</td>
</tr>
<tr>
<td>Model rotation Y: </td> <td> 160</td>
</tr>
<tr>
<td>Model rotation Z: </td> <td> 0</td>
</tr>
<tr>
<td>Model zoom: </td> <td> 650</td>
</tr>
<tr>
<td>Interface options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Ground options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Tradeable: </td> <td> ?</td>
</tr>
<tr>
<td>High alch: </td> <td> ?</td>
</tr>
<tr>
<td>Low alch: </td> <td> ?</td>
</tr>
<tr>
<td>Destroy: </td> <td> ?</td>
</tr>
<tr>
<td>Exchange: </td> <td> ?</td>
</tr>
<tr>
<td>Weight: </td> <td> ?</td>
</tr>
<tr>
<td>Quest: </td> <td> ?</td>
</tr>
</table>
</div>
</div>
</div>
<aside class="sidebar match-height u-float-right">
<div class="content-inner">
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
<div class="block">
<h2>Join Discord</h2>
<a href="https://discord.gg/6rK7dcr" target="_blank"><img src="https://www.runelocus.com/wp-content/uploads/2018/08/disc.jpg" alt="Discord" /></a> </div>
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
</div>
</div>
</aside>
</div>
</section>
<footer class="c-footer u-text-center ">
<div class="o-wrapper">
<div class="content-inner">
<a class="logo-footer">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="Footer Logo">
</a>
<ul class="footer-navigation">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="social-links">
<li>
<a href="https://www.facebook.com/Runelocus/" title="Social Link">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://www.twitter.com/Runelocus/" title="Social Link">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</li>
</ul>
<p class="copyright">Copyright © 2018 Runelocus <br />
The first RSPS list ever since 2007</p>
</div>
</div>
</footer>
<script src="https://www.runelocus.com/wp-content/themes/x5-theme/scripts/bundle.js" async></script>
</body>
<div id="fb-root"></div>
<script>
(function (d, s, id)
{
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id))
return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/bootstrap.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/accordion.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/rlav/js/script.js'></script>
<script type="text/javascript">
var wpbanners_action = "https://www.runelocus.com/wp-admin/admin-ajax.php";
var wpbanners_reference_period_days = 30;
var wpbanners_rotation_period = 0;
var wpbanners_banners = {"1":["1050","1066","1061","1000","1063","1065","1042","997"],"2":["977","992","985","969","979"],"3":["976","999","975","1005"],"4":["1060","1058","1062","1064","1054"],"5":["967","966","1001","1027","1052","1028"],"6":["649"]};
var wpbanners_idxs = {"1":0,"2":0,"3":0,"4":0,"5":0,"6":0};
var wpbanners_fresh = {"1":1,"2":1,"3":1,"4":1,"5":1,"6":1};
if (typeof wpbanners_sort == "function" && typeof wpbanners_sort == "function") {
wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});
} else {
jQuery(document).ready(function(){wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});});
}
</script></html>
@@ -0,0 +1,428 @@
<!DOCTYPE html>
<html class="no-js" lang="en-US" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<title>Item Information - RuneLocus</title>
<script src="https://www.google.com/recaptcha/api.js?render=6LeA6poUAAAAAM_dS5qHDLBFsUuuiwHdzHAzzLKJ"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<style type="text/css">
@media screen and (max-width:990px)
{
.sam-place img {
width:95% !important;
}
}
.wpdberror {
display: none;
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-36652818-1', 'auto');
ga('send', 'pageview');
</script>
<script>
var trackOutboundLink = function(url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon',
'hitCallback': function(){document.location = url;}
});
}
</script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1656754394599880');
fbq('track', "PageView");</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1656754394599880&ev=PageView&noscript=1"
/></noscript>
<link rel="canonical" href="https://www.runelocus.com/item-details/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Item Information - RuneLocus" />
<meta property="og:url" content="https://www.runelocus.com/item-details/" />
<meta property="og:site_name" content="RuneLocus" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Item Information - RuneLocus" />
<link rel='dns-prefetch' href='//www.google.com' />
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='otw_grid_manager-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_grid_manager_light/css/otw-grid.css?ver=0.1' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac-font-awesome-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/font-awesome/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac_bootstrap-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/bootstrap-front.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpbanners-css' href='https://www.runelocus.com/wp-content/plugins/rlav/css/style.css' type='text/css' media='all' />
<link rel='stylesheet' id='runelocus-style1-css' href='https://www.runelocus.com/wp-content/plugins/runelocus/css/runelocus.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-font-awesome-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/otw_shortcode.css?ver=4.9.13' type='text/css' media='all' />
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script type='text/javascript' src='https://www.google.com/jsapi?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/runelocus/tinymce/tinymce.min.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode_core.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode.js?ver=4.9.13'></script>
<link rel='https://api.w.org/' href='https://www.runelocus.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.runelocus.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.runelocus.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.9.13" />
<link rel='shortlink' href='https://www.runelocus.com/?p=294' />
<style type="text/css" id="wp-custom-css">
#menu-item-17 {
background: rgba(0, 0, 0, 0.34) !important;
}
@media screen and (min-width: 700px) {
#wpsm_accordion_1951 {
display: none !important;
}
}
.grecaptcha-badge {
display: none !important;
}
.list-item p {
font-size:14px !important;
height: 45px !important;
overflow:hidden !important;
}
</style>
<link rel="stylesheet" property="stylesheet" href="https://www.runelocus.com/wp-content/themes/x5-theme/styles/main.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
document.querySelector('html').classList.remove('no-js');
window.ajax_url = 'https://www.runelocus.com/wp-admin/admin-ajax.php';
</script>
</head>
<body class="page-template-default page page-id-294 innerpage" style="background-image: url('https://www.runelocus.com/wp-content/themes/x5-theme/assets/images/design/banner.jpg')" class="page-template-default page page-id-294 innerpage">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_EN/sdk.js#xfbml=1&version=v2.5&appId=214595121924413";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<header class="c-header">
<div class="i-wrapper">
<div class="logo-wrapper">
<a href="https://www.runelocus.com" class="logo" rel="home">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="">
</a>
</div>
<nav class="navigation-wrapper">
<ul class="main-navigation">
<li id="menu-item-14" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li id="menu-item-15" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li id="menu-item-1857" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li id="menu-item-16" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li id="menu-item-17" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="user-navigation">
<li id="menu-item-21" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="/wp-login.php">Login</a></li>
<li id="menu-item-22" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22"><a href="/wp-login.php?action=register">Register</a></li>
</ul>
</nav>
<div class="hamburger-icon">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</header><div class="o-wrapper">
<section class="banner">
<div class="content-inner">
<h1 class="page-title" title="Item Information">Item Information</h1>
</div>
</section>
</div>
<section class="main-wrapper">
<div class="bg-holder"></div>
<div class="o-wrapper">
<div class="cnt-left match-height u-float-left">
<div class="content-inner">
<style>
.bgusp {
background: url('/wp-content/themes/x5-theme/assets/images/design/bg-pattern.jpg');
min-height: 60px;
padding-top: 15px;
margin-bottom:30px;
}
.usp {
list-style-type: none;
padding: 0;
overflow: hidden;
padding-left:8px;
}
.usp li {
float: left;
font-size: 13px;
padding-right: 30px;
}
.usp li:last-child {
padding-right:0px;
}
</style>
<div class="bgusp">
<center>
<ul class="usp">
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/heart.png' /> First RSPS toplist since 2007 </li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/defence.png' /> Unlike others, we fight vote bots</li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/stats.png' /> Blocking 100k+ vote bots<span style="font-size:10px;">/mo</span></li>
</ul>
</center>
</div>
<div class="content">
<h2>Information about '0'</h2>
<table class="table">
<tr>
<td>Item ID: </td> <td> 1003</td>
</tr>
<tr>
<td>Examine: </td> <td> ?</td>
</tr>
<tr>
<td>Members only? </td> <td> false</td>
</tr>
<tr>
<td>Lendable? </td> <td> false</td>
</tr>
<tr>
<td>Stackable? </td> <td> true</td>
</tr>
<tr>
<td>Shop value </td> <td> 0</td>
</tr>
<tr>
<td>Equipment slot </td> <td> -1</td>
</tr>
<tr>
<td>Remove beard </td> <td> false</td>
</tr>
<tr>
<td>Remove hair </td> <td> false</td>
</tr>
<tr>
<td>Remove sleeves </td> <td> false</td>
</tr>
<tr>
<td>Weapon type </td> <td> N/A</td>
</tr>
<tr>
<td>Interface model: </td> <td> 2710</td>
</tr>
<tr>
<td>Male model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Model position X: </td> <td> 11</td>
</tr>
<tr>
<td>Model position Y: </td> <td> 13</td>
</tr>
<tr>
<td>Model rotation X: </td> <td> 64</td>
</tr>
<tr>
<td>Model rotation Y: </td> <td> 172</td>
</tr>
<tr>
<td>Model rotation Z: </td> <td> 0</td>
</tr>
<tr>
<td>Model zoom: </td> <td> 980</td>
</tr>
<tr>
<td>Interface options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Ground options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Tradeable: </td> <td> ?</td>
</tr>
<tr>
<td>High alch: </td> <td> ?</td>
</tr>
<tr>
<td>Low alch: </td> <td> ?</td>
</tr>
<tr>
<td>Destroy: </td> <td> ?</td>
</tr>
<tr>
<td>Exchange: </td> <td> ?</td>
</tr>
<tr>
<td>Weight: </td> <td> ?</td>
</tr>
<tr>
<td>Quest: </td> <td> ?</td>
</tr>
</table>
</div>
</div>
</div>
<aside class="sidebar match-height u-float-right">
<div class="content-inner">
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
<div class="block">
<h2>Join Discord</h2>
<a href="https://discord.gg/6rK7dcr" target="_blank"><img src="https://www.runelocus.com/wp-content/uploads/2018/08/disc.jpg" alt="Discord" /></a> </div>
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
</div>
</div>
</aside>
</div>
</section>
<footer class="c-footer u-text-center ">
<div class="o-wrapper">
<div class="content-inner">
<a class="logo-footer">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="Footer Logo">
</a>
<ul class="footer-navigation">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="social-links">
<li>
<a href="https://www.facebook.com/Runelocus/" title="Social Link">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://www.twitter.com/Runelocus/" title="Social Link">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</li>
</ul>
<p class="copyright">Copyright © 2018 Runelocus <br />
The first RSPS list ever since 2007</p>
</div>
</div>
</footer>
<script src="https://www.runelocus.com/wp-content/themes/x5-theme/scripts/bundle.js" async></script>
</body>
<div id="fb-root"></div>
<script>
(function (d, s, id)
{
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id))
return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/bootstrap.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/accordion.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/rlav/js/script.js'></script>
<script type="text/javascript">
var wpbanners_action = "https://www.runelocus.com/wp-admin/admin-ajax.php";
var wpbanners_reference_period_days = 30;
var wpbanners_rotation_period = 0;
var wpbanners_banners = {"1":["1066","1063","997","1050","1000","1061","1042","1065"],"2":["977","969","992","979","985"],"3":["975","1005","976","999"],"4":["1064","1058","1062","1060","1054"],"5":["1001","967","1028","1052","1027","966"],"6":["649"]};
var wpbanners_idxs = {"1":0,"2":0,"3":0,"4":0,"5":0,"6":0};
var wpbanners_fresh = {"1":1,"2":1,"3":1,"4":1,"5":1,"6":1};
if (typeof wpbanners_sort == "function" && typeof wpbanners_sort == "function") {
wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});
} else {
jQuery(document).ready(function(){wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});});
}
</script></html>
@@ -0,0 +1,427 @@
<!DOCTYPE html>
<html class="no-js" lang="en-US" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<title>Item Information - RuneLocus</title>
<script src="https://www.google.com/recaptcha/api.js?render=6LeA6poUAAAAAM_dS5qHDLBFsUuuiwHdzHAzzLKJ"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<style type="text/css">
@media screen and (max-width:990px)
{
.sam-place img {
width:95% !important;
}
}
.wpdberror {
display: none;
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-36652818-1', 'auto');
ga('send', 'pageview');
</script>
<script>
var trackOutboundLink = function(url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon',
'hitCallback': function(){document.location = url;}
});
}
</script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1656754394599880');
fbq('track', "PageView");</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1656754394599880&ev=PageView&noscript=1"
/></noscript>
<link rel="canonical" href="https://www.runelocus.com/item-details/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Item Information - RuneLocus" />
<meta property="og:url" content="https://www.runelocus.com/item-details/" />
<meta property="og:site_name" content="RuneLocus" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Item Information - RuneLocus" />
<link rel='dns-prefetch' href='//www.google.com' />
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='otw_grid_manager-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_grid_manager_light/css/otw-grid.css?ver=0.1' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac-font-awesome-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/font-awesome/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac_bootstrap-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/bootstrap-front.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpbanners-css' href='https://www.runelocus.com/wp-content/plugins/rlav/css/style.css' type='text/css' media='all' />
<link rel='stylesheet' id='runelocus-style1-css' href='https://www.runelocus.com/wp-content/plugins/runelocus/css/runelocus.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-font-awesome-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/otw_shortcode.css?ver=4.9.13' type='text/css' media='all' />
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script type='text/javascript' src='https://www.google.com/jsapi?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/runelocus/tinymce/tinymce.min.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode_core.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode.js?ver=4.9.13'></script>
<link rel='https://api.w.org/' href='https://www.runelocus.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.runelocus.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.runelocus.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.9.13" />
<link rel='shortlink' href='https://www.runelocus.com/?p=294' />
<style type="text/css" id="wp-custom-css">
#menu-item-17 {
background: rgba(0, 0, 0, 0.34) !important;
}
@media screen and (min-width: 700px) {
#wpsm_accordion_1951 {
display: none !important;
}
}
.grecaptcha-badge {
display: none !important;
}
.list-item p {
font-size:14px !important;
height: 45px !important;
overflow:hidden !important;
}
</style>
<link rel="stylesheet" property="stylesheet" href="https://www.runelocus.com/wp-content/themes/x5-theme/styles/main.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
document.querySelector('html').classList.remove('no-js');
window.ajax_url = 'https://www.runelocus.com/wp-admin/admin-ajax.php';
</script>
</head>
<body class="page-template-default page page-id-294 innerpage" style="background-image: url('https://www.runelocus.com/wp-content/themes/x5-theme/assets/images/design/banner.jpg')" class="page-template-default page page-id-294 innerpage">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_EN/sdk.js#xfbml=1&version=v2.5&appId=214595121924413";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<header class="c-header">
<div class="i-wrapper">
<div class="logo-wrapper">
<a href="https://www.runelocus.com" class="logo" rel="home">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="">
</a>
</div>
<nav class="navigation-wrapper">
<ul class="main-navigation">
<li id="menu-item-14" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li id="menu-item-15" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li id="menu-item-1857" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li id="menu-item-16" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li id="menu-item-17" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="user-navigation">
<li id="menu-item-21" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="/wp-login.php">Login</a></li>
<li id="menu-item-22" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22"><a href="/wp-login.php?action=register">Register</a></li>
</ul>
</nav>
<div class="hamburger-icon">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</header><div class="o-wrapper">
<section class="banner">
<div class="content-inner">
<h1 class="page-title" title="Item Information">Item Information</h1>
</div>
</section>
</div>
<section class="main-wrapper">
<div class="bg-holder"></div>
<div class="o-wrapper">
<div class="cnt-left match-height u-float-left">
<div class="content-inner">
<style>
.bgusp {
background: url('/wp-content/themes/x5-theme/assets/images/design/bg-pattern.jpg');
min-height: 60px;
padding-top: 15px;
margin-bottom:30px;
}
.usp {
list-style-type: none;
padding: 0;
overflow: hidden;
padding-left:8px;
}
.usp li {
float: left;
font-size: 13px;
padding-right: 30px;
}
.usp li:last-child {
padding-right:0px;
}
</style>
<div class="bgusp">
<center>
<ul class="usp">
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/heart.png' /> First RSPS toplist since 2007 </li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/defence.png' /> Unlike others, we fight vote bots</li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/stats.png' /> Blocking 100k+ vote bots<span style="font-size:10px;">/mo</span></li>
</ul>
</center>
</div>
<div class="content">
<h2>Information about '0'</h2>
<table class="table">
<tr>
<td>Item ID: </td> <td> 1004</td>
</tr>
<tr>
<td>Examine: </td> <td> ?</td>
</tr>
<tr>
<td>Members only? </td> <td> false</td>
</tr>
<tr>
<td>Lendable? </td> <td> false</td>
</tr>
<tr>
<td>Stackable? </td> <td> true</td>
</tr>
<tr>
<td>Shop value </td> <td> 0</td>
</tr>
<tr>
<td>Equipment slot </td> <td> -1</td>
</tr>
<tr>
<td>Remove beard </td> <td> false</td>
</tr>
<tr>
<td>Remove hair </td> <td> false</td>
</tr>
<tr>
<td>Remove sleeves </td> <td> false</td>
</tr>
<tr>
<td>Weapon type </td> <td> N/A</td>
</tr>
<tr>
<td>Interface model: </td> <td> 2775</td>
</tr>
<tr>
<td>Male model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 1: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Model position X: </td> <td> 11</td>
</tr>
<tr>
<td>Model position Y: </td> <td> 0</td>
</tr>
<tr>
<td>Model rotation X: </td> <td> 80</td>
</tr>
<tr>
<td>Model rotation Y: </td> <td> 168</td>
</tr>
<tr>
<td>Model rotation Z: </td> <td> 0</td>
</tr>
<tr>
<td>Model zoom: </td> <td> 1000</td>
</tr>
<tr>
<td>Interface options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Ground options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Tradeable: </td> <td> ?</td>
</tr>
<tr>
<td>High alch: </td> <td> ?</td>
</tr>
<tr>
<td>Low alch: </td> <td> ?</td>
</tr>
<tr>
<td>Destroy: </td> <td> ?</td>
</tr>
<tr>
<td>Exchange: </td> <td> ?</td>
</tr>
<tr>
<td>Weight: </td> <td> ?</td>
</tr>
<tr>
<td>Quest: </td> <td> ?</td>
</tr>
</table>
</div>
</div>
</div>
<aside class="sidebar match-height u-float-right">
<div class="content-inner">
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
<div class="block">
<h2>Join Discord</h2>
<a href="https://discord.gg/6rK7dcr" target="_blank"><img src="https://www.runelocus.com/wp-content/uploads/2018/08/disc.jpg" alt="Discord" /></a> </div>
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
</div>
</div>
</aside>
</div>
</section>
<footer class="c-footer u-text-center ">
<div class="o-wrapper">
<div class="content-inner">
<a class="logo-footer">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="Footer Logo">
</a>
<ul class="footer-navigation">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="social-links">
<li>
<a href="https://www.facebook.com/Runelocus/" title="Social Link">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://www.twitter.com/Runelocus/" title="Social Link">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</li>
</ul>
<p class="copyright">Copyright © 2018 Runelocus <br />
The first RSPS list ever since 2007</p>
</div>
</div>
</footer>
<script src="https://www.runelocus.com/wp-content/themes/x5-theme/scripts/bundle.js" async></script>
</body>
<div id="fb-root"></div>
<script>
(function (d, s, id)
{
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id))
return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/bootstrap.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/accordion.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/rlav/js/script.js'></script>
<script type="text/javascript">
var wpbanners_action = "https://www.runelocus.com/wp-admin/admin-ajax.php";
var wpbanners_reference_period_days = 30;
var wpbanners_rotation_period = 0;
var wpbanners_banners = {"1":["1050","1042","997","1000","1061","1065","1066","1063"],"2":["969","979","977","985","992"],"3":["975","976","999","1005"],"4":["1060","1054","1064","1058","1062"],"5":["1001","967","966","1027","1028","1052"],"6":["649"]};
var wpbanners_idxs = {"1":0,"2":0,"3":0,"4":0,"5":0,"6":0};
var wpbanners_fresh = {"1":1,"2":1,"3":1,"4":1,"5":1,"6":1};
if (typeof wpbanners_sort == "function" && typeof wpbanners_sort == "function") {
wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});
} else {
jQuery(document).ready(function(){wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});});
}
</script></html>
@@ -0,0 +1,429 @@
<!DOCTYPE html>
<html class="no-js" lang="en-US" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<title>Item Information - RuneLocus</title>
<script src="https://www.google.com/recaptcha/api.js?render=6LeA6poUAAAAAM_dS5qHDLBFsUuuiwHdzHAzzLKJ"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<style type="text/css">
@media screen and (max-width:990px)
{
.sam-place img {
width:95% !important;
}
}
.wpdberror {
display: none;
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-36652818-1', 'auto');
ga('send', 'pageview');
</script>
<script>
var trackOutboundLink = function(url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon',
'hitCallback': function(){document.location = url;}
});
}
</script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1656754394599880');
fbq('track', "PageView");</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1656754394599880&ev=PageView&noscript=1"
/></noscript>
<link rel="canonical" href="https://www.runelocus.com/item-details/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Item Information - RuneLocus" />
<meta property="og:url" content="https://www.runelocus.com/item-details/" />
<meta property="og:site_name" content="RuneLocus" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Item Information - RuneLocus" />
<link rel='dns-prefetch' href='//www.google.com' />
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='otw_grid_manager-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_grid_manager_light/css/otw-grid.css?ver=0.1' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac-font-awesome-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/font-awesome/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac_bootstrap-front-css' href='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/css/bootstrap-front.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='wpbanners-css' href='https://www.runelocus.com/wp-content/plugins/rlav/css/style.css' type='text/css' media='all' />
<link rel='stylesheet' id='runelocus-style1-css' href='https://www.runelocus.com/wp-content/plugins/runelocus/css/runelocus.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-font-awesome-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/font-awesome.min.css?ver=4.9.13' type='text/css' media='all' />
<link rel='stylesheet' id='otw_post_template_otw-shortcode-css' href='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/css/otw_shortcode.css?ver=4.9.13' type='text/css' media='all' />
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script type='text/javascript' src='https://www.google.com/jsapi?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/runelocus/tinymce/tinymce.min.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode_core.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/post-custom-templates-lite/include/otw_components/otw_post_template_shortcode/js/otw_shortcode.js?ver=4.9.13'></script>
<link rel='https://api.w.org/' href='https://www.runelocus.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.runelocus.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.runelocus.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.9.13" />
<link rel='shortlink' href='https://www.runelocus.com/?p=294' />
<style type="text/css" id="wp-custom-css">
#menu-item-17 {
background: rgba(0, 0, 0, 0.34) !important;
}
@media screen and (min-width: 700px) {
#wpsm_accordion_1951 {
display: none !important;
}
}
.grecaptcha-badge {
display: none !important;
}
.list-item p {
font-size:14px !important;
height: 45px !important;
overflow:hidden !important;
}
</style>
<link rel="stylesheet" property="stylesheet" href="https://www.runelocus.com/wp-content/themes/x5-theme/styles/main.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
document.querySelector('html').classList.remove('no-js');
window.ajax_url = 'https://www.runelocus.com/wp-admin/admin-ajax.php';
</script>
</head>
<body class="page-template-default page page-id-294 innerpage" style="background-image: url('https://www.runelocus.com/wp-content/themes/x5-theme/assets/images/design/banner.jpg')" class="page-template-default page page-id-294 innerpage">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_EN/sdk.js#xfbml=1&version=v2.5&appId=214595121924413";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<header class="c-header">
<div class="i-wrapper">
<div class="logo-wrapper">
<a href="https://www.runelocus.com" class="logo" rel="home">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="">
</a>
</div>
<nav class="navigation-wrapper">
<ul class="main-navigation">
<li id="menu-item-14" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li id="menu-item-15" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li id="menu-item-1857" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li id="menu-item-16" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li id="menu-item-17" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="user-navigation">
<li id="menu-item-21" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="/wp-login.php">Login</a></li>
<li id="menu-item-22" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22"><a href="/wp-login.php?action=register">Register</a></li>
</ul>
</nav>
<div class="hamburger-icon">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</header><div class="o-wrapper">
<section class="banner">
<div class="content-inner">
<h1 class="page-title" title="Item Information">Item Information</h1>
</div>
</section>
</div>
<section class="main-wrapper">
<div class="bg-holder"></div>
<div class="o-wrapper">
<div class="cnt-left match-height u-float-left">
<div class="content-inner">
<style>
.bgusp {
background: url('/wp-content/themes/x5-theme/assets/images/design/bg-pattern.jpg');
min-height: 60px;
padding-top: 15px;
margin-bottom:30px;
}
.usp {
list-style-type: none;
padding: 0;
overflow: hidden;
padding-left:8px;
}
.usp li {
float: left;
font-size: 13px;
padding-right: 30px;
}
.usp li:last-child {
padding-right:0px;
}
</style>
<div class="bgusp">
<center>
<ul class="usp">
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/heart.png' /> First RSPS toplist since 2007 </li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/defence.png' /> Unlike others, we fight vote bots</li>
<li><img src='https://www.runelocus.com/wp-content/uploads/2018/11/stats.png' /> Blocking 100k+ vote bots<span style="font-size:10px;">/mo</span></li>
</ul>
</center>
</div>
<div class="content">
<h2>Information about 'White apron'</h2>
<table class="table">
<tr>
<td>Item ID: </td> <td> 1005</td>
</tr>
<tr>
<td>Examine: </td> <td> A mostly clean apron.</td>
</tr>
<tr>
<td>Members only? </td> <td> false</td>
</tr>
<tr>
<td>Lendable? </td> <td> false</td>
</tr>
<tr>
<td>Stackable? </td> <td> false</td>
</tr>
<tr>
<td>Shop value </td> <td> 2</td>
</tr>
<tr>
<td>Equipment slot </td> <td> 4</td>
</tr>
<tr>
<td>Remove beard </td> <td> false</td>
</tr>
<tr>
<td>Remove hair </td> <td> false</td>
</tr>
<tr>
<td>Remove sleeves </td> <td> false</td>
</tr>
<tr>
<td>Weapon type </td> <td> N/A</td>
</tr>
<tr>
<td>Interface model: </td> <td> 2592</td>
</tr>
<tr>
<td>Male model 1: </td> <td> 305</td>
</tr>
<tr>
<td>Male model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Male model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 1: </td> <td> 305</td>
</tr>
<tr>
<td>Female model 2: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 3: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 4: </td> <td> -1</td>
</tr>
<tr>
<td>Female model 5: </td> <td> -1</td>
</tr>
<tr>
<td>Model position X: </td> <td> -4</td>
</tr>
<tr>
<td>Model position Y: </td> <td> -4</td>
</tr>
<tr>
<td>Model rotation X: </td> <td> 172</td>
</tr>
<tr>
<td>Model rotation Y: </td> <td> 544</td>
</tr>
<tr>
<td>Model rotation Z: </td> <td> 0</td>
</tr>
<tr>
<td>Model zoom: </td> <td> 1580</td>
</tr>
<tr>
<td>Interface options: </td> <td> [null, Wear, null, null, null]</td>
</tr>
<tr>
<td>Ground options: </td> <td> [null, null, null, null, null]</td>
</tr>
<tr>
<td>Tradeable: </td> <td> Yes</td>
</tr>
<tr>
<td>High alch: </td> <td> 1 coin</td>
</tr>
<tr>
<td>Low alch: </td> <td> 0 coins</td>
</tr>
<tr>
<td>Destroy: </td> <td> Drop</td>
</tr>
<tr>
<td>Exchange: </td> <td> 95</td>
</tr>
<tr>
<td>Weight: </td> <td> 0.45 kg</td>
</tr>
<tr>
<td>Quest: </td> <td> No</td>
</tr>
</table>
</div>
</div>
</div>
<aside class="sidebar match-height u-float-right">
<div class="content-inner">
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
<div class="block">
<h2>Join Discord</h2>
<a href="https://discord.gg/6rK7dcr" target="_blank"><img src="https://www.runelocus.com/wp-content/uploads/2018/08/disc.jpg" alt="Discord" /></a> </div>
<div class="block">
<h2>Recommended</h2>
<div class="advertisement u-text-center">
<div class="wpbanners" data-id="2"></div> </div>
</div>
</div>
</div>
</aside>
</div>
</section>
<footer class="c-footer u-text-center ">
<div class="o-wrapper">
<div class="content-inner">
<a class="logo-footer">
<img src="https://www.runelocus.com/wp-content/uploads/2018/11/logo-fairly.png" alt="Footer Logo">
</a>
<ul class="footer-navigation">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14"><a href="https://www.runelocus.com/">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="http://forum.runelocus.com">Forum</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1857"><a href="https://www.runelocus.com/top-rsps-list/">RSPS List</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="/tools">Tools</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="/advertising"><span style="color:orange;">Advertising</span></a></li>
</ul>
<ul class="social-links">
<li>
<a href="https://www.facebook.com/Runelocus/" title="Social Link">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://www.twitter.com/Runelocus/" title="Social Link">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</li>
</ul>
<p class="copyright">Copyright © 2018 Runelocus <br />
The first RSPS list ever since 2007</p>
</div>
</div>
</footer>
<script src="https://www.runelocus.com/wp-content/themes/x5-theme/scripts/bundle.js" async></script>
</body>
<div id="fb-root"></div>
<script>
(function (d, s, id)
{
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id))
return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/bootstrap.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/responsive-accordion-and-collapse/js/accordion.js?ver=4.9.13'></script>
<script type='text/javascript' src='https://www.runelocus.com/wp-content/plugins/rlav/js/script.js'></script>
<script type="text/javascript">
var wpbanners_action = "https://www.runelocus.com/wp-admin/admin-ajax.php";
var wpbanners_reference_period_days = 30;
var wpbanners_rotation_period = 0;
var wpbanners_banners = {"1":["1061","1042","1063","1000","1066","1065","1050","997"],"2":["985","977","969","992","979"],"3":["975","976","1005","999"],"4":["1058","1064","1054","1060","1062"],"5":["1052","967","1027","966","1028","1001"],"6":["649"]};
var wpbanners_idxs = {"1":0,"2":0,"3":0,"4":0,"5":0,"6":0};
var wpbanners_fresh = {"1":1,"2":1,"3":1,"4":1,"5":1,"6":1};
if (typeof wpbanners_sort == "function" && typeof wpbanners_sort == "function") {
wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});
} else {
jQuery(document).ready(function(){wpbanners_sort(); wpbanners_getbanners(); jQuery("#wpbanners_iframe").load(function() {wpbanners_load();});});
}
</script></html>

Some files were not shown because too many files have changed in this diff Show More