Thread: Packet Id's [202,203,204]

Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1 Packet Id's [202,203,204] 
    T X
    Guest
    Mudclient 202

    Code:
    // outgoing (things we send to the server)
    #define IDX_WEIRD_USERNAME    32
    #define IDX_LOGIN             0
    #define IDO_LOGOUT_ACK        39    		// acknowledge logout command from server
    #define IDO_PING              153   		// send ping to server, so it knows we're still there
    #define IDO_IGNORE_ADD        25    		// add name to ignore list
    #define IDO_IGNORE_REMOVE     108   		// remove name from ignore list
    #define IDO_FRIENDS_ADD       168   		// add name to friends list
    #define IDO_FRIENDS_REMOVE    52    		// remove name from friends list
    #define IDO_PM_FRIEND         254   		// send pm to someone in friends list
    #define IDO_SEND_CHAT         145
    #define IDO_SEND_SERVER_CMD   90    		// sends a command to the server (type "::xxx" in chat and it sends command 'xxx')
    #define IDO_UPDATE_SETTINGS   176   		// changes settings (chatblock, privateblock, tradeblock, duelblock)
    
    #define IDO_LOGOUT            129
    #define IDO_CHAR_DESIGN       218   		// send character design (makeover mage, creation)
    #define IDO_SLEEPWORD         72
    #define IDO_NEW_PLAYER_ACK    83    		// send ids of newly added player back to server, if it wants to
    
    #define IDO_EXCEPTION_SEND    156
    #define IDO_WALKCMD_1         246
    #define IDO_WALKCMD_2         132
    #define IDO_CLICKDIALOGITEM   154
    #define IDO_SETCOMBATSTYLE    41
    #define IDO_WITHDRAW          183
    #define IDO_DEPOSIT           198
    #define IDO_CLOSE_BANK        48
    #define IDO_BUYITEM           128
    #define IDO_SELLITEM          255
    #define IDO_CLOSE_SHOP        253
    #define IDO_CANCEL_TRADE      216
    #define IDO_CONFIRM_TRADE     53
    #define IDO_TRADE_UPDATE      70
    #define IDO_ACCEPT_TRADE      211
    #define IDO_DUEL_CONFIRM_1    87
    #define IDO_DUEL_UPDATE       123
    #define IDO_DUEL_FLAG_1       225
    #define IDO_DUEL_FLAG_2       252
    #define IDO_CANCEL_DUEL       35
    #define IDO_PRAYER_OFF        248
    #define IDO_PRAYER_ON         56
    #define IDO_CHANGE_SETTINGS   157
    
    // action commands...
    #define IDO_CAST_GR_ITEM      104
    #define IDO_USEWITH_GR_ITEM   34
    #define IDO_TAKE_ITEM         245
    #define IDO_CAST_WALLOBJ      67
    #define IDO_USEWITH_WALLOBJ   36
    #define IDO_WALLOBJ_CMD1      126
    #define IDO_WALLOBJ_CMD2      235
    #define IDO_CAST_OBJECT       17
    #define IDO_USEWITH_OBJECT    94
    #define IDO_OBJECT_CMD1       51
    #define IDO_OBJECT_CMD2       40
    
    #define IDO_CAST_INVITEM      49
    #define IDO_USEWITH_INVITEM   27
    #define IDO_REMOVE_ITEM       92
    #define IDO_WEAR_ITEM         181
    #define IDO_INVITEM_CMD       89
    #define IDO_DROP_ITEM         147
    
    #define IDO_CAST_NPC          71
    #define IDO_USEWITH_NPC       142
    #define IDO_TALK_NPC          177
    #define IDO_NPC_CMD           74
    #define IDO_ATTACK_NPC        73
    
    #define IDO_CAST_PLAYER       55
    #define IDO_USEWITH_PLAYER    16
    #define IDO_ATTACK_PLAYER     57
    #define IDO_DUEL_PLAYER       222
    #define IDO_TRADE_PLAYER      166
    #define IDO_FOLLOW_PLAYER     68
    
    #define IDO_CAST_GROUND       232
    #define IDO_CAST_SELF         206
    
    #define IDO_REPORT_ABUSE      7
    
    
    
    // incomming (things we receive from the server)
    // login responses...
    #define IDX_MOD_ACCEPTED      25    		// logged in as player mod
    #define IDX_LOGIN_SUCCESS     0
    #define IDX_RELOGIN_SUCCESS   1     		// connection reestablished after lost connection...
    #define IDX_WRONG_PWD         3
    #define IDX_NAME_LOGGED_IN    4
    #define IDX_CLIENT_UPDATED    5
    #define IDX_IP_IN_USE         6
    #define IDX_LOGINS_EXCEEDED   7
    #define IDX_SERV_REJECTED     8
    #define IDX_LOGINSERV_REJCT   9
    #define IDX_NAME_IN_USE       10
    #define IDX_TEMP_DISABLED     11
    #define IDX_PERM_DISABLED     12
    #define IDX_SERVER_FULL       14
    #define IDX_MEMBERACC_REQ     15    		// requires member account to login here
    #define IDX_LOGINSERV_DOWN    16
    #define IDX_DECODE_FAIL       17
    #define IDX_LOGIN_MISMATCH    20
    
    #define IDI_MESSAGE           48    		// (game) messages from server
    #define IDI_LOGOUT            222   		// logout command from server (forced, or initiated by client IDO_LOGOUT)
    #define IDI_LOGOUT_REJECT     136   		// not allowed to log out (e.g. when in combat)
    #define IDI_FRIENDS_LOAD      249   		// when logging in, sends the whole friends list to the client
    #define IDI_FRIEND_LOGGED     25    		// a friend from friends list logged in or out (also used to add a friend to friends list)
    #define IDI_IGNORE_LOAD       2     		// when logging in, sends the whole ignore list to the client
    #define IDI_SETTINGS_LOAD     158   		// load settings upon logging in (blocks)
    #define IDI_FRIENDS_PM        170   		// someone pm'd us
    
    #define IDI_PLAYER_MOVEMENT   145   		// player movement update
    #define IDI_GRITEMS_UPDATE    109   		// update ground items
    #define IDI_OBJECTS_UPDATE    27
    #define IDI_INV_LOAD          114   		// load inventory
    #define IDI_PLAYER_UPDATE     53
    #define IDI_WALLOBJ_UPDATE    95
    #define IDI_NPC_MOVEMENT      77    		// npc movement update
    #define IDI_NPC_UPDATE        190
    #define IDI_DIALOG_SHOW       223
    #define IDI_DIALOG_CLOSE      127
    #define IDI_LOAD_NEWMAPAREA   131   		// entering a new region (maparea)
    #define IDI_XP_LOAD           180   		// load xp and stats
    #define IDI_EQUIP_UPDATE      177   		// equipment stats (armour, magic, prayer, weapaim/power)
    #define IDI_PLAYER_DIED       165
    #define IDI_LOADWORLD         115   		// load objects, wallobjects, items
    #define IDI_DESIGN_CHAR       207
    #define IDI_OPEN_TRADE_1      4
    #define IDI_CLOSE_TRADE       187
    #define IDI_TRADE_UPDATE      250   		// opponents offer was updated
    #define IDI_TRADE_B_UPDATE    92    		// update of opponents acception status
    #define IDI_SHOP_OPEN         253
    #define IDI_SHOP_CLOSE        220
    #define IDI_TRADE_A_UPDATE    18    		// update of thisplayers acception status
    #define IDI_LOAD_OPTIONS      152   		// camera angle, sound, mousebutton settings
    #define IDI_PRAYER            209
    #define IDI_QUESTS            224
    #define IDI_BANK_OPEN         93
    #define IDI_BANK_CLOSE        171
    #define IDI_XP_UPDATE         211
    #define IDI_OPEN_DUEL_1       229
    #define IDI_CLOSE_DUEL        160
    #define IDI_OPEN_TRADE_2      251   		// trade confirmation window
    #define IDI_DUEL_UPDATE       63    		// opponents offer was updated
    #define IDI_DUELOPT_UPDATE    198   		// update duel options
    #define IDI_BANK_UPDATE       139
    #define IDI_INV_ADD           228
    #define IDI_INV_REMOVE        191
    #define IDI_STAT_UPDATE       208
    #define IDI_DUEL_B_UPDATE     65    		// update of opponents acception status
    #define IDI_DUEL_A_UPDATE     197   		// update of thisplayers acception status
    #define IDI_OPEN_DUEL_2       147   		// duel confirmation window
    #define IDI_SOUND             11
    #define IDI_SPLASH            23
    #define IDI_WELCOMEWINDOW     248
    #define IDI_MESSAGE_1         148
    #define IDI_MESSAGE_2         64
    #define IDI_FATIGUE_UPDATE    126
    #define IDI_NEW_SLEEPWORD     219
    #define IDI_FATIGUE_SLEEPN    168   		// fatigue update in sleeping window
    #define IDI_SLEEP_SUCCESS     103
    #define IDI_SLEEP_FAILED      15
    #define IDI_SYSTEM_UPDATE     172

    203


    Code:
    // outgoing (things we send to the server)
    #define IDX_WEIRD_USERNAME    32
    #define IDX_LOGIN             0
    #define IDO_LOGOUT_ACK        31    		// acknowledge logout command from server
    #define IDO_PING              67    		// send ping to server, so it knows we're still there
    #define IDO_IGNORE_ADD        132   		// add name to ignore list
    #define IDO_IGNORE_REMOVE     241   		// remove name from ignore list
    #define IDO_FRIENDS_ADD       195   		// add name to friends list
    #define IDO_FRIENDS_REMOVE    167   		// remove name from friends list
    #define IDO_PM_FRIEND         218   		// send pm to someone in friends list
    #define IDO_SEND_CHAT         216
    #define IDO_SEND_SERVER_CMD   38    		// sends a command to the server (type "::xxx" in chat and it sends command 'xxx')
    #define IDO_UPDATE_SETTINGS   64    		// changes settings (chatblock, privateblock, tradeblock, duelblock)
    
    #define IDO_LOGOUT            102
    #define IDO_CHAR_DESIGN       235   		// send character design (makeover mage, creation)
    #define IDO_SLEEPWORD         45
    #define IDO_NEW_PLAYER_ACK    163   		// send ids of newly added player back to server, if it wants to
    
    #define IDO_EXCEPTION_SEND    3
    #define IDO_WALKCMD_1         16
    #define IDO_WALKCMD_2         187
    #define IDO_CLICKDIALOGITEM   116
    #define IDO_SETCOMBATSTYLE    29
    #define IDO_WITHDRAW          22
    #define IDO_DEPOSIT           23
    #define IDO_CLOSE_BANK        212
    #define IDO_BUYITEM           236
    #define IDO_SELLITEM          221
    #define IDO_CLOSE_SHOP        166
    #define IDO_CANCEL_TRADE      230
    #define IDO_CONFIRM_TRADE     104
    #define IDO_TRADE_UPDATE      46
    #define IDO_ACCEPT_TRADE      55
    #define IDO_DUEL_CONFIRM_1    77
    #define IDO_DUEL_UPDATE       33
    #define IDO_DUEL_FLAG_1       8
    #define IDO_DUEL_FLAG_2       176
    #define IDO_CANCEL_DUEL       197
    #define IDO_PRAYER_OFF        254
    #define IDO_PRAYER_ON         60
    #define IDO_CHANGE_SETTINGS   111
    
    // action commands...
    #define IDO_CAST_GR_ITEM      249
    #define IDO_USEWITH_GR_ITEM   53
    #define IDO_TAKE_ITEM         247
    #define IDO_CAST_WALLOBJ      180
    #define IDO_USEWITH_WALLOBJ   161
    #define IDO_WALLOBJ_CMD1      14
    #define IDO_WALLOBJ_CMD2      127
    #define IDO_CAST_OBJECT       99
    #define IDO_USEWITH_OBJECT    115
    #define IDO_OBJECT_CMD1       136
    #define IDO_OBJECT_CMD2       79
    
    #define IDO_CAST_INVITEM      4
    #define IDO_USEWITH_INVITEM   91
    #define IDO_REMOVE_ITEM       170
    #define IDO_WEAR_ITEM         169
    #define IDO_INVITEM_CMD       90
    #define IDO_DROP_ITEM         246
    
    #define IDO_CAST_NPC          50
    #define IDO_USEWITH_NPC       135
    #define IDO_TALK_NPC          153
    #define IDO_NPC_CMD           202
    #define IDO_ATTACK_NPC        190
    
    #define IDO_CAST_PLAYER       229
    #define IDO_USEWITH_PLAYER    113
    #define IDO_ATTACK_PLAYER     171
    #define IDO_DUEL_PLAYER       103
    #define IDO_TRADE_PLAYER      142
    #define IDO_FOLLOW_PLAYER     165
    
    #define IDO_CAST_GROUND       158
    #define IDO_CAST_SELF         137
    
    #define IDO_REPORT_ABUSE      206
    
    
    
    // incomming (things we receive from the server)
    // login responses...
    #define IDX_MOD_ACCEPTED      25    		// logged in as player mod
    #define IDX_LOGIN_SUCCESS     0
    #define IDX_RELOGIN_SUCCESS   1     		// connection reestablished after lost connection...
    #define IDX_WRONG_PWD         3
    #define IDX_NAME_LOGGED_IN    4
    #define IDX_CLIENT_UPDATED    5
    #define IDX_IP_IN_USE         6
    #define IDX_LOGINS_EXCEEDED   7
    #define IDX_SERV_REJECTED     8
    #define IDX_LOGINSERV_REJCT   9
    #define IDX_NAME_IN_USE       10
    #define IDX_TEMP_DISABLED     11
    #define IDX_PERM_DISABLED     12
    #define IDX_SERVER_FULL       14
    #define IDX_MEMBERACC_REQ     15    		// requires member account to login here
    #define IDX_LOGINSERV_DOWN    16
    #define IDX_DECODE_FAIL       17
    #define IDX_LOGIN_MISMATCH    20
    
    #define IDI_MESSAGE           131   		// (game) messages from server
    #define IDI_LOGOUT            4     		// logout command from server (forced, or initiated by client IDO_LOGOUT)
    #define IDI_LOGOUT_REJECT     183   		// not allowed to log out (e.g. when in combat)
    #define IDI_FRIENDS_LOAD      71    		// when logging in, sends the whole friends list to the client
    #define IDI_FRIEND_LOGGED     149   		// a friend from friends list logged in or out (also used to add a friend to friends list)
    #define IDI_IGNORE_LOAD       109   		// when logging in, sends the whole ignore list to the client
    #define IDI_SETTINGS_LOAD     51    		// load settings upon logging in (blocks)
    #define IDI_FRIENDS_PM        120   		// someone pm'd us
    
    #define IDI_PLAYER_MOVEMENT   191   		// player movement update
    #define IDI_GRITEMS_UPDATE    99    		// update ground items
    #define IDI_OBJECTS_UPDATE    48
    #define IDI_INV_LOAD          53    		// load inventory
    #define IDI_PLAYER_UPDATE     234
    #define IDI_WALLOBJ_UPDATE    91
    #define IDI_NPC_MOVEMENT      79    		// npc movement update
    #define IDI_NPC_UPDATE        104
    #define IDI_DIALOG_SHOW       245
    #define IDI_DIALOG_CLOSE      252
    #define IDI_LOAD_NEWMAPAREA   25    		// entering a new region (maparea)
    #define IDI_XP_LOAD           156   		// load xp and stats
    #define IDI_EQUIP_UPDATE      153   		// equipment stats (armour, magic, prayer, weapaim/power)
    #define IDI_PLAYER_DIED       83
    #define IDI_LOADWORLD         211   		// load objects, wallobjects, items
    #define IDI_DESIGN_CHAR       59
    #define IDI_OPEN_TRADE_1      92
    #define IDI_CLOSE_TRADE       128
    #define IDI_TRADE_UPDATE      97    		// opponents offer was updated
    #define IDI_TRADE_B_UPDATE    162   		// update of opponents acception status
    #define IDI_SHOP_OPEN         101
    #define IDI_SHOP_CLOSE        137
    #define IDI_TRADE_A_UPDATE    15    		// update of thisplayers acception status
    #define IDI_LOAD_OPTIONS      240   		// camera angle, sound, mousebutton settings
    #define IDI_PRAYER            206
    #define IDI_QUESTS            5
    #define IDI_BANK_OPEN         42
    #define IDI_BANK_CLOSE        203
    #define IDI_XP_UPDATE         33
    #define IDI_OPEN_DUEL_1       176
    #define IDI_CLOSE_DUEL        225
    #define IDI_OPEN_TRADE_2      20    		// trade confirmation window
    #define IDI_DUEL_UPDATE       6     		// opponents offer was updated
    #define IDI_DUELOPT_UPDATE    30    		// update duel options
    #define IDI_BANK_UPDATE       249
    #define IDI_INV_ADD           90
    #define IDI_INV_REMOVE        123
    #define IDI_STAT_UPDATE       159
    #define IDI_DUEL_B_UPDATE     253   		// update of opponents acception status
    #define IDI_DUEL_A_UPDATE     210   		// update of thisplayers acception status
    #define IDI_OPEN_DUEL_2       172   		// duel confirmation window
    #define IDI_SOUND             204
    #define IDI_SPLASH            36
    #define IDI_WELCOMEWINDOW     182
    #define IDI_MESSAGE_1         89
    #define IDI_MESSAGE_2         222
    #define IDI_FATIGUE_UPDATE    114
    #define IDI_NEW_SLEEPWORD     117
    #define IDI_FATIGUE_SLEEPN    244   		// fatigue update in sleeping window
    #define IDI_SLEEP_SUCCESS     84
    #define IDI_SLEEP_FAILED      194
    #define IDI_SYSTEM_UPDATE     52
    [/CODE]

    mc204: IDs are perfectly identical to mc203, just with 3 new login responses added:


    Code:
    #define IDX_ACCOUNT_STOLEN    18                // "Account suspected stolen.", "Press 'recover a locked account' on front page."
    #define IDX_ACCOUNT_NOT_RSC   21                // "Unable to login.", "That is not an RS-Classic account"
    #define IDX_PASSWD_STOLEN     22                // "Password suspected stolen.", "Press 'change your password' on front page."

    Mudclient 201 -


    Client Received

    Code:
    141 = Update Player
    172 = Update Items
    158 = Update Objects
    37   = Load Inventory
    183 = Player Chat/Appearence
    29   = Wall Objects
    41   = Update NPC Movement
    47   = NPC Chat
    117 = Question Menu
    208 = Close Question Menu
    249 = Set Player
    16   = Set Stats
    33   = Equipment Bonuses
    109 = Death Screen
    76   = Objects
    7     = Design Charactor Menu
    108 = Open Trade Screen
    113 = Close Duel/Trade Screen
    155 = Opponents Offered Items
    185 = Notifiy Other Players Exceptence
    24   = Open Shop
    42   = Close Shop
    170 = I have Accepted The Trade
    161 = Game Options
    222 = Prayer on/off
    26   = Quest Status
    188 = Open Bank
    130 = Close Bank
    69   = Update XP(favourite number)
    240 = Open Duel Screen
    198 = Cancel Duel
    128 = Confirm Trade Screen
    229 = Offered Duel Items
    211 = Duel Options
    81   = Change Bank Page
    210 = Add Item To Inventory
    44   = Delete From Slot
    23   = Level Up Skill
    73   = Notify Opp Duel Acceptence
    131 = Have I Accepted Duel ?
    10   = Confirm Duel Screen
    238 = Open Message Box
    253 = Open Another Message Box
    126 = Open Welcome Screen
    112 = Receive Alert
    49   = Receive Alert
    60   = Fatigue
    15   = Sleep Word
    174 = Sleeping Fatigue
    206 = Wake Up
    20   = Wrong Word
    28   = System Update
     

  2. #2  
    my rep is h4x0r3d


    Join Date
    Dec 2006
    Posts
    1,760
    Thanks given
    10
    Thanks received
    8
    Rep Power
    207
    Helpful. Maybe rsc servers will move a step forward now.
    Quote Originally Posted by super_ View Post
    this is shit. you are shit. gtfo retard.
     

  3. #3  
    T X
    Guest
    At the moment iam using all my spare time to make other people make rsc servers and such
     

  4. #4  
    my rep is h4x0r3d


    Join Date
    Dec 2006
    Posts
    1,760
    Thanks given
    10
    Thanks received
    8
    Rep Power
    207
    I'm not really into our 377 server or rsc but i've never worked with rsc servers. But as i know, most of the servers i've been on, are leeched from rscdaemon. So maybe you can move this generation of rsc servers up. Because rsc pking ownz
    Quote Originally Posted by super_ View Post
    this is shit. you are shit. gtfo retard.
     

  5. #5  
    T X
    Guest
    Rsc leeched from demonik online they all propa fail like lol

    Iam the one who realsed that souce and i can take them down so easy to lol
     

  6. #6  
    Registered Member
    Harvey's Avatar
    Join Date
    Mar 2007
    Posts
    967
    Thanks given
    0
    Thanks received
    59
    Rep Power
    296
    I'll start rsc
    Thanks,

    Harvey
     

  7. #7  
    T X
    Guest
    Hope to see you soon doing rsc servers then
     

  8. #8  
    Renown Programmer
    veer's Avatar
    Join Date
    Nov 2007
    Posts
    3,746
    Thanks given
    354
    Thanks received
    1,370
    Rep Power
    3032
    Quote Originally Posted by T X View Post
    Rsc leeched from demonik online they all propa fail like lol

    Iam the one who realsed that souce and i can take them down so easy to lol
    RSCD was around before this 'demonik online' server. RSCD was written by eXemplar and Sean.. two big people in RSC & RS2 cheating. eXemplar helped write aryan, and Sean wrote RSC bots. Oh, I also forgot about reines. Reines was the owner of reinet and SYI. Dunno where he goes now, but he was a good programmer aswell. They didn't leech one bit of code.
     

  9. #9  
    T X
    Guest
    Quote Originally Posted by Polyfinite_ View Post
    RSCD was around before this 'demonik online' server. RSCD was written by eXemplar and Sean.. two big people in RSC & RS2 cheating. eXemplar helped write aryan, and Sean wrote RSC bots. Oh, I also forgot about reines. Reines was the owner of reinet and SYI. Dunno where he goes now, but he was a good programmer aswell. They didn't leech one bit of code.
    Reines has quite everythink runescape realted
     

  10. #10  
    Registered Member

    Join Date
    Feb 2007
    Age
    28
    Posts
    6,414
    Thanks given
    354
    Thanks received
    323
    Rep Power
    5000
    t x can you get me a source or something so i can start rs classic? so i can see if it cooler.

    add my msn [email protected] idc if you block me after you give me the source


    Menacescape - Runescape Private server
    Come to Menacescape. We've been online for over two years with an active community!
     

Page 1 of 2 12 LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •