PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my alerts
my settings
my profile
Pastebin launched a little side project called
HostCabi.net
, check it out ;-)
Don't like ads?
PRO users
don't see any ads ;-)
Public Pastes
Fastja Two v1.000!
JavaScript | 10 sec ago
Untitled
0 sec ago
Untitled
2 sec ago
Untitled
4 sec ago
Untitled
5 sec ago
Untitled
9 sec ago
Untitled
13 sec ago
Untitled
18 sec ago
dropitemtest1
By:
ace
on
Aug 18th, 2010
| syntax:
None
| size: 0.35 KB | hits: 16 | expires: Never
download
|
raw
|
embed
|
report abuse
|
print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
public String testDropItem()
{
room1.setItems(item1);
player1.setCurrentRoom(room1);
player1.takeItem("item1");
player1.dropItem("item1");
if (room1.itemCheck("item1") == item1)
{
return "test passes";
}
else
{
return "test fails";
}
}
create a
new version
of this paste
RAW Paste Data
public String testDropItem() { room1.setItems(item1); player1.setCurrentRoom(room1); player1.takeItem("item1"); player1.dropItem("item1"); if (room1.itemCheck("item1") == item1) { return "test passes"; } else { return "test fails"; } }