Thread: [RELEASE] Os-Kingdom v1 || "OSRS"

Page 2 of 5 FirstFirst 1234 ... LastLast
Results 11 to 20 of 41
  1. #11  
    Exiles
    A S T R A's Avatar
    Join Date
    Mar 2014
    Posts
    351
    Thanks given
    13
    Thanks received
    28
    Rep Power
    34
    Quote Originally Posted by imTyler7 View Post
    This source also has uuid banning implemented into it. We noticed in the past that players could not login due to an unknown problem. The system added due to a problem with a group of hackers. I also do not believe the client is mac compatible. Will check into that error, it shouldn't be happening as we did not run the server through eclipse.
    This^
    Reply With Quote  
     

  2. #12  
    OS-Saradomin Founder & Developer

    Saradomin's Avatar
    Join Date
    Nov 2015
    Posts
    593
    Thanks given
    296
    Thanks received
    149
    Rep Power
    238
    Had quiet some fun playing this server, thanks for the contribution!
    Reply With Quote  
     

  3. #13  
    Exiles Developer


    Join Date
    May 2009
    Age
    28
    Posts
    316
    Thanks given
    55
    Thanks received
    25
    Rep Power
    86
    Because the command for dumping npcs drops in the commands.java is pretty crappy & crashes the server when using, here is a cleaner version:
    Code:
    			if(playerCommand.startsWith("npcdrops")) {
    				String input = playerCommand.substring(9);
    				for (int k = 0; k < Config.NPC_DROPS.length; k++) {//Loop I found inside of NPChandler for drops
    					int npcId = Config.NPC_DROPS[k][0];
    					String npcName = Server.npcHandler.getNpcListName(Config.NPC_DROPS[k][0]).toLowerCase(); //Npc Name based off the npcId in drop rates
    					int dropId = Config.NPC_DROPS[k][1];
    					int amount = Config.NPC_DROPS[k][2]; //amount in drop rates
    					int rarity = Config.NPC_DROPS[k][3];
    					//if (rarity >= 150) {
    					String itemname = ItemDefinition.forId(dropId).getName(); //Gets item name from npc drops
    						try {
    						BufferedWriter coord = new BufferedWriter(new FileWriter("./NpcDrops.txt", true));
    							try {
    								if (Integer.valueOf(input) == 1) { //Sort with item names first
    									coord.write(itemname +" (x"+amount+") is dropped by "+npcName.replace("_", " ") + " with a 1/"+((rarity == 0) ? 1 : rarity)+" rarity.");
    									coord.newLine();
    								} else if (Integer.valueOf(input) == 2) { //Sort with npc names first
    									coord.write(npcName.replace("_", " ")+" drops (x"+amount+") "+ itemname +" with a 1/"+((rarity == 0) ? 1 : rarity)+" rarity.");
    									coord.newLine();
    								} else {
    									player.sendGameMessage("Invalid Format. ::npcdrops 2(itemnames) or 3 (npcnames)");
    									break;
    								}
    							} finally {
    								coord.close();
    							}
    						}  catch (Exception e) {
    							player.sendGameMessage("Invalid Format. ::npcdrops(space)number");
    						}
    					//}
    				}
    			}
    Uncomment the two comments to dump a file with just announced rare items.
    Decided to release because I gave to someone already.
    Quote Originally Posted by Eazy View Post
    Quote Originally Posted by lostlegend View Post
    its not os-legacy its switched to Project-Insanity.
    And Very Much i ReCoded MEself. Check it out and u wil see ur self.
    People allways bothering with saying OS-LEGACY.. U NEVER CHECKED SERVERDONT COMPLAIN CHECK IT OUT B4 COMPLAINING
    So you switched Project-Insanity to Project-Insanity? gj
    Reply With Quote  
     

  4. #14  
    Registered Member
    Join Date
    Jul 2016
    Posts
    1
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    Everytime I do what you say, My server loads properly and I uploaded everything to dropbox and shit, but my client just says unzipping RAR and then says connection error 5,...,connection error 10,.., ec cetera...

    I don't know how to fix it so that i'm able to get the client to connect to the server, other than that great job detailing how to run the source and ec cetera.

    Thanks
    -Oren
    Reply With Quote  
     

  5. #15  
    Exiles
    A S T R A's Avatar
    Join Date
    Mar 2014
    Posts
    351
    Thanks given
    13
    Thanks received
    28
    Rep Power
    34
    Quote Originally Posted by ImKingOren View Post
    Everytime I do what you say, My server loads properly and I uploaded everything to dropbox and shit, but my client just says unzipping RAR and then says connection error 5,...,connection error 10,.., ec cetera...

    I don't know how to fix it so that i'm able to get the client to connect to the server, other than that great job detailing how to run the source and ec cetera.

    Thanks
    -Oren
    Make sure the download link from dropbox has a ?=1 at the end and also, if you uploaded a new cache, you may need to add 1 to the version. Its currently at 13 so it may need to be 14.
    Let me know if you're still having problems.
    Reply With Quote  
     

  6. #16  
    Registered Member
    Join Date
    Jun 2014
    Posts
    20
    Thanks given
    1
    Thanks received
    0
    Rep Power
    11
    Quote Originally Posted by OsKingdom View Post
    Make sure the download link from dropbox has a ?=1 at the end and also, if you uploaded a new cache, you may need to add 1 to the version. Its currently at 13 so it may need to be 14.
    Let me know if you're still having problems.
    where do i add +1? still having same problem.
    Reply With Quote  
     

  7. #17  
    Exiles
    A S T R A's Avatar
    Join Date
    Mar 2014
    Posts
    351
    Thanks given
    13
    Thanks received
    28
    Rep Power
    34
    Quote Originally Posted by paska1 View Post
    where do i add +1? still having same problem.
    cachedownloader.java at 1 to the 13 to make it 14 for the client version. Its near the top of the file
    Reply With Quote  
     

  8. #18  
    Registered Member
    Join Date
    Jun 2014
    Posts
    20
    Thanks given
    1
    Thanks received
    0
    Rep Power
    11
    Quote Originally Posted by OsKingdom View Post
    cachedownloader.java at 1 to the 13 to make it 14 for the client version. Its near the top of the file
    OS-Kingdom/OS-kingdom.zip the archive is either in unknown format or damaged.

    I checked that file and i couldn't open it because the file is corrupted.
    Reply With Quote  
     

  9. #19  
    Exiles
    A S T R A's Avatar
    Join Date
    Mar 2014
    Posts
    351
    Thanks given
    13
    Thanks received
    28
    Rep Power
    34
    Quote Originally Posted by paska1 View Post
    OS-Kingdom/OS-kingdom.zip the archive is either in unknown format or damaged.

    I checked that file and i couldn't open it because the file is corrupted.
    Delete everything that has to do with the current cache, and download a fresh one from the link. You didn't need to change the cache link in order to play, thats for if you want to update the cache/release the server to others. So, your best bet would be to put the old link back in the cachedownloader.java, change the version back to 13, and put the original cache back in your user folder
    Reply With Quote  
     

  10. #20  
    JavaScript Heathen 👹

    frostbit3's Avatar
    Join Date
    Mar 2012
    Age
    29
    Posts
    404
    Thanks given
    381
    Thanks received
    90
    Rep Power
    78
    looks like every server out there. the text structure of your post makes my eyes bleed. my suggestion is to be more creative in how the server is structured, and how does the content you add to the game impact it? does it provide meaning/add to the experience, or are you just shoving random shit into the server for the sake of feeling productive.
    >> real life is pretty much the same as code. off-by-one, naming, and unterminated recursion
    Reply With Quote  
     

Page 2 of 5 FirstFirst 1234 ... LastLast

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: 100
    Last Post: 07-08-2016, 02:42 AM
  2. Replies: 211
    Last Post: 08-11-2015, 08:29 PM
  3. Replies: 31
    Last Post: 07-04-2015, 08:59 PM
  4. Replies: 1
    Last Post: 03-24-2015, 09:41 AM
  5. [RELEASE] - Userbar generator V1 fully styled [SAVES IMAGES]
    By VanquishRSPS in forum Website Development
    Replies: 4
    Last Post: 09-02-2013, 03:31 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •