Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Storage box Code generator

Skilled Illusionist
Joined
Apr 6, 2011
Messages
329
Reaction score
37
A tool to save your manual calculation time of generating code for an Item in Box !



P.S. It is not yet tested. Let me know if there are any bugs in generated code !
 
Joined
Jun 10, 2009
Messages
658
Reaction score
140
I guess this is the logic
PHP:
$temp = [];
$temp[0] = 17;
$temp[1] = 16384 * $itemCount + $itemCode;
$temp[2] = rand(100000, 999999);
$finalCode = implode(';', $temp);
Though the core logic is simple, its good to have an application :thumbup1:
 
Skilled Illusionist
Joined
Apr 6, 2011
Messages
329
Reaction score
37
Same logic I used in the tool !
I hated it when I had to test something with hundreads of Soul's and it was hard to keep spawning and also calculating code !
 
Back
Top