Cargando…

Building Minecraft server modifications : create and customize your very own Minecraft server using Java and the Spigot API /

Create and customize your very own Minecraft server using Java and the Spigot APIAbout This Book Set up a Minecraft server that you control Use object-oriented programming to modify Minecraft regardless of your level of experience This interactive guide will help you create a unique experience for y...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Sommer, Cody M. (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Publishing, 2015.
Edición:Second edition.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Ii 4500
001 OR_ocn935744765
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu---unuuu
008 160122s2015 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d OCLCF  |d YDXCP  |d COO  |d N$T  |d EBLCP  |d TEFOD  |d DEBBG  |d MERUC  |d OCLCQ  |d OCLCA  |d CEF  |d NLE  |d UKMGB  |d OCLCQ  |d UAB  |d UKAHL  |d OCLCQ  |d OCLCO  |d OCLCQ  |d OCL  |d QGK 
016 7 |a 018010632  |2 Uk 
019 |a 933584526  |a 951065031  |a 1259107168 
020 |a 9781785886874  |q (electronic bk.) 
020 |a 1785886878  |q (electronic bk.) 
020 |a 178588302X 
020 |a 9781785883026 
020 |z 9781785883026 
020 |z 178588302X 
024 3 |a 9781785883026 
029 1 |a CHNEW  |b 000960591 
029 1 |a CHVBK  |b 491696442 
029 1 |a DEBBG  |b BV043892761 
029 1 |a DEBBG  |b BV043968713 
029 1 |a DEBSZ  |b 485792214 
029 1 |a GBVCP  |b 882848453 
029 1 |a UKMGB  |b 018010632 
035 |a (OCoLC)935744765  |z (OCoLC)933584526  |z (OCoLC)951065031  |z (OCoLC)1259107168 
037 |a ECE49343-C94B-44F3-834A-5361360CDD9B  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.76.C672 
072 7 |a GAM  |x 001000  |2 bisacsh 
082 0 4 |a 794.81526  |2 23 
049 |a UAMI 
100 1 |a Sommer, Cody M.,  |e author. 
245 1 0 |a Building Minecraft server modifications :  |b create and customize your very own Minecraft server using Java and the Spigot API /  |c Cody M. Sommer. 
250 |a Second edition. 
264 1 |a Birmingham, UK :  |b Packt Publishing,  |c 2015. 
300 |a 1 online resource (1 volume) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
490 1 |a Community experience distilled 
588 0 |a Online resource; title from cover page (Safari, viewed January 21, 2016). 
500 |a Includes index. 
520 8 |a Create and customize your very own Minecraft server using Java and the Spigot APIAbout This Book Set up a Minecraft server that you control Use object-oriented programming to modify Minecraft regardless of your level of experience This interactive guide will help you create a unique experience for you and your friendsWho This Book Is ForThis book is great for anyone who is interested in customizing their Minecraft server. Whether you are new to programming, Java, Bukkit, or even Minecraft itself, this book has you covered. All you need is a valid Minecraft account. If you are interested in programming as a career or hobby, this book will get you started. If you are simply interested in playing Minecraft with your friends, then this book will help you make that experience even more enjoyable. What You Will Learn Install and run a Spigot server for free on your home PC Adjust the server settings to customize Minecraft to your liking Install an IDE and configure a project to write code Install and test plugins on a Spigot server Test your plugins through debugging the code Program in game commands and permissions Get to know advanced programming concepts such as event-driven programming, configuration files, saving/loading data, and scheduled tasks Implement configuration files to make your plugins customizable Save and load your plugin's data to persist across server restartsIn DetailMinecraft is a sandbox game that allows you to play it in any way you want. Coupled with a multiplayer server powered by Spigot, you can customize the game even more! Using the Bukkit API, anyone interested in learning how to program can control their Minecraft world by developing server plugins. This book is a great introduction to software development through the wonderful world of Minecraft. We start by instructing you through how to set up your home PC for Minecraft server development. This includes an IDE complete with the required libraries as well as a Spigot server to test on. You will be guided through writing code for several different plugins. Each chapter teaches you new skills to create plugins of increasing complexity, and each plugin adds a new concept of the Bukkit API By the end of the book, you will have all the knowledge you need about the API to successfully create any type of plugin. You can then practice and build your Java skills through developing more mods for their server. Style and approachThis hands-on guide is filled with interactive examples to help you modify Minecraft. Programming terms and concepts are explained along the way so even those who have never written code before can keep up. 
588 0 |a Print version record. 
505 0 |a Cover ; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Preface; Chapter 1: Deploying a Spigot Server ; Introduction to Spigot; Installing a new Spigot server; Setting up a new server; Minecraft/Bukkit server commands; Port forwarding; Summary; Chapter 2: Learning the Bukkit API ; Introduction to APIs; The Bukkit API documentation; Navigating through the Bukkit API documentation; Understanding the Java documentation; Exploring the Bukkit API; Summary; Chapter 3: Creating Your First Bukkit Plugin ; Installing an IDE; Creating a new project. 
505 8 |a Adding Bukkit as a libraryThe essentials of a Bukkit plugin; The plugin.yml file; The plugin's main class; Making and calling new methods; Expanding your code; Summary; Chapter 4: Testing on the Spigot Server ; Building a JAR file; Installing the plugin; Testing your plugin; Testing new versions of the plugin; Debugging the code; Learning from your mistakes; When researching is not enough; Reading the stack trace; Breaking down the code; Adding debug messages; Referring back to the Javadoc; Fixing the bug only after you understand it; Summary; Chapter 5 : Plugin Commands. 
505 8 |a Adding a command to plugin.ymlProgramming the command actions; Assigning the executor for the enchant command; Summary; Chapter 6: Player Permissions ; The benefits of permissions; Understanding permission nodes; Adding a permission node to plugin.yml; Assigning a permission node to a plugin command; Testing player permissions; Using a third-party permissions plugin; Using permission nodes throughout your plugins; Summary; Chapter 7: The Bukkit Event System ; Choosing an event; Registering an event listener; Listening for an event; Canceling an event; Communicating among events. 
505 8 |a Modifying an event as it occursCreating more plugins on your own; Summary; Chapter 8: Making Your Plugin Configurable ; Configurable data types; Writing a config.yml file; Saving, loading, and reloading the config file; Reading and storing the configured values; Using configured settings within your plugin; ItemStack within a configuration; YAML configuration hierarchy; Storing configuration values as variables; Accessing variables from another class; Summary; Chapter 9: Saving Your Data ; Types of data that can be saved; Which data to save and when; A sample teleportation plugin. 
505 8 |a Writing a ConfigurationSerializable classSaving data to a YAML configuration; Loading data from a YAML configuration; Summary; Chapter 10 : The Bukkit Scheduler; Creating a BukkitRunnable class; Synchronous versus asynchronous tasks; Running a task from a BukkitRunnable class; Running a task later from a BukkitRunnable class; Running a task timer from a BukkitRunnable class; Writing a repeating task for a plugin; Adding a delayed task to a plugin; Executing code asynchronously; Summary; Index. 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a Minecraft (Game) 
650 0 |a Computer games  |x Programming. 
650 0 |a Client/server computing. 
650 6 |a Minecraft (Jeu) 
650 6 |a Jeux d'ordinateur  |x Programmation. 
650 6 |a Architecture client-serveur (Informatique) 
650 7 |a GAMES  |x Board.  |2 bisacsh 
650 7 |a Client/server computing.  |2 fast  |0 (OCoLC)fst00864205 
650 7 |a Video games  |x Programming.  |2 fast  |0 (OCoLC)fst00872114 
650 7 |a Minecraft (Game)  |2 fast  |0 (OCoLC)fst01894597 
776 0 8 |i Print version:  |a Sommer, Cody M.  |t Building Minecraft Server Modifications.  |d Birmingham : Packt Publishing, ©1900 
830 0 |a Community experience distilled. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781785883026/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH29877249 
938 |a EBL - Ebook Library  |b EBLB  |n EBL4191341 
938 |a EBSCOhost  |b EBSC  |n 1133561 
938 |a YBP Library Services  |b YANK  |n 12768944 
994 |a 92  |b IZTAP