Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
package io.ruin.cache; import io.ruin.Server; import io.ruin.api.buffer.InBuffer; import io.ruin.api.filestore.IndexFile; import io.ruin.api.utils.StringUtils; import io.ruin.model.World; import io.ruin.model.achievements.Achievement; import io.ruin.model.activities.cluescrolls.ClueType; import io.ruin.model.combat.*; import io.ruin.model.combat.special.Special; import io.ruin.model.entity.Entity; import io.ruin.model.entity.player.Player; import io.ruin.model.inter.journal.presets.Preset; import io.ruin.model.item.Item; import io.ruin.model.item.actions.ItemAction; import io.ruin.model.item.actions.ItemGroundItemAction; import io.ruin.model.item.actions.ItemItemAction; import io.ruin.model.item.actions.impl.ItemBreaking; import io.ruin.model.item.actions.impl.ItemSet; import io.ruin.model.item.actions.impl.ItemUpgrading; import io.ruin.model.item.actions.impl.Pet; import io.ruin.model.item.actions.impl.combine.ItemCombining; import io.ruin.model.item.listeners.IncomingHitListener; import io.ruin.model.item.listeners.OutgoingHitListener; import io.ruin.model.map.ground.GroundItemAction; import io.ruin.model.skills.farming.crop.Crop; import io.ruin.model.skills.herblore.Potion; import io.ruin.model.skills.magic.rune.Rune; import io.ruin.model.skills.mining.Pickaxe; import io.ruin.model.skills.smithing.SmithBar; import io.ruin.model.skills.woodcutting.Hatchet; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; import java.util.function.BiConsumer; import java.util.function.Consumer; public class ItemDef { public static ItemDef[] LOADED; public static void load() { IndexFile index = Server.fileStore.get(2); LOADED = new ItemDef[index.getLastFileId(10) + 1]; for(int id = 0; id < LOADED.length; id++) { ItemDef def = new ItemDef(); def.id = id; byte[] data = index.getFile(10, def.id); def.decode(new InBuffer(data)); if (def.stackable) def.descriptiveName = "some " + def.name.toLowerCase(); else if(StringUtils.vowelStart(def.name)) def.descriptiveName = "an " + def.name; else def.descriptiveName = "a " + def.name; LOADED[def.id] = def; } } public static void forEach(Consumer<ItemDef> consumer) { for(ItemDef def : LOADED) { if(def != null) consumer.accept(def); } } public static int findId(String name) { for(ItemDef def : LOADED) { if(def != null && def.name.toLowerCase().contains(name)) return def.id; } System.err.println("Failed to find item with name: " + name + " | " + new Throwable().getStackTrace()[1].toString()); return -1; } public static ItemDef get(int id) { if(id < 0 || id >= LOADED.length) return null; return LOADED[id]; } /** * Stored data */ public int id; public boolean tradeable; public String examine; public double weightInventory, weightEquipment; public String descriptiveName; public int equipSlot = -1; public int[] equipReqs; public int[] equipBonuses; public ShieldType shieldType; public WeaponType weaponType; public RangedWeapon rangedWeapon; public RangedAmmo rangedAmmo; public boolean twoHanded; public boolean hideHair, hideBeard, hideArms; public boolean maxType; public int lowAlchValue, highAlchValue; public Achievement achievement; public boolean achievementReqIsIronmanOnly; /** * Custom data */ public int dropOption = -1; public int protectValue; public boolean neverProtect; public int equipOption = -1; public Special special; public int rangedLevel = 1; public ItemAction[] inventoryActions, equipmentActions; public GroundItemAction[] groundActions; public ItemItemAction defaultPrimaryItemItemAction; public ArrayList<ItemItemAction> primaryItemItemActions, secondaryItemItemActions; public ItemGroundItemAction defaultItemGroundItemAction; public Map<Integer, ItemGroundItemAction> itemGroundItemActions; public ItemAction tickAction, attackAction, defendAction; public int pickupOption = -1; public Hatchet hatchet; public Pickaxe pickaxe; public boolean sharpWeapon; public boolean consumable; public Potion potion; public int potionDoses; public Rune rune; public Rune staffRune; public boolean allowFruit; public boolean allowPilesToNote; public SmithBar smithBar; public ItemSet itemSet; public ClueType clueType; public Crop seedType; public Crop produceOf; public ItemBreaking brokenFrom; public ItemBreaking breakTo; public ItemUpgrading upgradedFrom; public ItemCombining combinedFrom; public int breakId; public int bmShopPrice = -1; public int sigmundBuyPrice; public boolean slayerHelm; public boolean leafBladed; public boolean slayerBoostMelee; public boolean slayerBoostAll; public boolean[] godItem = new boolean[4]; // protection against gwd aggro public BankWithdrawListener bankWithdrawListener; public Pet pet; public boolean graniteMaul; public boolean free; public boolean coxItem; /** * Cache data */ public String name = "null"; public int zoom2d = 2000; public int xan2d = 0; public int yan2d = 0; public int zan2d = 0; public int xof2d = 0; public int yof2d = 0; public boolean stackable; public int value = 1; public boolean members = false; public String[] groundOptions = {null, null, "Take", null, null}; public String[] inventoryOptions = {null, null, null, null, "Drop"}; public int notedId = -1; public int notedTemplateId = -1; public int ambient = 0; public int contrast = 0; public int team = 0; public boolean grandExchange = false; public int placeholderMainId = -1; public int placeholderTemplateId = -1; public int anInt1504 = -1; int anInt1493 = -1; int maleOffset = 0; int anInt1467 = -1; int anInt1496 = -1; int femaleOffset = 0; int anInt1498 = -1; int anInt1499 = -1; int maleHeadModel = -1; int anInt1501 = -1; int femaleHeadModel = -1; int anInt1503 = -1; int resizeX = 128; int resizeY = 128; int resizeZ = 128; int anInt1489 = -1; int anInt1515 = -1; public int inventoryModel; public short[] colorFind; public short[] colorReplace; short[] textureFind; short[] textureReplace; int[] anIntArray1497; int[] anIntArray1505; public HashMap<Object, Object> attributes; /** * Decoding */ private void decode(InBuffer buffer) { for(; ; ) { int i = buffer.readUnsignedByte(); if(i == 0) break; decode(buffer, i); } if(id == 2742) { name = "Coin Casket (small)"; inventoryOptions[1] = null; } if(id == 2744) { name = "Coin Casket (medium)"; inventoryOptions[1] = null; } if(id == 2746) { name = "Coin Casket (large)"; inventoryOptions[1] = null; } if(id == 2748) { name = "Coin Casket (giant)"; inventoryOptions[1] = null; } if (id == 1464) { name = "Vote Lottery Ticket"; stackable = false; } if(id == 13190) { //bond name = World.type.getWorldName() + " Credit"; stackable = true; value = 0; //important for sigmund inventoryOptions[0] = "Claim"; inventoryOptions[2] = null; } if (id == 5020) { name = "PK Ticket"; stackable = true; tradeable = true; } if (id == Preset.DRAGON_2H_SWORD || id == 13024 || id == 13026 || id == 9243 || id == 6109 || id == 3751) { value = 0; } if(id == 6199) { inventoryOptions[2] = "Gift"; } if(id == 290) { name = "Super Mystery Box"; inventoryOptions[1] = "Open"; inventoryOptions[2] = "Gift"; } if(id == 6828) { name = "Pet Mystery Box"; inventoryOptions[1] = "Open"; inventoryOptions[2] = "Gift"; } if(id == 6829) { name = "Voting Mystery Box"; inventoryOptions[1] = "Open"; inventoryOptions[2] = "Gift"; } if(id == 6830) { name = "Cape Mystery Box"; inventoryOptions[1] = "Open"; inventoryOptions[2] = "Gift"; } if(id == 6831) { name = "3rd age Mystery Box"; inventoryOptions[1] = "Open"; inventoryOptions[2] = "Gift"; } if(id == 6832) { name = "Activity Mystery Box"; inventoryOptions[1] = "Open"; inventoryOptions[2] = "Gift"; } if(id == 6833) { name = "Loyalty Mystery Box"; inventoryOptions[1] = "Open"; inventoryOptions[2] = "Gift"; } if(id == 1505) { name = "Obelisk destination scroll"; } if(id == 4067) { name = "Vote ticket"; } if(id == 10834) { name = "Dice bag"; inventoryOptions[0] = "Roll 4-sided"; inventoryOptions[1] = "Roll 12-sided"; inventoryOptions[2] = "Roll 100-sided"; } if (id == 9477) { name = "Coinbox"; inventoryOptions[0] = "Open"; stackable = false; tradeable = true; } if (id == 3455 || id == 3457 || id == 3458) { name = "Clue key"; inventoryOptions[3] = "Check-Hint"; } if(id == 786) { name = "Item Upgrade Scroll"; } if(id == 19625) { name = "Home teleport"; } if(id == 8007) { inventoryOptions[1] = null; } if(id >= 1567 && id <= 1572) name = "Overgrown cat"; /* Quick option for repairing all broken items */ if(name.endsWith("(broken)")) inventoryOptions[0] = "Fix"; if(id == 11169) { name = World.type.getWorldName() + " Herald"; inventoryOptions[0] = "View-updates"; inventoryOptions[1] = null; inventoryOptions[4] = "Destroy"; } if(id == 12746 || (id >= 12748 && id <= 12756)) { inventoryOptions[0] = "Info"; inventoryOptions[1] = "Redeem"; } if(id == 5023) { name = "Tournament ticket"; inventoryOptions[0] = "Read"; stackable = true; } if (World.isPVP()) { if (id == 12810) { name = "Contender's helm"; } if (id == 12811) { name = "Contender's platebody"; } if (id == 12812) { name = "Contender's platelegs"; } if (id == 12813) { name = "Champion's helm"; } if (id == 12814) { name = "Champion's platebody"; } if (id == 12815) { name = "Champion's platelegs"; } if (id == 20792) { name = "Legend's helm"; } if (id == 20794) { name = "Legend's platebody"; } if (id == 20796) { name = "Legend's platelegs"; } } if(id == 21532) { name = "Fragments"; } if(id == 607) { name = "Rare Drop Scroll"; inventoryOptions[0] = "Activate"; } if(id == 608) { name = "Pet Drop Scroll"; inventoryOptions[0] = "Activate"; } if(id == 6758) { name = "Bonus Exp Scroll"; inventoryOptions[0] = "Activate"; } if(id == 7671) name += " (red)"; if (id == 7673) name += " (blue)"; if(id == 2730) { name = "Wilderness Reward Box (small)"; inventoryOptions[0] = "Open"; inventoryOptions[1] = null; } if(id == 2732) { name = "Wilderness Reward Box (medium)"; inventoryOptions[0] = "Open"; inventoryOptions[1] = null; } if(id == 2734) { name = "Wilderness Reward Box (large)"; inventoryOptions[0] = "Open"; inventoryOptions[1] = null; } if(id == 2736) { name = "Wilderness Reward Box (giant)"; inventoryOptions[0] = "Open"; inventoryOptions[1] = null; } if(id == 13215) { name = "Bloody Token"; stackable = true; } if(id == 22330) { name = "PVP Armour Mystery Box"; inventoryOptions[0] = "Open"; inventoryOptions[1] = "Gift"; } if(World.isPVP()) { if (id == 13329 || id == 13331 || id == 21776 || id == 13333 || id == 21780 || id == 13335 || id == 21784 || id == 13337 || id == 21898 || id == 20760 || id == 21285) { inventoryOptions[2] = "Revert"; } } if(id == 3606) { name = "Bloody key (easy)"; } if(id == 3608) { name = "Bloody key (medium)"; } if(id == 7297) { name = "Bloody key (hard)"; } if(id == 11918) { name = "Santa Outfit Box"; inventoryOptions[0] = "Open"; } if(id == 12897) { name = "Anti-Santa Outfit Box"; inventoryOptions[0] = "Open"; } if(id == 22816 || id == 22817) { inventoryOptions[4] = "Destroy"; } if(id == 21227) { name = "Easter Egg"; inventoryOptions[0] = "Open"; } if(id == 11028) { stackable = true; } if(id == 8943) { name = "Wilderness key (1M OSRS)"; inventoryOptions[0] = "Information"; inventoryOptions[3] = null; inventoryOptions[4] = "Destroy"; } if(id == 8944) { name = "Wilderness key (5M OSRS)"; inventoryOptions[0] = "Information"; inventoryOptions[3] = null; inventoryOptions[4] = "Destroy"; } if(id == 8945) { name = "Wilderness key (10M OSRS)"; inventoryOptions[0] = "Information"; inventoryOptions[3] = null; inventoryOptions[4] = "Destroy"; } if(id == 8946) { name = "Wilderness key (25M OSRS)"; inventoryOptions[0] = "Information"; inventoryOptions[3] = null; inventoryOptions[4] = "Destroy"; } if(id == 8947) { name = "Wilderness key (50M OSRS)"; inventoryOptions[0] = "Information"; inventoryOptions[3] = null; inventoryOptions[4] = "Destroy"; } if(id == 8948) { name = "Wilderness key (100M OSRS)"; inventoryOptions[0] = "Information"; inventoryOptions[3] = null; inventoryOptions[4] = "Destroy"; } } private void decode(InBuffer buffer, int opcode) { if(opcode == 1) inventoryModel = buffer.readUnsignedShort(); else if(opcode == 2) name = buffer.readString(); else if(opcode == 4) zoom2d = buffer.readUnsignedShort(); else if(opcode == 5) xan2d = buffer.readUnsignedShort(); else if(opcode == 6) yan2d = buffer.readUnsignedShort(); else if(opcode == 7) { xof2d = buffer.readUnsignedShort(); if(xof2d > 32767) xof2d -= 65536; } else if(opcode == 8) { yof2d = buffer.readUnsignedShort(); if(yof2d > 32767) yof2d -= 65536; } else if(opcode == 11) stackable = true; else if(opcode == 12) value = buffer.readInt(); else if(opcode == 16) members = true; else if(opcode == 23) { anInt1504 = buffer.readUnsignedShort(); maleOffset = buffer.readUnsignedByte(); } else if(opcode == 24) anInt1493 = buffer.readUnsignedShort(); else if(opcode == 25) { anInt1467 = buffer.readUnsignedShort(); femaleOffset = buffer.readUnsignedByte(); } else if(opcode == 26) anInt1496 = buffer.readUnsignedShort(); else if(opcode >= 30 && opcode < 35) { groundOptions[opcode - 30] = buffer.readString(); if(groundOptions[opcode - 30].equalsIgnoreCase("Hidden")) groundOptions[opcode - 30] = null; } else if(opcode >= 35 && opcode < 40) inventoryOptions[opcode - 35] = buffer.readString(); else if(opcode == 40) { int i_0_ = buffer.readUnsignedByte(); colorFind = new short[i_0_]; colorReplace = new short[i_0_]; for(int i_1_ = 0; i_1_ < i_0_; i_1_++) { colorFind[i_1_] = (short) buffer.readUnsignedShort(); colorReplace[i_1_] = (short) buffer.readUnsignedShort(); } } else if(opcode == 41) { int i_2_ = buffer.readUnsignedByte(); textureFind = new short[i_2_]; textureReplace = new short[i_2_]; for(int i_3_ = 0; i_3_ < i_2_; i_3_++) { textureFind[i_3_] = (short) buffer.readUnsignedShort(); textureReplace[i_3_] = (short) buffer.readUnsignedShort(); } } else if(opcode == 65) grandExchange = true; else if(opcode == 78) anInt1498 = buffer.readUnsignedShort(); else if(opcode == 79) anInt1499 = buffer.readUnsignedShort(); else if(opcode == 90) maleHeadModel = buffer.readUnsignedShort(); else if(opcode == 91) femaleHeadModel = buffer.readUnsignedShort(); else if(opcode == 92) anInt1501 = buffer.readUnsignedShort(); else if(opcode == 93) anInt1503 = buffer.readUnsignedShort(); else if(opcode == 95) zan2d = buffer.readUnsignedShort(); else if(opcode == 97) notedId = buffer.readUnsignedShort(); else if(opcode == 98) notedTemplateId = buffer.readUnsignedShort(); else if(opcode >= 100 && opcode < 110) { if(anIntArray1497 == null) { anIntArray1497 = new int[10]; anIntArray1505 = new int[10]; } anIntArray1497[opcode - 100] = buffer.readUnsignedShort(); anIntArray1505[opcode - 100] = buffer.readUnsignedShort(); } else if(opcode == 110) resizeX = buffer.readUnsignedShort(); else if(opcode == 111) resizeY = buffer.readUnsignedShort(); else if(opcode == 112) resizeZ = buffer.readUnsignedShort(); else if(opcode == 113) ambient = buffer.readByte(); else if(opcode == 114) contrast = buffer.readByte() * 5; else if(opcode == 115) team = buffer.readUnsignedByte(); else if(opcode == 139) anInt1489 = buffer.readUnsignedShort(); else if(opcode == 140) anInt1515 = buffer.readUnsignedShort(); else if(opcode == 148) placeholderMainId = buffer.readUnsignedShort(); else if(opcode == 149) placeholderTemplateId = buffer.readUnsignedShort(); else if(opcode == 249) { int size = buffer.readUnsignedByte(); if(attributes == null) attributes = new HashMap<>(); for(int i = 0; i < size; i++) { boolean stringType = buffer.readUnsignedByte() == 1; int key = buffer.readMedium(); if(stringType) attributes.put(key, buffer.readString()); else attributes.put(key, buffer.readInt()); } } } public int getOption(String... options) { if(inventoryOptions != null) { for(String s : options) { for(int i = 0; i < inventoryOptions.length; i++) { String option = inventoryOptions[i]; if(s.equalsIgnoreCase(option)) return i + 1; } } } return -1; } public int getGroundOption(String... options) { if(groundOptions != null) { for(String s : options) { for(int i = 0; i < groundOptions.length; i++) { String option = groundOptions[i]; if(s.equalsIgnoreCase(option)) return i + 1; } } } return -1; } public boolean hasOption(String... options) { return getOption(options) != -1; } public boolean isNote() { return notedId != -1 && notedTemplateId != -1; } public ItemDef fromNote() { return LOADED[notedId]; } public boolean isPlaceholder() { return placeholderMainId != -1 && placeholderTemplateId != -1; } public boolean hasPlaceholder() { return placeholderMainId != -1 && placeholderTemplateId == -1; } public int bankWithdrawListener(Player player, Item item, int amount) { if (bankWithdrawListener != null) return bankWithdrawListener.withdraw(player, item, amount); return 0; } /** * Predicate */ @FunctionalInterface public interface ItemDefPredicate { boolean accept(ItemDef def, String name); default boolean test(ItemDef def) { return accept(def, def.name.toLowerCase()); } } @FunctionalInterface public interface BankWithdrawListener { int withdraw(Player player, Item item, int amount); } /** * u brought this on urself tbh */ private OutgoingHitListener postTargetDamageListener; private OutgoingHitListener preTargetDefendListener;; private OutgoingHitListener postTargetDefendListener; private IncomingHitListener postDamageListener; private IncomingHitListener preDefendListener; private BiConsumer<Player, Item> onTick; private Consumer<Item> onDrop; /** * Adds a listener for when a player with this item equipped <b>deals damage</b>. */ public void addPostTargetDamageListener(OutgoingHitListener listener) { if (postTargetDamageListener == null) postTargetDamageListener = listener; else postTargetDamageListener = postTargetDamageListener.andThen(listener); } public void postTargetDamage(Player player, Item item, Hit hit, Entity entity) { if (postTargetDamageListener != null) postTargetDamageListener.accept(player, item, hit, entity); } /** * Adds a listener for when a player with this item equipped <b>takes a hite</b>. */ public void addPostDamageListener(IncomingHitListener event) { if (postDamageListener == null) postDamageListener = event; else postDamageListener = postDamageListener.andThen(event); } public void postDamage(Player player, Item item, Hit hit) { if (postDamageListener != null) postDamageListener.accept(player, item, hit); } /** * Adds a listener for when a player with this item equipped <b>is defending against a hit</b>. */ public void addPreDefendListener(IncomingHitListener event) { if (preDefendListener == null) preDefendListener = event; else preDefendListener = preDefendListener.andThen(event); } public void preDefend(Player player, Item item, Hit hit) { if (preDefendListener != null) preDefendListener.accept(player, item, hit); } /** * Adds a listener for when a player with this item equipped <b>is attacking but the hit hasn't yet been dealt.</b>. */ public void addPreTargetDefendListener(OutgoingHitListener event) { if (preTargetDefendListener == null) preTargetDefendListener = event; else preTargetDefendListener = preTargetDefendListener.andThen(event); } public void preTargetDefend(Player player, Item item, Hit hit, Entity victim) { if (preTargetDefendListener != null) preTargetDefendListener.accept(player, item, hit, victim); } public void addPostTargetDefendListener(OutgoingHitListener event) { if (postTargetDefendListener == null) postTargetDefendListener = event; else postTargetDefendListener = postTargetDefendListener.andThen(event); } public void postTargetDefend(Player player, Item item, Hit hit, Entity victim) { if (postTargetDefendListener != null) postTargetDefendListener.accept(player, item, hit, victim); } /** * Adds a listener on each tick while the player has this item equipped. */ public void addOnTickEvent(BiConsumer<Player, Item> event) { if (onTick == null) onTick = event; else onTick = onTick.andThen(event); } public void onTick(Player player, Item item) { if (onTick != null) onTick.accept(player, item); } /** * Adds a listener for when a grounditem for this item is created */ public void addOnDropEvent(Consumer<Item> event) { if (onDrop == null) onDrop = event; else onDrop = onDrop.andThen(event); } public void onDrop(Item item) { if (onDrop != null) onDrop.accept(item); } }
Optional Paste Settings
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
Topení 2 hlavní je...
Arduino | 4 min ago
Untitled
JavaScript | 9 min ago
Inorder следбеник
Java | 14 min ago
lava shader
C++ | 28 min ago
pass
Lua | 31 min ago
My Log File
HTML 5 | 1 hour ago
parallels-patch
Diff | 1 hour ago
simple linux pasti...
Bash | 1 hour ago
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!