[Release] Generating URLs

Junior Spellweaver
Joined
Mar 24, 2009
Messages
173
Reaction score
18
PHP:
public class Random {

	private static String[] strings = { "Accessory", "Cap", "Cape", "Coat",
			"Glove", "Overall", "Pants", "PetEquip", "Rings", "Shield",
			"Shoes", "Weapon", "Job", "Skill", "Coupon", "FaceFemale",
			"FaceMale", "HairFemale", "HairMale", "HairCoupons", "PetFood",
			"PetEquips", "Pet", "NPC", "Monsters", "Maps", "Portals",
			"EffectItems", "EtcItems", "SetupItems", "UseItems", "ApSpReset",
			"CashFace", "CashStar", "Chair", "ExpCoupons", "FMStores",
			"GuildEmoticons", "ItemChange", "MapEffect", "Megaphone",
			"MiscCash", "MiscCoupon", "MiscUnknown", "Morph", "Taming",
			"Teleport" };

	public static void main(String[] args) {
		for (int i = 0; i < strings.length; i++) {
			System.out.println("<a href=" + strings[i] + ".txt>" + strings[i]
					+ "</a><br>");
		}
	}
}

Change the stuff in the array.
All files generated must be txt files unless you change it. I used this when I decided to make a v62 item database for my site since I was tired of searching
 
Back