Jump to content

Bobrocket

Members
  • Posts

    1664
  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    100%

Everything posted by Bobrocket

  1. Make sure you have Samsung Kies on your PC.
  2. Yeah, that makes more sense. I believe there's a project that has a list of every campus email, might want to look into that. It's lightweight, too, like 100kb at best.
  3. Looks pretty good! However, instead of having a valid campus email, maybe have it on a per-campus basic, eg your teacher signed up and can generate a code which is used upon registration. (Or just a valid campus email :p)
  4. You finally have a paint that has images! Looks good
  5. I edited my post saying that the higher index = the closer to the front of the stack. Working on the code still for the proper bounding boxes.
  6. Yeah will do, just hoped you had the answer Edit: was right; higher index = closer to the front of the stack.
  7. Would index 0 really be the first object though? Because the items are drawn in a layered fashion, so the first visible object is drawn the last. Maybe I'm overthinking this though Also, didn't know about getToolTip(). Thanks!
  8. Thank you. I'll see what I can do about the bounding boxes and edit the first post with a solution for those looking for it. Also, for the first one, I am looking to see if the Master Farmer is on top of the stack. I know that the mouse will have the entity on the cursor, but I simply need to know if the farmer is on top or not. Also, while I'm asking questions, I seem to have something which is more of a problem with Entity#isVisible(), for some reason, when the entity goes off the game screen but still within the actual applet, it seems to return true. Is there a method that checks if an entity is within the window?
  9. I have 2 questions regarding models: How do I check which model or object is at the top of where the cursor is? For example, say I have my camera moved in such a way where a seed stall is infront of the master farmer, and I move my mouse to the master farmer and left click. This is going to click the seed stall. How can I detect that the seed stall is the first object there so I can choose to right click? How do I check for visible parts of the model? For example, say 2 models are slightly overlapping (let's use the seed stall and master farmer example once more), and this leaves the master farmer with about half his actual model as actual visible space (to us). The client, however, recognises his entire model as visible. How can I see which bits of the model are actually visible to the client? Sorry if these do not make sense, I just woke up. EDIT: I am still looking for how to find which objects appear in front of my specified object. pls help
  10. You should really use Botre's answer for that, or do something like this: NPC fishingSpot = getNpcs().closest(new Filter<NPC>() { @Override public boolean match(NPC n) { return (n.hasAction("Cage") /* Other options if needed */); } });
  11. You're going to need php for this. <?php if (isset($_POST['feedback'], $_POST['uniq'])) { //connect to database, insert row with feedback, uniq and other vars } else { die("invalid"); } ?> You'll also need to look into sending POST requests in Java.
  12. You can use a tool like HTTrack to save the website locally and just change it from there.
  13. Please take this as a like as I have given out too many today Is there a list of configs? Sorry for derailing the thread l0l
  14. Watch out lads, Jahria has been let off his leash!
  15. There are a few things wrong with this. You don't need to learn HTML, it's literally markup. Not too hard to write <b>My website!</b> People should learn PHP/ASP.NET before they learn SQL, so they can utilise it better I personally don't recommend learning ASP.NET as it's hard to find servers that support it OP, the best advice I can give you is to quite simply try and write shit. Skip HTML/CSS, go straight to PHP. Set yourself a goal (eg user registration and login system), learn basic syntax (and practice OOP) and just give it a go. And keep doing it. Over and over. Until your registration and login is flawless. Look up common security flaws (using MD5 to hash passwords, SQL injection, XSS when displaying user info), and patch them. Once you have a flawless user registration/login, expand on it. Implement a private message system, and perfect that. Refine your code to support these new features, and soon enough you'll not only have a fully working forum, but you'll also have learned a lot about PHP. From there, you should do the same. Again. Keep doing it until you're fully comfortable with the wide array of functions you use. Don't be afraid about not fully knowing all the functions, I still forget what the parameters of str_replace() are (and in which order).
  16. Damn dude, I remember people selling these on hackforums last year for $5 lmao. Good luck! They're super fun to mess with
  17. Through use of various flash/java exploits you can get a lot of information. Been a long time since I looked into this stuff but I believe CVE-2014-0543 (not even sure if that's the right CVE) could grab hardware info since it could execute arbitrary code. The standard information someone can get from visiting a website without exploits includes: Whether or not you have JS enabled Whether or not you have a form of adblock Your IP Your country and rough area (through your IP) Your browser Your OS Your .NET version (some user agents submit this information, I believe only IE does this but no idea) Whether or not you are using a transparent proxy Your screen resolution and the resolution of your browser window Your local time + timezone Your referrer (the last site you visited) Here's a little example of the sheer amount of information you can grab from your user agent string: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:39.0) Gecko/20100101 Firefox/39.0-I am using Firefox, version 39.0 -I am using Windows 7 (NT 6.1) -I am running a 32-bit browser on 64-bit architecture (WOW64) -I use the Gecko CSS engine (default firefox engine) -My Gecko engine is version "2010-01-01"
  18. Just an update, this still happens with v1.093. No error log, no hs_err_pid, just a crash after "Loading stream32.so".
  19. Does this fix the crashing under Ubuntu?
  20. Would recommend looking at the mobs position when it dies (there will be an animation for it), and wait until there are GroundItems for it. Also, use filters when possible. They're really good!
  21. Does this include local scripts or just SDN scripts?
  22. Alright, sweet. Just curious because I (probably the only person) use the #contains(Point) in my interaction methods.
×
×
  • Create New...