1. Hello, is there a way to see whatever a player is crafting or not?
     
  2. Wulf

    Wulf Community Admin

    Yes, check their crafting queue. I don't know how to do it in C#, but for Lua:
    Code:
    if player.inventory.crafting.queue.Count >= 1 then
     
  3. C# example:

    Code:
                    if (player.inventory.crafting.queue.Count >= 1)
                    {
                        //do stuff
                    }
     
  4. C#
    Code:
    if ( player.inventory.crafting.queue.Count > 0 )
    {}
     
  5. Thanks alot all of you :)
     
    Last edited by a moderator: Jun 17, 2015