Thread: Server/Client Developer

Results 1 to 8 of 8
  1. #1 Server/Client Developer 
    Donator


    Join Date
    Mar 2011
    Posts
    2,350
    Thanks given
    1,193
    Thanks received
    824
    Rep Power
    856
    I'm not going to go to much into detail here. I'm also not going to make you waste your time to fill out an application. All I need to know is your experience and proof of work. I'd like to get my server up and running and it's taking to much time with a single developer. Post below if you're interested and we can go further in detail over MSN.
    Reply With Quote  
     

  2. #2  
    Registered Member hybridpvp's Avatar
    Join Date
    Mar 2012
    Posts
    3
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    what do you mean by running? like online for others to play?
    Reply With Quote  
     

  3. #3  
    Donator


    Join Date
    Mar 2011
    Posts
    2,350
    Thanks given
    1,193
    Thanks received
    824
    Rep Power
    856
    Obviously.
    Reply With Quote  
     

  4. #4  
    Banned
    Join Date
    Mar 2012
    Posts
    413
    Thanks given
    0
    Thanks received
    135
    Rep Power
    0
    you mean you want to know how to get your server online?
    Reply With Quote  
     

  5. #5  
    Donator


    Join Date
    Mar 2011
    Posts
    2,350
    Thanks given
    1,193
    Thanks received
    824
    Rep Power
    856
    I know how to get a server online. The amount of work I need help doing is a lot for a single developer. I'll explain it better above.
    Reply With Quote  
     

  6. #6  
    Banned

    Join Date
    Oct 2010
    Posts
    716
    Thanks given
    82
    Thanks received
    131
    Rep Power
    0
    Code:
    public void handlePortal(int req, int x, int y, int h, int[] additems, int[] quantity) {
    			if (c.dungKills >= req) {
    					c.getPA().movePlayer(x, y, h);	
    						for (int i=0;i<additems.length;i++) {					
    							c.getItems().addItem(additems[i], quantity[i]);
    						}
    						setNew();		
    			} else {
    				int left = req - c.dungKills;
    				c.sendMessage("You need "+left+" more kills to move on to the next floor.");
    				return;
    			}	
    		}
    Code:
    case 2466://portal 2
    			c.dungeon().handlePortal(15, 2977, 5107, 1, new int[] {6570,7462,397}, new int[] {1,1,5}); 
    		break;
    Code:
    package server.content;
    
    import java.io.*;
    import java.util.*;
    
    	/**
    	 * @author Arno/Articron
    	 * Handling the un-spawnable items from a .txt list
    	 */
    
    public class BadItems {
    		
    	public static int maxAmount = 300; //ONLY THING TO EDIT!
    	public static int[] badItems = new int[maxAmount];
    	private Scanner txtInput; 
    			
    	
    	public BadItems() {
    		for (int i=0;i<maxAmount;i++) {				
    			BadItems.badItems[i] = 0;
    		}
    			
    		startLoad("./Data/itemconfig/restrictedItems.txt");			
    	}
    		
    
    	private void startLoad(String Path) {
    		try {
    			txtInput = new Scanner(new File(Path));
    			putInArray();				
    		} 
    		catch (Exception e) {
    			System.out.println("Something is wrong with restricted Items!");
    		}
    		
    	}
    		
    
    	private void putInArray() {
    		for (int i=0;i<maxAmount;i++) {
    			BadItems.badItems[i] = txtInput.nextInt();
    		}
    		closeScanner();
    	}
    
    	
    	private void closeScanner() {
    		txtInput.close();
    	}
    	
    	}
    Code:
    package server.content;
    	
    	/**
    	 * @author Arno
    	 * Custom yelltags
    	 * Format: NAME("Name","Yelltag")
    	 */
    public enum Yell {
    		ARNO("Arno", "@red@[317 Engineer]@bla@"),
    		BRETT("Hi im brett", "@red@[Owner & Coder]@bla@"),
    		TAYLOR("Taylor h", "@yel@[Head Administrator]@bla@"),
    		TANNER("Call me", "@red@[#1 Reject]@bla@");
    		
    		private final String yelltag, player;
    		public static int index;
    		
    		public static void flickIndex() {
    			if (index >= 1) 
    				index = 0;
    		}
    		
    		/**
    		 * @param playername temporary hold of String
    		 * @param yellTitle temporary hold of String
    		 */
    		private Yell (String playername, String yellTitle) {
    			player = playername;
    			yelltag = yellTitle;
    		}
    		
    		/**
    		 * Printout permanent String
    		 */
    		public String getName() {
    			return player;
    		}
    		public String getTag() {
    			return yelltag;
    		}
    
    }
    You got me added boi
    Reply With Quote  
     

  7. #7  
    Legends Never Die


    Join Date
    Nov 2009
    Posts
    4,289
    Thanks given
    91
    Thanks received
    1,216
    Rep Power
    5000
    You should know my work by now, reply back.
    Reply With Quote  
     

  8. #8  
    Banned

    Join Date
    Oct 2010
    Age
    29
    Posts
    1,886
    Thanks given
    446
    Thanks received
    523
    Rep Power
    0
    Long time no see
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Replies: 12
    Last Post: 11-03-2012, 12:50 AM
  2. In need of a Server/Client developer
    By -Wiz in forum Requests
    Replies: 4
    Last Post: 03-29-2012, 08:27 PM
  3. Server/Client Developer
    By SLayRz in forum Requests
    Replies: 2
    Last Post: 12-16-2011, 03:18 PM
  4. Requesting Client Developer, Server Developer
    By Kota Ko in forum Requests
    Replies: 13
    Last Post: 12-05-2011, 05:41 AM
  5. Replies: 12
    Last Post: 07-13-2011, 10:51 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •