Results 1 to 4 of 4
  1. #1
    EdenWrath's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0

    commonly asked question?

    don't know how to dupe items
    the id list for the items didn't change, right?
    lol so I found this RR Script:
    Still learning
    Code:
    //itemspawner.js
    
    var ID_CREATE_SUCCESS = $.findPacketId("CREATE_SUCCESS");
    var ID_NOTIFICATION = $.findPacketId("NOTIFICATION");
    var ID_PLAYER_TEXT = $.findPacketId("PLAYERTEXT");
    var ID_UPDATE = $.findPacketId("UPDATE");
    var ID_TEXT = $.findPacketId("TEXT");
    var ID_FAILURE = $.findPacketId("FAILURE");
    
    
    
    var usage = 
    "Usage: /item <ID of item>";
    
    function onClientPacket(event) {
    	var packet = event.getPacket();
    	switch (packet.id()) {
    		case ID_PLAYER_TEXT: {
    			var text = packet.text.toLowerCase();
    			if(text.length() >= 5 && text.substring(0,5) == "/item"){
    				event.cancel();
    
    				if(text.length() <= 6){
    					event.echo(usage)
    					break;
    				}
    				var items = text.substring(6, text.length());
    
    				if(items >= 5000)
    					event.echo("Item " + items + " not found.");
    				else(items <= 5000)
    					event.echo("Item " + items + " spawned in Chest #14.");
    			}
    			break;
    		}
    	}
    }
    so far this does not work :P
    Last edited by Lovroman; 05-03-2014 at 11:44 AM.

  2. #2
    059's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    California
    Posts
    3,312
    Reputation
    700
    Thanks
    92,771
    Well yeah, all it does it echo this:
    event.echo("Item " + items + " spawned in Chest #14.");

    There's no item spawn hack.
    My Vouches
    Having an issue with RotMG? Check for the solution here.


    Need Realm items? Come to RealmStock!

    Accepting PayPal - Bitcoin - Giftcards
    Selling ST Sets, Class Top Sets, Life Pots, and much more!


    Find it here: MPGH Sales Thread

  3. #3
    CrazyJani's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    2,475
    Reputation
    170
    Thanks
    15,666
    Thread of the year

  4. The Following 3 Users Say Thank You to CrazyJani For This Useful Post:

    [MPGH]Ahl (05-04-2014),Alde. (05-03-2014),BlackRayquaza (05-03-2014)

  5. #4
    runekri3's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    792
    Reputation
    9
    Thanks
    240
    My Mood
    Cheerful
    Where is -rep when you need it.
    Reputation-
    Vouches
    Respect-
    Nilly, Ultran00b, JustAnoobROTMG, Nano, karolelis9, fallenhacks(cake), jaythedev
    DisRespect-
    mandela96, spaghetti master, floxxe, drillick, brendoo

  6. The Following User Says Thank You to runekri3 For This Useful Post:

    angeloforeos (05-04-2014)

Similar Threads

  1. [Info] Frequently Asked Questions
    By why06 in forum C++/C Programming
    Replies: 34
    Last Post: 04-11-2014, 02:24 PM
  2. not asking to release just asking question
    By moneyman14 in forum Combat Arms Discussions
    Replies: 9
    Last Post: 07-03-2010, 09:54 AM
  3. Combat Arms Help Team Open. Please Ask Questions Here!
    By Trunky in forum Combat Arms Help
    Replies: 51
    Last Post: 10-07-2009, 10:08 AM
  4. Asking questions without getting flamed!
    By OMARz in forum General
    Replies: 18
    Last Post: 07-13-2009, 02:37 AM
  5. Frequently Asked Questions
    By crazy-tatar in forum WarRock - International Hacks
    Replies: 10
    Last Post: 03-25-2009, 01:06 PM