So trying to make little function once again and can't seen to figure that one out.   
I can move items from a bag to my backpack , I decide to move items from backpack to bag and that didn't go well. 
function EggToBag()  :  Do not work, getting Error online 25  Orion.MoveItem.     I'm sure it a little mistake so anyone can point me to the right direction. 
 var eggbag = "0x413DB0DD" 
function EggToBackpack()
    {
    while(true)
        {
        var egg = Orion.FindTypeEx('0x9F13|0x9F14|0x9F15|0x9F16|0x9F17|0x9F18', any, eggbag, '', 24)[0];
        if(egg)
            {
               Orion.MoveItem(egg.Serial());
          Orion.Wait(500);      
            }
        Orion.Wait(500);
        }
    }
   function EggToBag()
    {
    while(true)
        {
        var egg = Orion.FindTypeEx('0x9F13|0x9F14|0x9F15|0x9F16|0x9F17|0x9F18', any, 'backpack', '', 24)[0];
        if(egg)
            {
           Orion.MoveItem(eggbag.Serial());
          Orion.Wait(500);      
            }
        Orion.Wait(500);
        }
    }