Everything posted by Purity
-
Finding Colour of Floor Tile
There's just too many features I want to try and implement that wouldn't work with that set up. The 3d & extensive android practice would come in handy too.
-
Finding Colour of Floor Tile
Bot monitoring + remote controlling. Also, I need to learn more OpenGL.
-
Finding Colour of Floor Tile
I'm planning on making it a lot more detailed and interactive. That would limit me too much.
-
Finding Colour of Floor Tile
Basically I have a script base which acts as a server, it gets the terrain, players and object from the game. I'm trying to iterate though all these items, send them across a network to an Android device, which reads all the information and renders the scene on the mobile devices. I want the colours of the terrain, objects etc. Just so the rendering is easier on the eyes.
-
Finding Colour of Floor Tile
I did consider that, but on the scale that I'm doing this, that would destroy the processor.
-
Finding Colour of Floor Tile
Overly complicated project, I'm just seeing if it's plausible for the time being.
-
Finding Colour of Floor Tile
I know it's a bit far-fetched, but is it possible to get the base colour of a ground tile?
-
Poster for my upcoming Fletching Script
- Calculate experience until specified level
That's exactly what I do with my script ;)- Calculate experience until specified level
Uh.. I interpreted it from this formula, which is from the Runescape wikia. I wouldn't really classify that as copying.. but I've references the source regardless..- Calculate experience until specified level
Very basic snippet, helpful for the paint in your script. public static int getExperienceUntilLevel(int currentExperience, int level) { int experience = 0; for(int i = 1; i < level; i++) { experience += Math.floor(i + 300 * Math.pow(2, i / 7.0f)); } return (int) Math.floor(experience / 4) - currentExperience; }- Bot monitor
I wrote one of these not long ago. It's a basic socket set-up with an android application. The script acts as the server and any android devices on the local network (or over the internet, if the ports are open) can view your players inventory, chat and actions. You can input chat into the application on the device and it briefly stops the script to type the message. Most recently I was trying to get the server to send the player model's X, Y, Z vertices and drawing a wire frame model using OpenGL on the android app. I was going to add alerts for random events, the player being under attack and the option to take a break via the mobile device. - Calculate experience until specified level