Results 1 to 10 of 10
  1. #1
    The richest man is not the one who has the most but the one who needs the least.
    MPGH Member
    Alde.'s Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    1,706
    Reputation
    166
    Thanks
    3,627
    My Mood
    Sleepy

    [Realm Relay] getPlayerId Function

    FI-NA-LY!

    A simple function that return the player's ID using only his name!

     




    We say :
    Code:
    getPlayerID(event,"playername")



    Code:
    
    
    The function:
    function getPlayerID(event,playername){
    				for(var player in players){
    					var name = players[player].toLowerCase();
    					if(name.length() < playername.length())
    						continue;
    					if (playername == name.substring(0,playername.length())){
    					
    						$.echo("> NAME : " + playername + " ID: " + player);
    						
    						return player;
    									
    						break;
    					}
    				}
    }

    In the OnServerPacket switch, add this :
    Code:
    case ID_UPDATE: {
    			// New objects
    			for (var i = 0; i < packet.newObjs.length; i++) {
    				var objectData = packet.newObjs[i];
    
    				var type = objectData.objectType;
    				if(type == 768 || type == 775 || type == 782 || type == 784 || (type >= 797 && type <= 806)){ // player classes
    					for (var j = 0; j < objectData.status.data.length; j++) {
    						var statData = objectData.status.data[j];
    						if(statData != null && statData.obf0 == 31){
    							
    							players[objectData.status.objectId] = statData.obf2;
    							break;
    						}
    					}
    				}
    			}
    
    			// Removed objects
    			for (var i = 0; i < packet.drops.length; i++) {
    				var droppedObjectId = packet.drops[i];
    
    				if(players[droppedObjectId] != null){
    					delete players[droppedObjectId];//Remove the player that has quited from the dictionnary	
    				}
    			}
    			break;
    		}



    Last edited by Alde.; 01-02-2014 at 08:28 PM.
    Alde is Alde is

  2. The Following 3 Users Say Thank You to Alde. For This Useful Post:

    059 (03-07-2014),moot06 (01-04-2014),TH3HDD3N (01-02-2014)

  3. #2
    TH3HDD3N's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    5
    My Mood
    Asleep
    You've done gods work!

  4. The Following User Says Thank You to TH3HDD3N For This Useful Post:

    Alde. (01-02-2014)

  5. #3
    Mohzin's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    132
    Reputation
    10
    Thanks
    21
    My Mood
    Lurking
    Sorry to ask this but what exactly does this do ?
    VOUCHES

    Quote Originally Posted by donthurt View Post
    Vouch for Mohsin, Have had the great opportunity to trade with him. couldnt of gone any smoother, was easy to contact, Skyped with me until the whole deal was done. I bought 17 life potions and 2 pyras off him for a $10 UGC, Nice guy, great trade, and good offers.
    Quote Originally Posted by 1xt View Post
    Vouch for Mohzin. Bought the accounts, he's direct and honest. Thank you.
    Quote Originally Posted by Vijen View Post
    Vouch for Mohzin! +1

  6. #4
    infern000's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    294
    Reputation
    10
    Thanks
    74
    exercise his coding skills :P

  7. The Following User Says Thank You to infern000 For This Useful Post:

    Alde. (01-02-2014)

  8. #5
    L̋̾̈́͑ͥͨͨ͞Ò̴ͫͪ͛͋̉͛Lͥ̔̓ ͨ͛ͬ ͩ̀͢
    Premium Member
    C453's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    /dev/null
    Posts
    574
    Reputation
    44
    Thanks
    2,535
    My Mood
    Aggressive
    If you wanted this I would have released it, but good job

    not sure if noobsafe or typo, but
    Code:
    ase ID_UPDATE: 


    should be "case" not "ase"
    Last edited by C453; 01-02-2014 at 07:13 PM.
    cant have shit in detroit

  9. The Following User Says Thank You to C453 For This Useful Post:

    Alde. (01-02-2014)

  10. #6
    Threadstarter
    The richest man is not the one who has the most but the one who needs the least.
    MPGH Member
    Alde.'s Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    1,706
    Reputation
    166
    Thanks
    3,627
    My Mood
    Sleepy
    Quote Originally Posted by C453 View Post
    If you wanted this I would have released it
    But.. But.. I made a thread like 14 days ago! D:
    Alde is Alde is

  11. #7
    L̋̾̈́͑ͥͨͨ͞Ò̴ͫͪ͛͋̉͛Lͥ̔̓ ͨ͛ͬ ͩ̀͢
    Premium Member
    C453's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    /dev/null
    Posts
    574
    Reputation
    44
    Thanks
    2,535
    My Mood
    Aggressive
    Quote Originally Posted by ZBORNOX View Post


    But.. But.. I made a thread like 14 days ago! D:
    oops
    I don't browse some sections of MPGH so I probably didn't see it
    cant have shit in detroit

  12. #8
    spartak220011's Avatar
    Join Date
    Nov 2013
    Gender
    female
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    Hi all, please tell me how to enable this hack?

  13. #9
    Threadstarter
    The richest man is not the one who has the most but the one who needs the least.
    MPGH Member
    Alde.'s Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    1,706
    Reputation
    166
    Thanks
    3,627
    My Mood
    Sleepy
    Quote Originally Posted by spartak220011 View Post
    Hi all, please tell me how to enable this hack?
    It's not an hack my friend But it can be used to makes some!
    Alde is Alde is

  14. #10
    moot06's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    163
    Reputation
    10
    Thanks
    281
    My Mood
    Innocent
    I might use this for some fun kind sailor.

  15. The Following User Says Thank You to moot06 For This Useful Post:

    Alde. (01-04-2014)

Similar Threads

  1. PLEASE NEED HELP WITH REALM RElAY
    By DANWARPER in forum Realm of the Mad God Help & Requests
    Replies: 18
    Last Post: 01-04-2014, 05:38 AM
  2. Realm Relay /con
    By Nisuxen in forum Realm of the Mad God Tutorials & Source Code
    Replies: 5
    Last Post: 12-15-2013, 12:10 PM
  3. Realm Relay /wc
    By Nisuxen in forum Realm of the Mad God Tutorials & Source Code
    Replies: 5
    Last Post: 10-27-2013, 11:32 PM
  4. [Release] Realm Relay Command Script!
    By angelofsilence123 in forum Realm of the Mad God Hacks & Cheats
    Replies: 7
    Last Post: 10-21-2013, 02:06 AM
  5. [Outdated] Realm Relay v1.0.0 - Proxy for RotMG 17.2
    By DeVoidCoder in forum Realm of the Mad God Hacks & Cheats
    Replies: 126
    Last Post: 10-17-2013, 10:23 PM