Thread: Need help shops

Results 1 to 5 of 5
  1. #1 Need help shops 
    Kite123
    Guest
    Hey, I need help Adding/removing Items to shops. I got Comabttscape source something and I use vista. I cant find the shops.cfg... So please help me what to do.
    And how to add stuffs
    Reply With Quote  
     

  2. #2  
    Registered Member

    Join Date
    Jan 2007
    Age
    34
    Posts
    2,947
    Thanks given
    15
    Thanks received
    33
    Rep Power
    1360
    Should be with the rest of the config files, in a different folder to the classes.
    Reply With Quote  
     

  3. #3  
    Registered Member

    Join Date
    Sep 2008
    Posts
    2,219
    Thanks given
    148
    Thanks received
    204
    Rep Power
    1570
    Look for the path in your Shop 'handler'.



    Reply With Quote  
     

  4. #4  
    Kite123
    Guest
    But this is my whole shop handler O.o
    Code:
    import java.io.BufferedReader;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    
    public class ShopHandler {
    	public static int MaxInShopItems = 80;
    	public static int MaxShopItems = 101; // 1 more because we don't use [0] !
    	public static int MaxShops = 101; // 1 more because we don't use [0] !
    	public static int MaxShowDelay = 90;
    	public static int[] ShopBModifier = new int[MaxShops];
    	public static int[][] ShopItems = new int[MaxShops][MaxShopItems];
    	public static int[][] ShopItemsDelay = new int[MaxShops][MaxShopItems];
    	public static int[][] ShopItemsN = new int[MaxShops][MaxShopItems];
    	public static int[][] ShopItemsSN = new int[MaxShops][MaxShopItems];
    	public static int[] ShopItemsStandard = new int[MaxShops];
    	public static String[] ShopName = new String[MaxShops];
    	public static int[] ShopSModifier = new int[MaxShops];
    	public static int TotalShops = 0;
    
    	ShopHandler() {
    		for (int i = 0; i < MaxShops; i++) {
    			for (int j = 0; j < MaxShopItems; j++) {
    				ResetItem(i, j);
    				ShopItemsSN[i][j] = 0; // Special resetting, only at begin !
    			}
    			ShopItemsStandard[i] = 0; // Special resetting, only at begin !
    			ShopSModifier[i] = 0;
    			ShopBModifier[i] = 0;
    			ShopName[i] = "";
    		}
    		TotalShops = 0;
    		loadShops("shops.cfg");
    	}
    
    	public void DiscountItem(int ShopID, int ArrayID) {
    		ShopItemsN[ShopID][ArrayID] -= 1;
    		if (ShopItemsN[ShopID][ArrayID] <= 0) {
    			ShopItemsN[ShopID][ArrayID] = 0;
    			ResetItem(ShopID, ArrayID);
    		}
    	}
    
    	public boolean loadShops(String FileName) {
    		String line = "";
    		String token = "";
    		String token2 = "";
    		String token2_2 = "";
    		String[] token3 = new String[(MaxShopItems * 2)];
    		boolean EndOfFile = false;
    		BufferedReader characterfile = null;
    		try {
    			characterfile = new BufferedReader(new FileReader("config\\"
    					+ FileName));
    		} catch (FileNotFoundException fileex) {
    			misc.println(FileName + ": file not found.");
    			return false;
    		}
    		try {
    			line = characterfile.readLine();
    		} catch (IOException ioexception) {
    			misc.println(FileName + ": error loading file.");
    			return false;
    		}
    		while ((EndOfFile == false) && (line != null)) {
    			line = line.trim();
    			int spot = line.indexOf("=");
    			if (spot > -1) {
    				token = line.substring(0, spot);
    				token = token.trim();
    				token2 = line.substring(spot + 1);
    				token2 = token2.trim();
    				token2_2 = token2.replaceAll("\t\t", "\t");
    				token2_2 = token2_2.replaceAll("\t\t", "\t");
    				token2_2 = token2_2.replaceAll("\t\t", "\t");
    				token2_2 = token2_2.replaceAll("\t\t", "\t");
    				token2_2 = token2_2.replaceAll("\t\t", "\t");
    				token3 = token2_2.split("\t");
    				if (token.equals("shop")) {
    					int ShopID = Integer.parseInt(token3[0]);
    					ShopName[ShopID] = token3[1].replaceAll("_", " ");
    					ShopSModifier[ShopID] = Integer.parseInt(token3[2]);
    					ShopBModifier[ShopID] = Integer.parseInt(token3[3]);
    					for (int i = 0; i < ((token3.length - 4) / 2); i++) {
    						if (token3[(4 + (i * 2))] != null) {
    							ShopItems[ShopID][i] = (Integer
    									.parseInt(token3[(4 + (i * 2))]) + 1);
    							ShopItemsN[ShopID][i] = Integer
    									.parseInt(token3[(5 + (i * 2))]);
    							ShopItemsSN[ShopID][i] = Integer
    									.parseInt(token3[(5 + (i * 2))]);
    							ShopItemsStandard[ShopID]++;
    						} else {
    							break;
    						}
    					}
    					TotalShops++;
    				}
    			} else {
    				if (line.equals("[ENDOFSHOPLIST]")) {
    					try {
    						characterfile.close();
    					} catch (IOException ioexception) {
    					}
    					return true;
    				}
    			}
    			try {
    				line = characterfile.readLine();
    			} catch (IOException ioexception1) {
    				EndOfFile = true;
    			}
    		}
    		try {
    			characterfile.close();
    		} catch (IOException ioexception) {
    		}
    		return false;
    	}
    
    	public void process() {
    		boolean DidUpdate = false;
    		for (int i = 1; i <= TotalShops; i++) {
    			for (int j = 0; j < MaxShopItems; j++) {
    				if (ShopItems[i][j] > 0) {
    					if (ShopItemsDelay[i][j] >= MaxShowDelay) {
    						if ((j <= ShopItemsStandard[i])
    								&& (ShopItemsN[i][j] <= ShopItemsSN[i][j])) {
    							if (ShopItemsN[i][j] < ShopItemsSN[i][j]) {
    								ShopItemsN[i][j] += 1; // if amount lower then
    														// standard, increase it
    														// !
    							}
    						} else {
    							DiscountItem(i, j);
    						}
    						ShopItemsDelay[i][j] = 0;
    						DidUpdate = true;
    					}
    					ShopItemsDelay[i][j]++;
    				}
    			}
    			if (DidUpdate == true) {
    				for (int k = 1; k < PlayerHandler.maxPlayers; k++) {
    					if (PlayerHandler.players[k] != null) {
    						if ((PlayerHandler.players[k].IsShopping == true)
    								&& (PlayerHandler.players[k].MyShopID == i)) {
    							PlayerHandler.players[k].UpdateShop = true;
    						}
    					}
    				}
    				DidUpdate = false;
    			}
    		}
    	}
    
    	public void ResetItem(int ShopID, int ArrayID) {
    		ShopItems[ShopID][ArrayID] = 0;
    		ShopItemsN[ShopID][ArrayID] = 0;
    		ShopItemsDelay[ShopID][ArrayID] = 0;
    	}
    }
    Reply With Quote  
     

  5. #5  
    Kite123
    Guest
    ....
    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

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •