Delete the duckets? + One more Question INSIDE (Swift Emulator)

Results 1 to 6 of 6
  1. #1
    Member 11Johan11 is offline
    MemberRank
    Mar 2013 Join Date
    Habbo SectionLocation
    74Posts

    Delete the duckets? + One more Question INSIDE (Swift Emulator)

    Like the title says is it possible to just delete the Duckets? In the Client? And one more question can i make so every player gets 3 diamonds every hour ?

    Sorry for my bad English im Swedish!


  2. #2
    Infraction Banned HabMoon is offline
    Grand MasterRank
    Jun 2007 Join Date
    HM OfficesLocation
    3,068Posts

    Re: Delete the duckets? + One more Question INSIDE (Swift Emulator)

    1) In your variables change
    Code:
    duckets.enabled=true
    to
    Code:
    duckets.enabled=false

    2) You could set an event in MySQL which will update the users crystals + 3 every hour.
    Code:
    CREATE EVENT `extracrystals` ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 HOUR DO UPDATE users SET crystals = crystals + 3;
    Not sure if I wrote it right but something like that should work :)

  3. #3
    Check http://arcturus.pw The General is offline
    DeveloperRank
    Aug 2011 Join Date
    7,613Posts

    Re: Delete the duckets? + One more Question INSIDE (Swift Emulator)

    Quote Originally Posted by HabMoon View Post
    1) In your variables change
    Code:
    duckets.enabled=true
    to
    Code:
    duckets.enabled=false

    2) You could set an event in MySQL which will update the users crystals + 3 every hour.
    Code:
    CREATE EVENT `extracrystals` ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 HOUR DO UPDATE users SET crystals = crystals + 3;
    Not sure if I wrote it right but something like that should work :)
    2 wont work as you have to update it server side. When you logout the values will be updated to what the user had in game. Pretty bad in my opinion.

  4. #4
    Infraction Banned HabMoon is offline
    Grand MasterRank
    Jun 2007 Join Date
    HM OfficesLocation
    3,068Posts

    Re: Delete the duckets? + One more Question INSIDE (Swift Emulator)

    Quote Originally Posted by tdid View Post
    2 wont work as you have to update it server side. When you logout the values will be updated to what the user had in game. Pretty bad in my opinion.
    Yeah thought about that also. He could add it to the emulator itself or making it a script which also could send a mus command like 'updateallcrystals'. Though that would need some work and coding lol :p

  5. #5
    Member 11Johan11 is offline
    MemberRank
    Mar 2013 Join Date
    Habbo SectionLocation
    74Posts

    Re: Delete the duckets? + One more Question INSIDE (Swift Emulator)

    Thanks for the duckets! But do you guys know how to add it to the emulator or make a script? For diamonds? :P

  6. #6
    Check http://arcturus.pw The General is offline
    DeveloperRank
    Aug 2011 Join Date
    7,613Posts

    Re: Delete the duckets? + One more Question INSIDE (Swift Emulator)

    Quote Originally Posted by 11Johan11 View Post
    Thanks for the duckets! But do you guys know how to add it to the emulator or make a script? For diamonds? :P
    Yes edit it with MS Visual C#



Advertisement