You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							68 lines
						
					
					
						
							2.0 KiB
						
					
					
				
			
		
		
	
	
							68 lines
						
					
					
						
							2.0 KiB
						
					
					
				| // • ▌ ▄ ·.  ▄▄▄·  ▄▄ • ▪   ▄▄· ▄▄▄▄·  ▄▄▄·  ▐▄▄▄  ▄▄▄ . | |
| // ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· | |
| // ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ | |
| // ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ | |
| // ▀▀  █▪▀▀▀ ▀  ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀  ▀  ▀ ▀▀  █▪ ▀▀▀ | |
| //      Magicbane Emulator Project © 2013 - 2022 | |
| //                www.magicbane.com | |
|  | |
|  | |
| package engine.objects; | |
|  | |
| import java.sql.ResultSet; | |
| import java.sql.SQLException; | |
| import java.util.ArrayList; | |
| import java.util.HashMap; | |
|  | |
|  | |
| public class GuildCondemn { | |
|  | |
|     public static HashMap<Integer, ArrayList<GuildCondemn>> GetCondemnedFromGuildID = new HashMap<>(); | |
|     private int ID; | |
|     private int playerUID; | |
|     private int parentGuildUID; | |
|     private int guildUID; | |
|     private int friendType; | |
|  | |
|  | |
|     /** | |
|      * ResultSet Constructor | |
|      */ | |
|     public GuildCondemn(ResultSet rs) throws SQLException { | |
|         this.playerUID = rs.getInt("playerUID"); | |
|         this.parentGuildUID = rs.getInt("buildingUID"); | |
|         this.guildUID = rs.getInt("guildUID"); | |
|         this.friendType = rs.getInt("friendType"); | |
|     } | |
|  | |
|  | |
|     public GuildCondemn(int playerUID, int parentGuildUID, int guildUID, int friendType) { | |
|         super(); | |
|         this.playerUID = playerUID; | |
|         this.parentGuildUID = parentGuildUID; | |
|         this.guildUID = guildUID; | |
|         this.friendType = friendType; | |
|     } | |
|  | |
|  | |
|     public int getPlayerUID() { | |
|         return playerUID; | |
|     } | |
|  | |
|  | |
|     public int getParentGuildUID() { | |
|         return parentGuildUID; | |
|     } | |
|  | |
|  | |
|     public int getGuildUID() { | |
|         return guildUID; | |
|     } | |
|  | |
|  | |
|     public int getFriendType() { | |
|         return friendType; | |
|     } | |
|  | |
|  | |
| }
 | |
| 
 |