Jump to content
Existing user? Sign In

Sign In



Sign Up

Slatum

Members
  • Posts

    80
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by Slatum

  1. I released this on here not too long ago, but drunkenly deleted it while cleaning my dropbox. Thank you for the release!
  2. Slatum

    Ikov (arrav) - Release

    checking this one out
  3. Anyone have the client for this? Just need to figure something out with my Model class.
  4. Slatum

    Aggroth V4 Release

    It seems like a build path problem or a folder problem..
  5. Slatum

    Aggroth V4 Release

    Does anyone know how to fix the 2000+ errors i'm getting?
  6. Again, replying because it says I have to...
  7. Slatum

    Valius - Released

    Gonna check this out, thanks for the leak.
  8. is this still needed? sorry for gravedig..
  9. I am trying to figure out if i can add something to make this compatible for mac users. As of right now, they are unable to log in.
  10. Does anyone know how to add something to this code that can allow Macintosh users to log in? import java.io.BufferedReader; import java.io.File; import java.io.FileWriter; import java.io.InputStreamReader; public class CreateUID { public static String getWMIValue(String wmiQueryStr, String wmiCommaSeparatedFieldName) throws Exception { String vbScript = getVBScript(wmiQueryStr, wmiCommaSeparatedFieldName); String tmpDirName = getEnvVar("TEMP").trim(); String tmpFileName = tmpDirName + File.separator + "jwmi.vbs"; writeStrToFile(tmpFileName, vbScript); String output = execute(new String[] {"cmd.exe", "/C","/users/", "cscript.exe", tmpFileName}); new File(tmpFileName).delete(); return output.trim(); } private static final String CRLF = "\r\n"; private static String getVBScript(String wmiQueryStr, String wmiCommaSeparatedFieldName) { String vbs = "Dim oWMI : Set oWMI = GetObject(\"winmgmts:\")"+CRLF; vbs += "Dim classComponent : Set classComponent = oWMI.ExecQuery(\""+wmiQueryStr+"\")"+CRLF; vbs += "Dim obj, strData"+CRLF; vbs += "For Each obj in classComponent"+CRLF; String[] wmiFieldNameArray = wmiCommaSeparatedFieldName.split(","); for(int i = 0; i < wmiFieldNameArray.length; i++) { vbs += " strData = strData & obj."+wmiFieldNameArray[i]+" & VBCrLf"+CRLF; } vbs += "Next"+CRLF; vbs += "wscript.echo strData"+CRLF; return vbs; } private static String getEnvVar(String envVarName) throws Exception { String varName = "%"+envVarName+"%"; String envVarValue = execute(new String[] {"cmd.exe","/C", "/users/", "echo "+varName}); if(envVarValue.equals(varName)) { throw new Exception("Environment variable '"+envVarName+"' does not exist!"); } return envVarValue; } private static void writeStrToFile(String filename, String data) throws Exception { FileWriter output = new FileWriter(filename); output.write(data); output.flush(); output.close(); output = null; } private static String execute(String[] cmdArray) throws Exception { Process process = Runtime.getRuntime().exec(cmdArray); BufferedReader input = new BufferedReader(new InputStreamReader(process.getInputStream())); String output = ""; String line = ""; while((line = input.readLine()) != null) { //need to filter out lines that don't contain our desired output if(!line.contains("Microsoft") && !line.equals("")) { output += line +CRLF; } } process.destroy(); process = null; return output.trim(); } public static String generateUID() throws Exception { String serial = getWMIValue("SELECT SerialNumber FROM Win32_BIOS", "SerialNumber"); //serial = serial.replaceAll("[^\\d]", ""); String idate = getWMIValue("Select InstallDate from Win32_OperatingSystem", "InstallDate"); //idate = idate.replaceAll("[^\\d]", ""); return (serial.concat(idate)); } public static final String CLASS_Win32_BIOS = "Win32_BIOS"; public static final String CLASS_Win32_OperatingSystem = "Win32_OperatingSystem"; }
  11. So basically i'm using Alaris source and client to fiddle around with. I added a custom home by switching out some of the cache files. Doing this made places like edgeville, varrock, and other locations have no floor or map for them. Does anyone know the fix or how to fix this issue?
  12. Ok so I am trying to change the spawn location based off of a mode that players can pick when they first log on In Config.java: I copied the RESPAWN_X and _Y and created a new one called RESPAWN_1 and _2. the mode is classified as c.hardMode Then I opened PlayerAsistant.java and found the respawn ruling for basic player death, and I copied and added the ruling. However, this is not working. The c.hardMode still spawns in the same location as a regular death would spawn. Does anyone know how to fix or make this work?
  13. Welcome to the forums. Coding is fun, even if you are not good at it. Hope you enjoy your stay here.
  14. A little more than just hi would be nice, but welcome nonetheless.
  15. I would say anything but rune-server, its cancerous there.
  16. Slatum

    Intro

    Hello, I am Slatum. I am here to receive help and hopefully start contributing a bit.

Contact

[email protected]

astra.security

What is a RSPS?

A RSPS, also known as RuneScape private server, is an online game based on RuneScape, and controlled by independent individuals.

Popular RSPS Servers

Runewild Ikov RedemptionRSPS

Disclaimer

Runesuite is not affiliated with runescape, jagex in any way & exists solely for educational purposes.

×
×
  • Create New...