Advertisement
Eddow

Config.php (Part of it)

Apr 18th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.22 KB | None | 0 0
  1. $charformat =
  2.     'Lflag/' .
  3.     'Lflagright/' .
  4.     'Z40name/'.
  5.     'C160description/' .    // #define LENDESC         160
  6.     'Iid/' .
  7.     'Iplayer/' .
  8.     'Isprite/' .
  9.     'Isound/' .
  10.     'S43value_mods/' .            // #define V_MAX           43
  11.     'S43value_bases/' .            // #define V_MAX           43
  12.     'ihp/' .
  13.     'iendurance/' .
  14.     'imana/' .
  15.     'ilifeshield/' .
  16.     'iregen_ticker/' .
  17.     'iexp/' .
  18.     'iexp_used/' .
  19.     'ilevel/' .
  20.     'igold/' .
  21.     'i110item/' .            //#define INVENTORYSIZE    110
  22.     'ichannel/' .
  23.     'Sxpos/' .
  24.     'Sypos'.
  25.     //              'Szpos/' .
  26.     'Stox/' .
  27.     'Stoy/' .
  28.     'Cdir/' .
  29.     'isec_prev/' .
  30.     'isec_next/' .
  31.     'Saction/' .
  32.     'Sduration/' .
  33.     'Sstep/' .
  34.     'iact_one/' .
  35.     'iact_two/' .
  36.     'Cspeed_mode/' .
  37.     'Smerchant/' .
  38.     'icon_in/' .
  39.     'Sdriver/' .
  40.     'Sstore/' .
  41.     'Idata_ID/' .
  42.     'Idata_Size/' .
  43.     'Imessage_type/' .
  44.     'Imessage_dat1/' .
  45.     'Imessage_dat2/' .
  46.     'Imessage_dat3/' .
  47.     'Imessage_last_type/' .
  48.     'Imessage_last_dat1/' .
  49.     'Imessage_last_dat2/' .
  50.     'Imessage_last_dat3/' .
  51.     'carg/' .
  52.     'igroup/' .
  53.     'iserial/' .
  54.     'itmp/' .
  55.     'itmpx/' .
  56.     'itmpy/' .
  57.     'itmpa/' .
  58.     'irespawn/' .
  59.     'iclass/' .
  60.     'iresta/' .
  61.     'irestx/' .
  62.     'iresty/' .
  63.     'c8junk_next/' .
  64.     'ief_zero1/' .
  65.     'isaves/' .
  66.     'iclan/' .
  67.     'iclan_rank/' .
  68.     'c4staff_code/' .
  69.     'iclan_serial/' .
  70.     'ikarma/' .
  71.     'ilogin_time/' .
  72.     'ideaths/' .
  73.     'igot_saved/' .
  74.     'scolor_one/' .
  75.     'scolor_Two/' .
  76.     'scolor_three/' .
  77.     'irage/' .
  78.     'ilast_regen/' .
  79.     'imirror/' .
  80.     'ipaid_till/' .
  81.     'C20prof/' .
  82.     'Icreation_time';           //#define P_MAX     20
  83.  
  84.  
  85.  
  86. $itemformat =
  87.     'Lflagleft/' .
  88.     'Lflagright/' .
  89.     'c40name/' .
  90.     'c80desc/' .
  91.     'ivalue/' .
  92.     'Cmin_level/' .
  93.     'Cmax_level/' .
  94.     'Cneeds_class/' .
  95.     'CExpire_sn/' .
  96.     'iowner/' .
  97.     's5mod_index/' .            //#define MAXMOD        5
  98.     's5mod_value/' .                #define MAXMOD      5
  99.     'Sxcoord/' .
  100.     'Sycoord/' .
  101.     'Scarried/' .
  102.     'Scontained/' .
  103.     'Scontent/' .
  104.     'Sdriver/' .
  105.     'S40drdata/' .                //#define IT_DR_SIZE  40
  106.     'iid/' .
  107.     'iserial/' .
  108.     'isprite/' .
  109.     'c8junk4/';
  110. //            var_dump($chr);
  111. //            var_dump($item);
  112. //            var_dump($ppd);
  113. //  $charinfos = unpack( $charformat, $chr );
  114. //  $iteminfos = unpack( $itemformat, $item );
  115. //            $ppdinfos = unpack( $ppdformat, $ppd );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement