Back

Raffles & Giveaways

Share your raffles and giveaways with the Flight Rising community.
TOPIC | S1: Starmap Dragon Raffles: CLOSED
1 2 3 4 5 6 7
Auction has ended and is CLOSED. [b]1 Ticket = 1g or 900 treasure.[/b] This is set1, see set2 here: [url]http://www1.flightrising.com/forums/raf/2581816[/url] -------------------------------------------------------------- [b][color=blue]Dragon 1 XYZ - [/color][color=green]2 tickets purchased[/color][/b] [b][color=purple]Winner: @Rosebunhun !!!!![/color][/b] [columns] [url=http://flightrising.com/main.php?dragon=46426772] [img]http://flightrising.com/rendern/350/464268/46426772_350.png[/img][/url] [nextcol][center] [b]Unnamed[/b] Teal/Seafoam/Banana Starmap/Facet/Runes Eyes: Common [/columns] -------------------------------------------------------------- [b][color=blue]Dragon 2 XYZ - [/color][color=green]0 tickets purchased[/color][/b] -------------------------------------------------------------- [b][color=blue]Dragon 3 XYZ - [/color][color=green]0 tickets purchased[/color][/b] -------------------------------------------------------------- [b][color=blue]Dragon 4 XYZ - [/color][color=green]0 tickets purchased[/color][/b] -------------------------------------------------------------- [b][color=blue]Dragon 5 XYZ - [/color][color=green]19 tickets purchased[/color][/b] [b][color=purple]Winner: @SarahDragonRider !!!!![/color][/b] [columns] [url=http://flightrising.com/main.php?dragon=46093840] [img]http://flightrising.com/rendern/350/460939/46093840_350.png[/img][/url] [nextcol][center] [b]Unnamed[/b] Eldritch/Navy/Mint Starmap/Current/Runes Eyes: Common [/columns] -------------------------------------------------------------- [b][color=blue]Dragon 6 XYZ - [/color][color=green]0 tickets purchased[/color][/b] -------------------------------------------------------------- [b][color=blue]Dragon 7 XYZ - [/color][color=green]0 tickets purchased[/color][/b] -------------------------------------------------------------- [b][color=blue]Dragon 8 XYZ - [/color][color=green]0 tickets purchased[/color][/b] -------------------------------------------------------------- [b][color=blue]Dragon 9 XYZ - [/color][color=green]1 tickets purchased[/color][/b] [b][color=purple]Winner: @bedfordblack !!!!![/color][/b] [columns] [url=http://flightrising.com/main.php?dragon=46251052] [img]http://flightrising.com/rendern/350/462511/46251052_350.png[/img][/url] [nextcol][center] [b]Unnamed[/b] Iris/Abyss/Violet Starmap/Toxin/Firefly Eyes: Unusual [/columns] -------------------------------------------------------------- [b][color=blue]Dragon 10 XYZ - [/color][color=green]0 tickets purchased[/color][/b]
Auction has ended and is CLOSED.

1 Ticket = 1g or 900 treasure.

This is set1, see set2 here:
http://www1.flightrising.com/forums/raf/2581816

Dragon 1 XYZ - 2 tickets purchased
Winner: @Rosebunhun !!!!!

46426772_350.png
Unnamed
Teal/Seafoam/Banana
Starmap/Facet/Runes
Eyes: Common

Dragon 2 XYZ - 0 tickets purchased
Dragon 3 XYZ - 0 tickets purchased
Dragon 4 XYZ - 0 tickets purchased
Dragon 5 XYZ - 19 tickets purchased
Winner: @SarahDragonRider !!!!!

46093840_350.png
Unnamed
Eldritch/Navy/Mint
Starmap/Current/Runes
Eyes: Common

Dragon 6 XYZ - 0 tickets purchased
Dragon 7 XYZ - 0 tickets purchased
Dragon 8 XYZ - 0 tickets purchased
Dragon 9 XYZ - 1 tickets purchased
Winner: @bedfordblack !!!!!

46251052_350.png
Unnamed
Iris/Abyss/Violet
Starmap/Toxin/Firefly
Eyes: Unusual

Dragon 10 XYZ - 0 tickets purchased
FYI for anyone wanting to see my method of picking, I record the names in a YAML file with the number of entries, then a python script shuffles the entries up 4 times (like a deck of cards), then randomly select a name from the list. [color=red][b]names/numbers below are just a sample and not actual auction entries[/b][/color] [b]yaml file[/b] [code]--- #Auction name # username: [num_entries, userid] Dragon 1: bob1: [20, 1111] bob2: [30, 2222] bob3: [43, 3333] Dragon 2: bob1: [54, 1111] bob2: [64, 2222] Dragon 3: bob3: [2, 3333] Dragon 4: [] Dragon 5: [] [/code] [b]python script[/b] [code]import random import yaml with open("names.yml") as f: list = yaml.load(f) for raffle in list: weighted_choices = [] for name in list[raffle]: weighted_choices.append((name, list[raffle][name][1])) populated_list = [val for val, cnt in weighted_choices for i in range(cnt)] random.shuffle(populated_list) random.shuffle(populated_list) random.shuffle(populated_list) random.shuffle(populated_list) if len(populated_list) > 0: winner = random.choice(populated_list) uid = list[raffle][winner][0] print('{}: {} tickets'.format(raffle, len(populated_list))) if len(populated_list) > 0: print(' Winner: {} (id: {})'.format(winner, uid)) [/code] [b]output[/b] [code]Dragon 1: 93 tickets Winner: bob3 (id: 3333) Dragon 2: 118 tickets Winner: bob2 (id: 2222) Dragon 3: 2 tickets Winner: bob3 (id: 3333) Dragon 4: 0 tickets Dragon 5: 0 tickets[/code]
FYI for anyone wanting to see my method of picking, I record the names in a YAML file with the number of entries, then a python script shuffles the entries up 4 times (like a deck of cards), then randomly select a name from the list.

names/numbers below are just a sample and not actual auction entries

yaml file
Code:
--- #Auction name # username: [num_entries, userid] Dragon 1: bob1: [20, 1111] bob2: [30, 2222] bob3: [43, 3333] Dragon 2: bob1: [54, 1111] bob2: [64, 2222] Dragon 3: bob3: [2, 3333] Dragon 4: [] Dragon 5: []

python script
Code:
import random import yaml with open("names.yml") as f: list = yaml.load(f) for raffle in list: weighted_choices = [] for name in list[raffle]: weighted_choices.append((name, list[raffle][name][1])) populated_list = [val for val, cnt in weighted_choices for i in range(cnt)] random.shuffle(populated_list) random.shuffle(populated_list) random.shuffle(populated_list) random.shuffle(populated_list) if len(populated_list) > 0: winner = random.choice(populated_list) uid = list[raffle][winner][0] print('{}: {} tickets'.format(raffle, len(populated_list))) if len(populated_list) > 0: print(' Winner: {} (id: {})'.format(winner, uid))

output
Code:
Dragon 1: 93 tickets Winner: bob3 (id: 3333) Dragon 2: 118 tickets Winner: bob2 (id: 2222) Dragon 3: 2 tickets Winner: bob3 (id: 3333) Dragon 4: 0 tickets Dragon 5: 0 tickets
@keimond Sending in 9000t for Dragon 2!
@keimond Sending in 9000t for Dragon 2!
Lichtdrache.gif
^
^
^
^
@keimond

I’m sending 14g for dragon number 3 please!

Thank you!
@keimond

I’m sending 14g for dragon number 3 please!

Thank you!
hypmic-hypnosis-mic.gif
@keimond

Sending moneys for #2!!!
@keimond

Sending moneys for #2!!!
[quote name="hoppybunnyme" date="2018-10-18 12:21:32" ] @keimond I’m sending 14g for dragon number 3 please! Thank you! [/quote] Added 14 tickets to dragon 3 :)
hoppybunnyme wrote on 2018-10-18 12:21:32:
@keimond

I’m sending 14g for dragon number 3 please!

Thank you!
Added 14 tickets to dragon 3 :)
^
^
@keimond Sending 9g for Derg 1 ^^
@keimond Sending 9g for Derg 1 ^^
tumblr_pyegmoMJkS1ugssd3o3_250.png n4H37dx.png
1vAtYxM.png
o7ZCFYm.png
B8HmiZX.png
d3OF3Gw.png
QUIpVFE.png
wAfJ7Bn.png
J7D1quC.png
YUzmw5z.png
1 2 3 4 5 6 7