Jump to content

The RuneLocus forum has been archived and does not accept new registrations.
Click here for more information, and click here to join the community on Discord.

Search the Community

Showing results for tags 'error'.

The search index is currently processing. Current results may not be complete.
  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • RuneLocus
    • News & Announcements
    • Information Booth
    • Website Support
    • Introductions
    • Chat
    • Forum Games
  • RuneScape Development
    • RSPS General
    • RuneScape Private Server (RS2)
    • RuneScape Private Server (503+)
    • RuneScape Private Server (EoC 742+)
  • Other
    • Digital Art
    • Gaming
    • Webdevelopment
    • Computers
  • Marketplace
    • RuneScape Market
    • RSPS Market
    • Others Market
    • Freelance Middleman Services
  • Super Secret Club's Topics

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


  1. Hi, I really enjoy playing on RSPS 317 servers but the big problem I've got is that almost all of the 317 servers give me the "Sorry en error has occured whilst laoding..." message. 718 servers work just fine never had this message on them I don't understand what the problem is. I re-installed clients for all of the servers it didnt work. I tried updating Java a few times it is up-to-date it did not work.
  2. So I got this error which I have no idea how to fix or set the path for on eclipse, can anyone help me? https://imgur.com/74WiDTG
  3. Lamaj

    718 error compile

    My server does not compile in eclipse. Anyone can help me ?
  4. thebadman

    Cache error

    Hey guys I tried to run my server through eclipse but I was getting errors in the console, I fixed whatever I could but have this left, the cache file is there but I cant figure out why its doing this Can someone please help, will be much appreciated [CODE]Exception in thread "main" java.io.FileNotFoundException: user.home\742Cache\main_file_cache.dat2 (The system cannot find the path specified) at java.io.RandomAccessFile.open0(Native Method) at java.io.RandomAccessFile.open(Unknown Source) at java.io.RandomAccessFile.<init>(Unknown Source) at java.io.RandomAccessFile.<init>(Unknown Source) at com.ben.store.Store.<init>(Store.java:34) at com.ben.store.Store.<init>(Store.java:28) at com.ben.store.Store.<init>(Store.java:24) at com.matrix742.cache.Cache.load(Cache.java:72) at com.matrix742.Launcher.main(Launcher.java:95)[/CODE]
  5. So I'm trying to help a friend to get his server online for us to play on. So we have forwarded port "43594" Edited so the sub revision matches. We've edited Class26.java / Class291.java / Loader.Java and so on to change the ip to the owners. He have compiled the server after each edit to the java files. Yet this is all the issues i've found about "js5connect" related error's. Is there anything I've missed? please let me know ;) We are just stuck at 0% when trying to connect to his server
  6. client.java:88: error: cannot find symbol public void rspsdata(Client c, String username){ ^ symbol: class Client location: class client Note: client.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. 1 error Press any key to continue . . . What do i need to add or remove? i know it says what it is and the location but i have tried everything. Can anyone help me please? Skype: jehe35 Team viewer is an option.
  7. hey guys I got my server running but my client wont run onley compile:confused: so can some one tell me whats wrong with it this is what I get when running they 718 client.... 'C:\Program' is not recognized as an internal or external command, operable program or batch file. Press any key to continue . . .
  8. Safee

    PI Client Error

    When I activate orbs on the client I'm using it crashes. I get this error [CODE]Exception in thread "Thread-3" java.lang.NumberFormatException: For input string: "" at java.lang.NumberFormatException.forInputString(Unknown Source) at java.lang.Integer.parseInt(Unknown Source) at java.lang.Integer.parseInt(Unknown Source) at Client.loadAllOrbs(Client.java:11851) at Client.drawMinimap(Client.java:9580) at Client.drawGameScreen(Client.java:8029) at Client.processDrawing(Client.java:8810) at RSApplet.run(RSApplet.java:192) at Client.run(Client.java:4593) at java.lang.Thread.run(Unknown Source)[/CODE] Here is line 11851 in Client.java [CODE]int currentLevel = Integer.parseInt(currentStats), maxLevel = Integer.parseInt(maxStats), level = (int) (((double) currentLevel / (double) maxLevel) * 100D);[/CODE] If you guys have any ideas on what to fix in this line please help :) OH and this is my full loadorbs method: [CODE]private void loadAllOrbs(int xOffset) { drawSpecialOrb(); int[] spriteID = { isPoisoned && hpHover ? 8 : 7, prayHover ? 8 : 7, runHover ? 8 : 7, sumActive && sumHover ? 8 : 7 }, coloredOrbSprite = { 0, clickedQuickPrayers ? 2 : 1, runClicked ? 4 : 3, sumActive ? 6 : 5 }, orbSprite = { 9, 10, (runClicked ? 12 : 11), 13 }; String cEnergy = RSInterface.interfaceCache[149].message.replaceAll("%", ""); String hp = RSInterface.interfaceCache[4016].message.replaceAll("%", ""); int currentHP = hp.length() > 0 ? Integer.parseInt(hp) : 0, currentEnergy = cEnergy.length() > 0 ? Integer.parseInt(cEnergy) : 0; for (int i = 0; i < 3; i++) { String currentStats = RSInterface.interfaceCache[currentInterface[i]].message.replaceAll("%", ""), maxStats = RSInterface.interfaceCache[maximumInterface[i]].message.replaceAll("%", ""); int currentLevel = Integer.parseInt(currentStats), maxLevel = Integer.parseInt(maxStats), level = (int) (((double) currentLevel / (double) maxLevel) * 100D); cacheSprite[spriteID[i]].drawSprite(orbX[i] + xOffset, orbY[i]); cacheSprite[coloredOrbSprite[i]].drawSprite(coloredOrbX[i] + xOffset, coloredOrbY[i]); double percent = (i == 2 ? runEnergy ? currentEnergy / 100D : 100 : level / 100D), fillHp = 26 * percent, fillPrayer = 26 * percent, fillRun = 26 * percent; double[] fill = { fillHp, fillPrayer, fillRun}; int depleteFill = 26 - (int) fill[i]; cacheSprite[14].myHeight = depleteFill; try { cacheSprite[14].drawSprite(coloredOrbX[i] + xOffset, coloredOrbY[i]); } catch (Exception e) { } cacheSprite[orbSprite[i]].drawSprite(orbIconX[i] + xOffset, orbIconY[i]); smallText.method382(getOrbTextColor(i == 2 ? runEnergy ? currentEnergy : 100 : level), orbTextX[i] + xOffset, "" + (i == 2 ? runEnergy ? cEnergy : 100 : i == 0 && newDamage ? currentHP * 10 : RSInterface.interfaceCache[currentInterface[i]].message.replaceAll("%", "")), orbTextY[i], true); } if(frameMode == ScreenMode.FIXED) { cacheSprite[worldHover ? 54 : 53].drawSprite(202, 20); } else { cacheSprite[worldHover ? 52 : 51].drawSprite(frameWidth - 118, 154); } }[/CODE]
  9. I need help with an issue I got when trying to start an RSPS and have a friend test join the server, I was able to log on while he got an error connecting to server message. I've port forwarded check like 5 times that the Server = is my address and I still cannot figure out what the heck is wrong with the server I am using eclipse and there are no errors only like minor warnings and like I stated I am able to connect others most likely cannot.
  10. Need help how do i fix this? i was fixing and moving shops to the home location I have chose which is edgeville. but then when I compiled it it said this and everytime i log in it will freeze when i try run. [url]https://gyazo.com/ec31d8c69aba9acc101c622581bccdbd[/url]
  11. Hey guys i've always wanted to start my own RSPS and so far everything is going well but i have an issue with the compiler and error connecting to server, Here is the issue with the compiler : [url]http://gyazo.com/f8b5d34e4369d41531c6c7745b34211b[/url] What do i do to fix that issue? Also for my error connecting to server i have gone into the Client.Java and have changed ip to mine and all but i still cant log in?
  12. wasolsdpker

    Error help?

    [img]http://i.gyazo.com/7d291d7e0b33aecdb9cd1460a782741e.png[/img]
  13. This is 667 Project Poanizer and when I jar'ed it, when I try to run it, it says me this. I've searched everywhere and nothing that can fix it. I changed everything from 127.0.0.1 to my no-ip address, I portforwarded, my source is running and canyouseeme.org says my port is open. You'd be a life saver if you can help me fix it. In the comments, tell me what .java file you want to see and I'll show it or add me on skype and we could teamviewer. I'm kind of tired of errors on this source; it's the 8th I fixed and I had to figure them out myself. I don't know what NullPointerException is or what the error means. So contact me on skype at sakoofortin and I'll give you my teamviewer info from there or just tell me in the comments what file you want to see Thanks! Error: [attachment=78:.Jar error.jpg]
  14. Could somebody help me with fixing it free? Ive tried every way and i still cant get that working, ive tried the "autocachedownload" tutorials, but nothing seems to work. PLEASE :/ Skype : lixalt.martin [IMG]http://gyazo.com/b391e45eb8d10d93918b8bfb83f8196b[/IMG]
  15. Hi Runelocus Community, This is Mathy and I have an error when I try to compile my client. It has really affected me now because I can't make a working .jar application with it because of that error. When I downloaded the source/client, the compiler errors weren't doing anything because it was working anyway. So for me, every single client I download and I find awesome gives me this error. My PC is like JSObject cursed. I just don't get what the error is. It's been there since I downloaded it so it's either my PC or the coder of the client who left 3 errors and 2 warnings. Anyways, here's the error and if you want to see it by yourself, my skype is sakoofortin and from there I'll tell you my teamviewer info (teamviewer is for me the last option to take) so if you can help in the comments, it'll be greatly appreciated. Thanks! :D Error: [attachment=77:Jsobjectcurse - The Return -.jpg]
  16. Hello, I'm kinda new To Rune-Locus, I need any help in fixing this Java.lang, I'm a Intermediate Java Coder but I can't seen to figure out how to fix this. Any help fixing this, will be appreciated! Also I added 602 Skill Interface but the sprites wont load in actual game: I unpacked the sprites at "cache/sprites/Interfaces" [IMG]http://i.imgur.com/FaNn3vL.jpg[/IMG] Here is Class 36, Animations, Client, RsApplet (PasteBins). [url=http://pastebin.com/DX7jmjNt][Java] Class36 - Pastebin.com[/url] [url=http://pastebin.com/cap58JDq][Java] Animation - Pastebin.com[/url] [url=http://pastebin.com/vDbvAArR][Java] Client.java - Pastebin.com[/url] [url=http://pastebin.com/z09cEUdT][Java] RsApplet - Pastebin.com[/url] EDIT: No Teamviewer, skype! A Thanks Ahead!
  17. Hi, i got this error from my itembonuspacker: [QUOTE] Exception in thread "main" java.lang.NoClassDefFoundError: com/alex/store/Store at com.rs.cache.Cache.init(Cache.java:20) at com.rs.tools.ItemBonusesPacker.main(ItemBonusesPacker.java:11) Caused by: java.lang.ClassNotFoundException: com.alex.store.Store at java.net.URLClassLoader$1.run(URLClassLoader.java:366) at java.net.URLClassLoader$1.run(URLClassLoader.java:355) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:354) at java.lang.ClassLoader.loadClass(ClassLoader.java:424) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308) at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ... 2 more Druk op een toets om door te gaan. . . [/QUOTE] Anyone knows how to fix this? Any answers apriciated.
  18. Anybody knows how i can fix these errors? [QUOTE] src\com\rs\net\Session.java:42: error: cannot find symbol public final ChannelFuture write(ChannelBuffer outStream) { ^ symbol: class ChannelBuffer location: class Session src\com\rs\net\Session.java:42: error: cannot find symbol public final ChannelFuture write(ChannelBuffer outStream) { ^ symbol: class ChannelFuture location: class Session src\com\rs\net\Session.java:53: error: cannot find symbol public final Channel getChannel() { ^ symbol: class Channel location: class Session src\com\rs\net\encoders\LoginPacketsEncoder.java:6: error: package org.jboss.net ty.channel does not exist import org.jboss.netty.channel.ChannelFuture; ^ src\com\rs\net\encoders\LoginPacketsEncoder.java:7: error: package org.jboss.net ty.channel does not exist import org.jboss.netty.channel.ChannelFutureListener; ^ src\com\rs\net\encoders\GrabPacketsEncoder.java:7: error: package org.jboss.nett y.buffer does not exist import org.jboss.netty.buffer.ChannelBuffer; ^ src\com\rs\net\encoders\GrabPacketsEncoder.java:8: error: package org.jboss.nett y.buffer does not exist import org.jboss.netty.buffer.ChannelBuffers; ^ src\com\rs\net\encoders\GrabPacketsEncoder.java:9: error: package org.jboss.nett y.channel does not exist import org.jboss.netty.channel.ChannelFuture; ^ src\com\rs\net\encoders\GrabPacketsEncoder.java:10: error: package org.jboss.net ty.channel does not exist import org.jboss.netty.channel.ChannelFutureListener; ^ src\com\rs\net\encoders\GrabPacketsEncoder.java:56: error: cannot find symbol public final ChannelBuffer getArchivePacketData(int indexId, int archiveId, ^ symbol: class ChannelBuffer location: class GrabPacketsEncoder src\com\rs\net\ServerChannelHandler.java:8: error: package org.jboss.netty.boots trap does not exist import org.jboss.netty.bootstrap.ServerBootstrap; ^ src\com\rs\net\ServerChannelHandler.java:9: error: package org.jboss.netty.buffe r does not exist import org.jboss.netty.buffer.ChannelBuffer; ^ src\com\rs\net\ServerChannelHandler.java:10: error: package org.jboss.netty.chan nel does not exist import org.jboss.netty.channel.*; ^ src\com\rs\net\ServerChannelHandler.java:11: error: package org.jboss.netty.chan nel.group does not exist import org.jboss.netty.channel.group.ChannelGroup; ^ src\com\rs\net\ServerChannelHandler.java:12: error: package org.jboss.netty.chan nel.group does not exist import org.jboss.netty.channel.group.DefaultChannelGroup; ^ src\com\rs\net\ServerChannelHandler.java:13: error: package org.jboss.netty.chan nel.socket.nio does not exist import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory; ^ src\com\rs\net\ServerChannelHandler.java:17: error: cannot find symbol public final class ServerChannelHandler extends SimpleChannelHandler { ^ symbol: class SimpleChannelHandler src\com\rs\net\ServerChannelHandler.java:19: error: cannot find symbol private static ChannelGroup channels; ^ symbol: class ChannelGroup location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:20: error: cannot find symbol private static ServerBootstrap bootstrap; ^ symbol: class ServerBootstrap location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:48: error: cannot find symbol public void channelOpen(ChannelHandlerContext ctx, ChannelStateEvent e) { ^ symbol: class ChannelHandlerContext location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:48: error: cannot find symbol public void channelOpen(ChannelHandlerContext ctx, ChannelStateEvent e) { ^ symbol: class ChannelStateEvent location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:53: error: cannot find symbol public void channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) { ^ symbol: class ChannelHandlerContext location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:53: error: cannot find symbol public void channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) { ^ symbol: class ChannelStateEvent location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:58: error: cannot find symbol public void channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) { ^ symbol: class ChannelHandlerContext location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:58: error: cannot find symbol public void channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) { ^ symbol: class ChannelStateEvent location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:63: error: cannot find symbol public void channelDisconnected(ChannelHandlerContext ctx, ^ symbol: class ChannelHandlerContext location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:64: error: cannot find symbol ChannelStateEvent e) { ^ symbol: class ChannelStateEvent location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:76: error: cannot find symbol public void messageReceived(ChannelHandlerContext ctx, MessageEvent e) { ^ symbol: class ChannelHandlerContext location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:76: error: cannot find symbol public void messageReceived(ChannelHandlerContext ctx, MessageEvent e) { ^ symbol: class MessageEvent location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:101: error: cannot find symbol public void exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent ee) ^ symbol: class ChannelHandlerContext location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:101: error: cannot find symbol public void exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent ee) ^ symbol: class ExceptionEvent location: class ServerChannelHandler src\com\rs\Launcher.java:182: error: cannot find symbol for (Index index : Cache.STORE.getIndexes()) ^ symbol: class Index location: class Launcher src\com\rs\cache\Cache.java:20: error: cannot find symbol STORE = new Store(Settings.CACHE_PATH); ^ symbol: class Store location: class Cache src\com\rs\cache\Cache.java:24: error: cannot find symbol OutputStream stream = new OutputStream(); ^ symbol: class OutputStream location: class Cache src\com\rs\cache\Cache.java:24: error: cannot find symbol OutputStream stream = new OutputStream(); ^ symbol: class OutputStream location: class Cache src\com\rs\cache\Cache.java:40: error: cannot find symbol OutputStream hashStream = new OutputStream(65); ^ symbol: class OutputStream location: class Cache src\com\rs\cache\Cache.java:40: error: cannot find symbol OutputStream hashStream = new OutputStream(65); ^ symbol: class OutputStream location: class Cache src\com\rs\cache\Cache.java:42: error: cannot find symbol hashStream.writeBytes(Whirlpool.getHash(archive, 0, archive.length)); ^ symbol: variable Whirlpool location: class Cache src\com\rs\cache\loaders\ItemDefinitions.java:123: error: cannot find symbol byte[] data = Cache.STORE.getIndexes()[Constants.ITEM_DEFINITIONS_INDEX] .getFile(getArchiveId(), getFileId()); ^ symbol: variable Constants location: class ItemDefinitions src\com\rs\net\Session.java:33: error: cannot find symbol ChannelBuffer buffer = ChannelBuffers.copiedBuffer( ^ symbol: class ChannelBuffer location: class Session src\com\rs\net\Session.java:33: error: cannot find symbol ChannelBuffer buffer = ChannelBuffers.copiedBuffer( ^ symbol: variable ChannelBuffers location: class Session src\com\rs\net\encoders\WorldPacketsEncoder.java:1109: error: cannot find symbol ChannelFuture future = session.write(stream); ^ symbol: class ChannelFuture location: class WorldPacketsEncoder src\com\rs\net\encoders\WorldPacketsEncoder.java:1111: error: cannot find symbol future.addListener(ChannelFutureListener.CLOSE); ^ symbol: variable ChannelFutureListener location: class WorldPacketsEncoder src\com\rs\net\encoders\LoginPacketsEncoder.java:24: error: cannot find symbol ChannelFuture future = session.write(stream); ^ symbol: class ChannelFuture location: class LoginPacketsEncoder src\com\rs\net\encoders\LoginPacketsEncoder.java:26: error: cannot find symbol future.addListener(ChannelFutureListener.CLOSE); ^ symbol: variable ChannelFutureListener location: class LoginPacketsEncoder src\com\rs\net\encoders\GrabPacketsEncoder.java:31: error: cannot find symbol ChannelFuture future = session.write(stream); ^ symbol: class ChannelFuture location: class GrabPacketsEncoder src\com\rs\net\encoders\GrabPacketsEncoder.java:33: error: cannot find symbol future.addListener(ChannelFutureListener.CLOSE); ^ symbol: variable ChannelFutureListener location: class GrabPacketsEncoder src\com\rs\net\encoders\GrabPacketsEncoder.java:69: error: cannot find symbol ChannelBuffer buffer = ChannelBuffers.dynamicBuffer(); ^ symbol: class ChannelBuffer location: class GrabPacketsEncoder src\com\rs\net\encoders\GrabPacketsEncoder.java:69: error: cannot find symbol ChannelBuffer buffer = ChannelBuffers.dynamicBuffer(); ^ symbol: variable ChannelBuffers location: class GrabPacketsEncoder src\com\rs\net\ServerChannelHandler.java:34: error: cannot find symbol channels = new DefaultChannelGroup(); ^ symbol: class DefaultChannelGroup location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:35: error: cannot find symbol bootstrap = new ServerBootstrap(new NioServerSocketChannelFactory( ^ symbol: class ServerBootstrap location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:35: error: cannot find symbol bootstrap = new ServerBootstrap(new NioServerSocketChannelFactory( ^ symbol: class NioServerSocketChannelFactory location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:47: error: method does not override or implement a method from a supertype @Override ^ src\com\rs\net\ServerChannelHandler.java:52: error: method does not override or implement a method from a supertype @Override ^ src\com\rs\net\ServerChannelHandler.java:57: error: method does not override or implement a method from a supertype @Override ^ src\com\rs\net\ServerChannelHandler.java:62: error: method does not override or implement a method from a supertype @Override ^ src\com\rs\net\ServerChannelHandler.java:77: error: cannot find symbol if (!(e.getMessage() instanceof ChannelBuffer)) ^ symbol: class ChannelBuffer location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:84: error: cannot find symbol ChannelBuffer buf = (ChannelBuffer) e.getMessage(); ^ symbol: class ChannelBuffer location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:84: error: cannot find symbol ChannelBuffer buf = (ChannelBuffer) e.getMessage(); ^ symbol: class ChannelBuffer location: class ServerChannelHandler src\com\rs\net\ServerChannelHandler.java:75: error: method does not override or implement a method from a supertype @Override ^ src\com\rs\net\ServerChannelHandler.java:100: error: method does not override or implement a method from a supertype @Override ^ src\com\rs\game\player\content\Commands.java:31: error: package org.Vote does no t exist import org.Vote.VoteReward; ^ Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. 78 errors Compiled. Druk op een toets om door te gaan. . . [/QUOTE] Any responses greatly appriciated.
  19. Hi. When I have other people download my rsps they Experiancse this issue... Uncaught error fetching image: Java.lang.NullPointerException At sun.awt.image.UrlImageSource.getConnection(Unkown Source) Ect... ( message if you need whole thing ) I can log on just fine im using poanizer 714 rsps. They have downloaded it by Mediafire and I have done archive... I have googled and can't find anything related to a rsps or that I can understand. If you can help please put it simple as this is my first month using Java. Thanks!
  20. Hi I'm currently having a problem with others getting onto my rsps. I'm using a 562 version of spawnscape and I can log on perfectly. But others are getting the error connection timed out... I have port forwarded correctly I think using 43594 as a port and I have put my no-ip.biz In for 127.0.0.1 then changed it back once I uploaded the file to mediafire. I have also compiled and have the source and my client running once they try to log on. I also have no-ip.biz running and I is giving me all checks. BUT! the website canyouseeme.org is saying that it can't see me and gives me error connection timed out. Please help me!
  21. I need help im getting an error im trying to make it so it announces to server when someone gets 99 in a skill [QUOTE] public void levelUp(int skill) { c.inDialogue = true; updateSkillTab(); switch(skill) { case 0: sendFrame126("Congratulations, you just advanced an attack level!", 6248); sendFrame126("Your attack level is now "+c.realLevel[skill]+".", 6249); c.sendMessage("Congratulations, you just advanced an attack level."); c.getPA().sendFrame126("Combat Level: "+c.getCombatLevel()+"", 3983); sendFrame164(6247); if(c.playerLevel[0] <= 99 ) { c2.sendMessage("<shad=15695415>[Ruination News]:" + c.playerName + " " + " has achieved 99 in.</col> "); } } } break;[/QUOTE]
  22. Lately i've been using TrisidiaX as a source/client but i realized how glitchy it is so i switched to Biohazard 474,basically i changed the IP but i still get an error while the game is still loading "Connection error - retrying in" ... i need help what am i doing wrong? Thank you ! :gg:
  23. i get an error connecting while the client is loading even though i changed the IP ,ect some say its because of cache but i got the cache ( the one that came with the client/source ) and it is placed in correct location ,the only source/client that worked for me was trisidiax v3 but it was crap,i tried Biohazard 474 and i get error connecting to server even though i changed IP ( to localhost ) , and then i tried Project Decimal ( which i really really love and want to try and dont want to switch ) and same error,i tried another client/source and i still get this error i dont know what im doing wrong.....:mad::mad::mad: if you want my teamviewer ill give you BY the way does anybody know why client name in TrisidiaX source/client wont change,i edited,edited,and edited,but the only things that changed were background...and the IP ( i changed to localhost and it worked ) and the announcements in the chatbox....but it still says "Welcome to TrisidiaX" even though i edited it,and the client name on the top i changed it and its still the same,:| [FONT=Century Gothic][SIZE=7][COLOR="#FF0000"]PLEASE HELP![/COLOR][/SIZE][/FONT]
×
×
  • Create New...