Search results

  1. Skyfly

    UODisc - a discord bot

    good to know if i have time this weekend i'll push a change that doesn't use default literals
  2. Skyfly

    UODisc - a discord bot

    I don't have any plans to currently support older servuo versions, the error above comes since the older versions of servuo don't use the new language features
  3. Skyfly

    UODisc - a discord bot

    Did you recompile? it worked out when i tested it if you recompiled and it still doesn't work, delete the Saves/Discord/Client.bin and try again
  4. Skyfly

    UODisc - a discord bot

    Never share your discord token in public! (if discord didn't revoke the token by themselves automatically already you should generate a new one by yourself as soon as possible!) For some reason i used the wrong integer for the for-loop which gets the users accounts, fixed it in the source (will...
  5. Skyfly

    UODisc - a discord bot

    It should be saved when the world is saved What messages does the client write to the console? (they're all prefixed with "Discord: ")
  6. Skyfly

    Problem getting UsesRemaining value through to the script's Timer

    Hey, the reason you're getting that error is because you are trying to access the variable in the shroud, you need to store the shroud somewhere and then access it from that variable. (See this link: Compiler Error CS0038) I modified your code, you pretty much overcomplicated the timer, it is...
  7. Skyfly

    Making items visible to only Administrators (ServUO Pub57)

    Just place it anywhere in the BaseFactionTrap class and it should work
  8. Skyfly

    Making items visible to only Administrators (ServUO Pub57)

    Hey, I think if you overwrite the following method (in your item) with this it should do the trick: public override void SendInfoTo(NetState state, bool sendOplPacket) { if (state.Mobile != null && state.Mobile.AccessLevel >= AccessLevel.Administrator) base.SendInfoTo(state...
  9. Skyfly

    UODisc - a discord bot

    Skyfly updated UODisc - a discord bot with a new update entry: Alpha-0.3.0 Read the rest of this update entry...
  10. Skyfly

    UODisc - a discord bot - Alpha-0.3.0

    Added new commands: CreateAccount SetPassword SelectCharacter Discord chat synchronization classes have been removed and now simply work through discord logging Added a way to track reactions on messages For more info check the wiki: Github: Wiki
  11. Skyfly

    Pet Powerscroll Exchange

    That will still gives you the same error, take a closer look at your code. If you go from top to bottom, you will see that you are only returning a value inside of your if (mobile != null) { ... } but since we are required to return something (in this case the bool true/false) we have to...
  12. Skyfly

    Pet Powerscroll Exchange

    Hey, You're getting that error because you only return inside of if (mobile != null) See this: public override bool OnDragDrop(Mobile from, Item dropped) { base.OnDragDrop(from, dropped); Mobile m = from; PlayerMobile mobile = m as PlayerMobile; if (mobile != null) {...
  13. Skyfly

    UODisc - a discord bot

    Skyfly updated UODisc - a discord bot with a new update entry: Alpha 0.2.0 Read the rest of this update entry...
  14. Skyfly

    UODisc - a discord bot - Alpha 0.2.0

    Added new commands: BanPlayer KickPlayer OnlinePlayers Command parameters change: Strings with spaces now require " at the start and end, example: "a string with spaces" Added chat synchronization (for now one-way (ingame -> discord)), see Github: Wiki/Chat Synchronization
  15. Skyfly

    UODisc - a discord bot

    This is something i have in mind and might come with the next update
  16. Skyfly

    UODisc - a discord bot

    Skyfly submitted a new resource: UODisc - a discord bot - A discord bot based on DSharpPlus Read more about this resource...
  17. Skyfly

    UODisc - a discord bot Alpha-0.3.1

    UODisc - a Discord Bot based on DSharpPlus With this tool you can communicate and act between discord and the server. I developed this with the intention of making it easy to implement a discord bot with features while leaving as much as possible open to the user. The bot was tested and is...
  18. Skyfly

    How To Install "Completely Customizable Vendor" Script

    Look for the script: Token Vendor Stone.cs it looks like this script already contains the VendorBall and VendorGump or might lead to the script that contains them
  19. Skyfly

    How To Install "Completely Customizable Vendor" Script

    Can you try adding the following in the script: (around line 26) namespace Server.Items { public class VendorBall : Item { //add this public static void Configure() { Console.ForegroundColor = ConsoleColor.Cyan...
  20. Skyfly

    Struggling with Variables

    SOS fs = SOS as Item; //LINE # 77 The problem is you aren't creating a new Item but instead trying to convert the Type into another Type from.AddToBackpack(new fs()); //LINE # 80 and here you are trying to initialize a variable like it would be a type SOS is the type to initialize a...

Active Shards

Donations

Total amount
$0.00
Goal
$1,000.00
Back