[Help] ancients items

Set byte 17 and 18 to either 05 or 10:
Code:
// Ancient set 1
0x0123456789ABCDEF_05_23456789ABCDEF
// Ancient set 2
0x0123456789ABCDEF_10_23456789ABCDEF
(don'f forget to remove the underscores)
 
  • Like
Reactions: zsnesw
Defina os bytes 17 e 18 para 05 ou 10:
[CÓDIGO]
// Conjunto antigo 1
0x0123456789ABCDEF_05_23456789ABCDEF
// Conjunto antigo 2
0x0123456789ABCDEF_10_23456789ABCDEF
[/CÓDIGO]
(não se esqueça de remover os sublinhados)
in which part of the code do I put this? I'm still learning, sorry
 
The easiest way is to alter the $hex1 variable.
Try
PHP:
$hex1 = sprintf("%02X%02X%02X%08s%02X%02s%02s", $item_id, $IO, $dur, $serial, $EO, "05", "00");
 
  • Like
Reactions: zsnesw
The easiest way is to alter the $hex1 variable.
Try
PHP:
$hex1 = sprintf("%02X%02X%02X%08s%02X%02s%02s", $item_id, $IO, $dur, $serial, $EO, "05", "00");
i got it, thank you so much for your help
 
  • Love
Reactions: RaFa
The easiest way is to alter the $hex1 variable.
Try
PHP:
$hex1 = sprintf("%02X%02X%02X%08s%02X%02s%02s", $item_id, $IO, $dur, $serial, $EO, "05", "00");
hi , sorry to be more like you could take away another doubt?
what I would need to add in this code to run a mu season 3?
 
hi , sorry to be more like you could take away another doubt?
what I would need to add in this code to run a mu season 3?
I cant remember the bytes position for season 1+. You can download MuMaker and see what part of the HEX changes in the bottom bar, when adding Ancient option. The value is still either 05 or 10.
 
I cant remember the bytes position for season 1+. You can download MuMaker and see what part of the HEX changes in the bottom bar, when adding Ancient option. The value is still either 05 or 10.
actually I meant any item. I can't add any items in a mu season 3, season 1 only.
 
The season 1+ items have different hex. You can have a look at the implementation in some webshop, which supports season 1+.

Long story short, use setting to distinguish between different seasons and run different item generation scripts.