Results 1 to 10 of 17

Thread: Bouncing Betty

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Private
    Join Date
    Nov 2014
    Posts
    25
    Thanks
    9
    Thanked 3 Times in 2 Posts
    for the part where it doesn't disappear on death, if you haven't already figured it out, add something like this:
    self thread killBettyOnDeath(betty, jumptrigger, trigger);
    self thread killBettyOnDisconnect(betty, jumptrigger, trigger);
    PHP Code:
    killBettyOnDeath(bettyjumptriggertrigger)
    {
        
    self waittill("death");
        
    betty destroy();
        
    jumptrigger destroy();
        
    trigger destroy();
    }
    killBettyOnDisconnect(bettyjumptriggertrigger)
    {
        
    self waittill("disconnect");
        
    betty destroy();
        
    jumptrigger destroy();
        
    trigger destroy();


  2. The Following User Says Thank You to Kemi For This Useful Post:

    akuma2099 (16th November 2015)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •