Hey guys I realised the OaksV1Plugin in RSPSi map editor didn't work for the PVP release of Elvarg.
I know this is probably a good few years too late but I'm working on an exciting project which uses Elvarg.
So I spent some time writing a working RSPSi plugin for it and thought i'll share here incase anyone finds it useful.
http:// uppit [.] com /h1zd2pai4hzk
1. Edit java/com/jagex/io/Buffer.java and add this function
Code:
public int read24Int() {
position += 3;
return ((payload[position - 3] & 0xff) << 16) + ((payload[position - 2] & 0xff) << 8) + (payload[position - 1] & 0xff);
}
2. Move the JAR file above into the active plugins directory.
3. Load your ElvargPVP cache and wallah.
If enough people would like, i'll move the read24Int() method into the JAR so you don't have to edit the source of RSPSi.
If you like feel free to use my fork which has been fixed recently:
https://github.com/tobywisener/RSPSi