Results 1 to 4 of 4
  1. #1
    KiD_CuDi_'s Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    The Universe
    Posts
    234
    Reputation
    10
    Thanks
    259
    My Mood
    Amused

    Exclamation Event Spawn Rate?

    How do I make events spawn more in the realm? Like how nilly had it.

    And also bonus question !! How do I time the realm closing. Like, instead of killing quests to close it it closes every hour.
    cool

  2. #2
    austo123's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    2
    My Mood
    Confused
    While I don't know the exact way to add it as I don't really care to learn it I can try pointing you to the right area look in your oryx.cs and look for checkfinalquests
    that is the way it closes realm so if you wanna make a timer look at that shouldn't be too hard

  3. #3
    KiD_CuDi_'s Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    The Universe
    Posts
    234
    Reputation
    10
    Thanks
    259
    My Mood
    Amused
    Quote Originally Posted by austo123 View Post
    While I don't know the exact way to add it as I don't really care to learn it I can try pointing you to the right area look in your oryx.cs and look for checkfinalquests
    that is the way it closes realm so if you wanna make a timer look at that shouldn't be too hard
    I managed to figure out where it was:


    But since im not good at coding im still confused with how I would setup a timer. All Ive managed to do is add a new using reference xd
    help me out a bit?
    cool

  4. #4
    toby2449's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    The Ocean
    Posts
    281
    Reputation
    10
    Thanks
    21
    My Mood
    Inspired
    Quote Originally Posted by KiD_CuDi_ View Post
    I managed to figure out where it was:


    But since im not good at coding im still confused with how I would setup a timer. All Ive managed to do is add a new using reference xd
    help me out a bit?
    I was able to do a simple google search and clicked on the first one and got something like this:

    Code:
    Timer aTimer = new Timer();
    aTimer.Interval = 10*1000; // 10 * 1000 = 10 seconds
    aTimer.Tick += CheckFinalQuests;            
    aTimer.Start();
    just put that code where ever the file is calling CheckFinalQuests. Remove the old line(s) that is calling the method and replace it with the timer. Very simple. You may have to do a aTimer.Stop(); somewhere because I don't use timers that often.

    Also get rid of the if that counts the enemies. It won't be needed since the timer is closing the realm.
    Last edited by toby2449; 03-08-2018 at 06:17 AM.
     
    ded lol


     
     
    I don't have skype xd. Well, I used to before it got hacked. Go hack it some more - toby2449

Similar Threads

  1. [Release] DoT, HoT and Spawn Rate glitch
    By axtreckkkk in forum Adventure Quest Worlds (AQW) Tutorials, Source Code & Coding
    Replies: 124
    Last Post: 01-06-2020, 12:14 AM
  2. [Help Request] Custom Events/Event Spawn Rate
    By KiD_CuDi_ in forum Realm of the Mad God Private Servers Help
    Replies: 4
    Last Post: 07-17-2016, 10:56 PM
  3. [Solved] Spawn Rate Glitch
    By faker12333 in forum Adventure Quest Worlds (AQW) Help
    Replies: 13
    Last Post: 09-24-2015, 08:54 PM
  4. Unturned server items spawn rate
    By HAR1Ux in forum Unturned Hacks & Cheats
    Replies: 4
    Last Post: 07-15-2014, 11:16 PM
  5. [Help] How do I edit my loot and vehicle spawn rates?
    By Liquidjdog in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 2
    Last Post: 01-06-2013, 01:40 AM