Search results

  1. Mikee

    PC component prices

    Alright. 1) Demand has risen for GPU's due to the crypto-craze 2) Demand curve shifts upward causing the new market-clearing price (equilibrium) to be at a higher price level, (price is now increased). 3) To expand output what needs to be done is what I have said before. You want a source...
  2. Mikee

    PC component prices

    In economics the way prices are determined is due to what is known as the 'long-run' and 'short-run'. Currently, the prices of graphics cards have risen because producers of gpu's are currently in the short-run change of demand. In other words, lets assume that they have two factors of...
  3. Mikee

    Getting my instagram account to 20k followers in 24hours!

    Goodluck Hashh, I think as long as you have fun then its time not wasted.
  4. Mikee

    Trouble Adding Code For Diamond Exchange

    I respect your integrity in trying to eliminate exploits but unless your emu has no encryption or someone finds a way to inject packets its really not possible to script to trick the emulator thinking that a (for example) ducket is a currency. Item Exchange =...
  5. Mikee

    Trouble Adding Code For Diamond Exchange

    That switch is another way of saying if(split[0].equals("DF")){ give diamonds; } else { give credits; } So default in this case is the else clause, which is necessary because when the event is called something needs to be done, otherwise it wouldn't of been called. I.e. Give credits...
  6. Mikee

    PlusEMU Debug Problem

    Take it as you'd like, my analogy simply explained how a port was in use and that was a possibility for the problem at hand. The context for your situation was not important to me (nevertheless, my mistake I should've read between the lines that one emu open blocked a port for another - but this...
  7. Mikee

    PlusEMU Debug Problem

    Nothing to do with that. You need to understand topics in order to debug them. Lets break this down. Think of a socket like a room in a hotel. This room has certain properties. 1. Hotel Suite Number, ways to get there (elevator or stairs), and room within the suite (master suite or kids suite)...
  8. Mikee

    How can I make <a href> submit a $_GET

    The solution was simple. jut concat the name of the category i want to GET with ?category= <ul> <?php $i = 0; while ($i < $numOfRowsCategories){ echo '<li><a href="?category='.$categories[0].'">'; echo $categories[0]; array_shift($categories); echo'<span>';echo $amount[0]...
  9. Mikee

    How can I make <a href> submit a $_GET

    $database = DBConnect::EstablishConnect(); $query = $database->prepare("SELECT * FROM categories"); $query->execute(); $numOfRowsCategories = $query->rowCount(); $CategoriesResult = $query->fetchAll(PDO::FETCH_ASSOC); $categories = []; $amount = []; foreach ($CategoriesResult as $data){...
  10. Mikee

    How can I make <a href> submit a $_GET

    I wouldn't know where to begin/what to look into :P webdev is a new beast that i'm only starting to learn.
  11. Mikee

    How can I make <a href> submit a $_GET

    I want my articles in the center that you see to be organized by category. When you load the website it loads all of the articles by latest date. then if you click "music" it'll reload the page and only show articles that are under "music" category. Just a filter type thing.
  12. Mikee

    How can I make <a href> submit a $_GET

    I have a set of links as seen here I want to make it so when you click on it it sends a GET request and then I'll be able to organize the articles/blog posts by GET request. i.e. technology will only sort the technology tagged articles. But i don't know how to make the <a href> links submit...
  13. Mikee

    [PHP]Code-Review

    Since devbest's community has a lot of php programmers I'm interested in getting criticized; also this subforum is lacking activity imo. I'm Learning how to pull POST Data for a register page and send it to a db. Let me know how I did. Note, I've never developed for the web before. <?php...
  14. Mikee

    RevCMS PlusEmu SSO issue

    If I understood you properly then you literally just explained your own problem. If new accounts are working and old accounts aren't then old accounts aren't being accepted via the SSO control flow, meaning that there is something in the users table for old accounts that disagrees with the...
  15. Mikee

    PlusEMU Crash after 10-15 minutes

    Hard for me to gauge exactly since I don't know whats happening when, and what the full code is from the stack trace but my original thoughts were this. Instead of try{}catch{} within the ToString method (never new sled coded one that inherited from the original one, pretty neat) but wrap a...
  16. Mikee

    PlusEMU Crash after 10-15 minutes

    at Plus.Communication.Packets.Incoming.ClientPacket.ToString() So here's the problem. Some packet is being passed from the client to the emulator. This packet then is getting converted here .ToString() as you can see. But for some reason, when the packet gets converted ToString, the packet is...
  17. Mikee

    What are you listening to now?

  18. Mikee

    PlusEMU VIP Catalog

    What is the default vip in the users table? Are you sure that all your users arent simply ranked 100 in the vip section of the users table
  19. Mikee

    RevCMS Console Errors

    Dont have time to do this myself, but google how to set javascript console error reporting off or to none. Should be an answer out there. Or reach out to the js experts @Sentinel @LeChris @Jaden
  20. Mikee

    RevCMS Console Errors

    1. Define the classes. 2. Set the property "toggle" to a state that is not null and most importantly corresponds to that object's type.
Top