visitors can't see pics , please
register or
loginYup,
Since
Lottery Lördag only give ability to win price for people who paid to help cRPG' servers, I won 6 times, I give a chance to everyone on this forum to win heirloom points.
Actually I can offer 4 heirloom points.
visitors can't see pics , please
register or
loginConditions ?
Just post here, a pic or what you want, your name will then be entered into a list for a random selection, lottery draw will be on Saturday 4th October, 20:00
UTC.
Other conditions:
Your account must be old 1 month with a minimum of 10 messages (msg 1 week old and not in ban section)
Update: messages 1 week old and not in ban/loom giveaway/trade section or spam
Enjoy
visitors can't see pics , please
register or
loginAnd the winners are:
Huscarlton_Banks: 1 heirloom point (paid)
Algarn: 1 heirloom point (paid)
Nordwolf: 1 heirloom point (paid)
Sharpe: 1 heirloom point (paid)
The full randomly sorted list: 76 players
Huscarlton_Banks 17394
Algarn 21882
Nordwolf 3833
Sharpe 23244
UrukHai 5497
Austrian 15140
SugarHoe 23289
Chosen1 21496
Keshian 433
Moncho 8751
Halfdan_stenman 19789
Erzengel 14962
pepejul 674
Killer 23562
Richyy 19763
skeletzo 22940
BadooN 20628
vipere 19401
Mallets 17141
Heibai 22371
[ptx] 455
Vrael 1652
lombardsoup 16307
Krex 23841
Viriathus 17666
ARN_ 9553
Penitent 5186
naduril 1479
Youhou 4456
karasu 3422
Man of Steel 22646
Jona 8502
Tuetensuppe 7845
Thorvic 19131
Sparvico 20371
Nashringa 17359
Jacaroma 24857
Kalp 9749
WITCHCRAFT 6845
Spartacus 8762
Lysander 7724
Angantyr 14577
Thryn 23616
Dolphin 3134
zottlmarsch 6284
tkn123 2797
wayyyyyne 2144
TheZeus 22604
Molly 190
njames89 16862
Patoson 7666
Strudog 9536
Konrax 1462
Radament 1077
Chris_the_Animal 16300
Nehvar 11660
IR_Kuoin 2879
Hearst_ 9626
Tanken 6659
Tore 10865
Screaming Idiot 23946
FRANK_THE_TANK 9575
StonedSteel 22041
Kaoklai 7844
Eddy 3794
SIrCampALot 24887
Apsod 2742
Bittersteel 23083
PanPan 192
FleetFox 18368
sF_Guardian 1192
Panuru 6475
jergu 18837
Rhekimos 403
Laufknoten 4659
Arrowblood 2507
Huscarlton_Banks: 1 heirloom point (paid)
Elio
04/10/2014 23:15:09
to Huscarlton_Banks
I accepted your trade. You received 1 heirloom point in exchange for your Stones (rank 0, 8931450).
Algarn: 1 heirloom point (paid)
Elio
04/10/2014 23:50:32
to Merc_Algarn
I accepted your trade. You received 1 heirloom point in exchange for your Falchion (rank 0, 8919826).
Nordwolf: 1 heirloom point (paid)
Elio
05/10/2014 22:03:55
to Nordwolf
I accepted your trade. You received 1 heirloom point in exchange for your Torch (rank 0, 7742805).
Sharpe: 1 heirloom point (paid)
Elio
04/10/2014 23:13:16
to ZeSharpe
I accepted your trade. You received 1 heirloom point in exchange for your Old Round Shield (rank 0, 8056987).
Method used to randomly draw players. I made it last night. In
Python 3.
I simply use random.choice(list) from
random native module.
http://pastebin.com/Randomly Draw Players.py# -*- coding: utf-8 -*-
# Python 3
# Randomly Draw Players
import sys
import pathlib
import random
if len(sys.argv) < 2:
raise Exception("Missing argument: input_file_name")
script_file_name = sys.argv[0]
input_file_path = pathlib.Path(sys.argv[1])
with open(file=str(input_file_path.absolute()),
mode='r',
buffering=-1,
encoding='utf-8'
) as input_file: # {
players_dict = dict()
input_file.lineno = 0
for input_line in input_file: # {
input_file.lineno += 1
try:
player_name, player_id = input_line.strip().split('\t')
except ValueError:
raise Exception("File error {!r} at line {}!".format( input_file_path.name, input_file.lineno ))
else:
players_dict.update({player_name: player_id})
# }
# } with open
if not len(players_dict):
raise Exception("Missing players")
output_file_path = input_file_path
i = 0
while output_file_path.exists(): # { Find an no-existing file name
i += 1
output_file_path = pathlib.Path( # Folder + name_base + name_extension
input_file_path.parent,
input_file_path.stem + " output {}".format(i) + input_file_path.suffix
)
# }
with open(file=str(output_file_path.absolute()),
mode='w',
buffering=-1,
encoding='utf-8'
) as output_file: # {
while len(players_dict): # { Extract randomly each players
player_chosen_name = random.choice(list(players_dict.keys())) # Choose randomly a player name
player_chosen_id = players_dict.pop(player_chosen_name) # Extract and remove from dictionary
output_file.writelines( "{}\t{}\n".format(player_chosen_name, player_chosen_id) )
# }
# } with open
With file players list.txt:
ARN_ 9553
Algarn 21882
Angantyr 14577
Apsod 2742
Arrowblood 2507
Austrian 15140
BadooN 20628
Bittersteel 23083
Chosen1 21496
Chris_the_Animal 16300
Dolphin 3134
Eddy 3794
Erzengel 14962
FRANK_THE_TANK 9575
FleetFox 18368
Halfdan_stenman 19789
Hearst_ 9626
Heibai 22371
Huscarlton_Banks 17394
IR_Kuoin 2879
Jacaroma 24857
Jona 8502
Kalp 9749
Kaoklai 7844
Keshian 433
Killer 23562
Konrax 1462
Krex 23841
Laufknoten 4659
Lysander 7724
Mallets 17141
Man of Steel 22646
Molly 190
Moncho 8751
Nashringa 17359
Nehvar 11660
Nordwolf 3833
PanPan 192
Panuru 6475
Patoson 7666
Penitent 5186
Radament 1077
Rhekimos 403
Richyy 19763
SIrCampALot 24887
Screaming Idiot 23946
Sharpe 23244
Spartacus 8762
Sparvico 20371
StonedSteel 22041
Strudog 9536
SugarHoe 23289
Tanken 6659
TheZeus 22604
Thorvic 19131
Thryn 23616
Tore 10865
Tuetensuppe 7845
UrukHai 5497
Viriathus 17666
Vrael 1652
WITCHCRAFT 6845
Youhou 4456
[ptx] 455
jergu 18837
karasu 3422
lombardsoup 16307
naduril 1479
njames89 16862
pepejul 674
sF_Guardian 1192
skeletzo 22940
tkn123 2797
vipere 19401
wayyyyyne 2144
zottlmarsch 6284
To use it, simply open the command line: python.exe "Randomly Draw Players.py" "players list.txt"
It will create a new file randomly sorted.
visitors can't see pics , please
register or
login