Paste what you have copied :D

Status
Not open for further replies.

Amorix

Member
Joined
Nov 10, 2011
Messages
236
Reaction score
756
1. During Washington’s presidency, name the Secretary of State, Secretary of War, and Secretary of the Treasury.
2. How did the Secretary of Treasury propose to fix the nation’s economic crisis during Washington’s presidency?
3. What is strict interpretation?
4. What is loose interpretation?
5. What were the characteristics of the Democratic-Republican party?
6. What were the characteristics of the Federalists party?
7. Who won the Election of 1796?
8. Who were the Shaysites?
9. Name the three Americans sent to France during the X,Y,Z affair.
10. What were the Alien and Sedition Acts?
11. Who were the two men responsible for the Virginia and Kentucky resolutions?
12. Who won the Election of 1800 and describe how they won?
13. What does the 12th Amendment do?
14. What did Marbury vs. Madison establish?
15. What country did we buy Louisiana from?
16. How much did we pay for the Louisiana Territory?
17. What were Lewis and Clark’s two main goals for their expedition?
18. Who was Zebulon Pike?
19. Where were the Barbary States located?
20. What was the main cause of the War of 1812?
21. Who was president during the War of 1812?
22. What ship gained the nickname “Old Ironsides”?
23. Who was Dolly Madison?
24. Who was Francis Scott Key?
25. Who was the hero from the Battle of New Orleans?
26. What happened to the Federalists after the War of 1812?
27. Who was the president during the Era of Good Feelings?
28. What future state did we acquire through the Adams-Onis Treaty?
29. What was the Monroe Doctrine?
30. Describe the Election of 1824?
31. Who wins the Election of 1828?
32. What was the Trail of Tears?
33. Who was Nicholas Biddle?
34. Why did Southerners dislike the tariffs?
35. Name the two ways a tariff can help the country.
36. What State wanted to nullify the tariffs?
37. Name the politician who wanted to invest in roads and canals in the west.
38. Who was the VP under Jackson that resigned due to the Nullification Crisis?
39. Who won the Election of 1836?
40. What happened to the winner of the Election of 1840?

School stuffs.
 

DarthLego5679

That n00b.
Joined
Aug 6, 2011
Messages
833
Reaction score
1,339
Probably the one luck chance you'll get. :p

Anyhoo, was saving some up.
http://i.imgur.com/KjhDT.jpg
^ Alkatraz and Marnixxie were making a forest. I had nothing to do with it, of course. Despite the shrub in my hand.

http://i.imgur.com/u8XcF.png
^ I wanted to see the few points I would have after spending them all on nukes.

Few of DarthLego5679:
http://i.imgur.com/rFuY7.png
^ I have been waiting for that for awhile. He never does it.
http://i.imgur.com/nv01L.png
^ Very anticlimatic.
http://i.imgur.com/J9t4e.png
^ The one (and hopefully only) time Darth changed his skin. ):

http://i.imgur.com/W5GZ5.jpg
http://i.imgur.com/ORn6r.jpg
^ And finally, I wonder if that is what Marnixxie had in mind when he made this map.

Enough screenies from me. x3

Was quoting in another thread.
 

Amorix

Member
Joined
Nov 10, 2011
Messages
236
Reaction score
756
<iframe src="://docs.googe/a/*snip*/spreadsheet/embeddedform?formkey=dFIzeXZlb25pR2ZITm\Xc6MQ" width="760" height="1062" frameborder="0" marginheight="0" marginwidth="0">Loading...<iframe>

Meh. Something I was doing for a school assignment. I deliberately damaged the link so no one will try to actually DO it and confuse the hell out of me.
 

Mmarz11

Former AoD Dev
Joined
Aug 6, 2011
Messages
431
Reaction score
539
Code:
public void onBlockPlace(BlockPlaceEvent event)
{
     Block block = event.getBlock();
     if (block.getType() == Material.TNT)
     {
          Player player = event.getPlayer();
          Location location = player.getLocation();
          for (Player online : Bukkit.getServer().getOnlinePlayers())
               if (online.isOp())
                    online.sendMessage("TNT was placed by " + player.getDisplayName()
                         + " at (" + Math.round(location.getX()) + ", " + Math.round(location.getY())
                              + ", " + Math.round(location.getZ()) + ")");
          event.setCancelled(true);
     }
}
Was my way of making sure that if something goes wrong with any changes I make then I'd still have the code ;)

Trying to familiarize myself with the changes since... I think 1.8... So yes, it is very simple.
 
Status
Not open for further replies.
Top