Recent content by Toriad

  1. Toriad

    Misc How To: Submitting your Bug Fixes as Pull Requests on Github

    Enjoy a Crappy Tutorial Video!
  2. Toriad

    God Client In Core..?

    I don't think that is complete, and I don't think it should be, more focus should go towards high impact changes. Like ML content, although I am willing to hear counterarguments.
  3. Toriad

    Programming question

    Spaces... IDE's should be able to do everything that a "Tab" user would want, with spaces.
  4. Toriad

    Programming question

    C# is a viable language, and you guys aren't scripters, you are full blown programmers. There is no difference between UO Scripting and C# programming, the primary difference is that you're working off a base set of classes, instead of building everything from scratch. That being said C++ is...
  5. Toriad

    UOSteam - Bye Bye?

    It's unfortunate to see another tool go the way of the cobwebs. Love it or hate it, development of better tools for playing UO is always a good thing.
  6. Toriad

    UOPoison - Full PVP Shard is Waiting You !!

    As per the many discussions here, and the evidence of logs and other such information. I am locking this thread as negative to the overall community that is Ultima Online. The UO community is small enough without these kind of underhanded tactics taking place. You as the owner of the server, the...
  7. Toriad

    Magencia Bazaar

    I am pretty sure that they are working with regular vendors right now but I haven't done ALOT of testing on this. Denjiki has been busy but I will refer to his judgement. Hopefully he can pop in and explain. If not this can be something we look into adding for sure.
  8. Toriad

    Operator blah blah cannot be applied to operands of type ___

    So what exactly is in the function right now, cause what I just sent to you should be working.
  9. Toriad

    Operator blah blah cannot be applied to operands of type ___

    If you don't have enough gold in your backpack what happens?
  10. Toriad

    Operator blah blah cannot be applied to operands of type ___

    Is it taking them from your backpack.
  11. Toriad

    Operator blah blah cannot be applied to operands of type ___

    Try this out. public void EndPlace( Point3D loc ) { if( m_From.Backpack.ConsumeTotal( typeof( Gold ), m_Price ) || m_From.BankBox.ConsumeTotal( typeof( Gold ), m_Price ) ) { switch (m_ItemID) { case 2084:{new YardIronGate(m_From, m_Price...
  12. Toriad

    Operator blah blah cannot be applied to operands of type ___

    Based on the code above that makes sense, it will only ever check the bank box. if the cost is > 2999, what if the cost is 300 coins? also the Item[] Gold thing that you have is never used.
  13. Toriad

    Operator blah blah cannot be applied to operands of type ___

    Also if you really want to do it in one line, then you need to Item[] Gold = m_From.Backpack.FindItemsByType(typeof(Gold)).Length > 0 ? m_From.Backpack.FindItemsByType(typeof(Gold)) : m_From.BankBox.FindItemsByType(typeof(Gold)) EDIT: || operator returns a true or false, not anything else. If...
  14. Toriad

    Reddit and ServUO

    I see no issue at all with this.
  15. Toriad

    Errors Visual Studio 2013

    @SomeDude can you look at the latest commit should be all better.
Back