#### Repository https://github.com/holgern/steemmonsters steemmonsters is a python command line tool for playing steemmonsters without graphics. The newest version 0.0.15 can be downloaded [here](https://github.com/holgern/steemmonsters/releases). ## New API comands `get_purchases_status` returns information about a purchased card pack: ``` from steemmonsters.api import Api api = Api() api.get_purchases_status("P-DTQ5OEKIVK") ``` `get_player_quests` returns information about the quest: ``` from steemmonsters.api import Api api = Api() api.get_player_quests("holger80") ``` `get_purchases_stats` returns how many packs were purchased: ``` >>> from steemmonsters.api import Api >>> api = Api() >>> api.get_purchases_stats() {'packs': [{'edition': 0, 'qty': '300000'}, {'edition': 1, 'qty': '181059'}]} ``` `api.settings()` shows the current games settings. `api.players_leaderboard()` shows the leaderboard. `get_player_login` returns the encrypted token for login: ``` from steemmonsters.api import Api api = Api() api.get_player_login("holger80") ``` `player_save_team( name, team, player, token, mana_cap)` can be used to store a new team, which then also available in the homepage. `token` is the decrypted token using the posting key from the `get_player_login` call. `player_delete_team(name, player, token, mana_cap)` deletes deck `name`. `get_player_saved_teams(player, token, mana_cap)` returns all saved teams. `get_player_teams_last_used(player, mana_cap)` returns the last used team of a player. `get_battle_history(player="%24top")` gets the last top battles. When settings `player=holger80` the last battles of the player are returned instead. ## New Commands  ### addteam ``` addteam water_test Alric Stormbringer:2, Frost Giant:1, Spineback Turtle:2, Pirate Captain:3, Crustacean King:3 ``` or ``` addteam water_test Alric Stormbringer, Frost Giant, Spineback Turtle, Pirate Captain, Crustacean King ``` adds the water_test team. The stored team can then be used for play: ``` play water_test ```  The team is also stored in the steemmonsters.com homepage:  The token for modifing teams is decrypted by: ``` from beembase import memo as BtsMemo from beemgraphenebase.account import PrivateKey from steemmonsters.api import Api api = Api() response = api.get_player_login("holger80") wif = "5xxx" # posting key token = BtsMemo.decode_memo(PrivateKey(wif), response["token"]).replace('\n', '') ``` ### deleleteam ``` deleteteam water_test ``` removes a stored team. ### copyteam ``` copyteam clove71 test1 ``` copies the last played team from clove71 and stores is as test1 ### team ``` team test1 ``` shows a stored team ### lastteam ``` lastteam ``` or ``` lastteam clove71 ``` shows the last played team ### copytopteam Is the same command, but instead of a player name, the top100 position is used. ``` copytopteam 4 test2 ``` stores the last team from the top 4 player as test2 ### lasttopteam ``` lasttopteam 4 ``` shows the last played team from top 4 player ### savedteams ``` savedteams ``` shows all saved teams ### startquest ``` sm> startquest sm_start_quest broadcasted! You have to solve the Stir the Volcano quest ``` can be used to start a new quest. In this example, 10 games using a fire deck will solve the quest. ### claimquest When a quest is solved, this command can b e used to claim the reward. ### conflict Shows the current conflict ### play `play` can now be used with stored teams from the homepage. At first the json is checked and when there is no such team, the stored teams are checked. When a team with the given name is found, it is used. `play random` works only with decks stored in the json file. `mana_cap` and `ruleset` must not be defined in the json file, it is now fetched on startup. ## Commit history ### More commands added * [commit 913b1577](https://github.com/holgern/steemmonsters/commit/913b1577f65cddb271257460177bf2c7bb7e7ca6) * conflict - shows the currect conflict * team <name> - shows a stored team * player - shows the information about the player * lasttopteam <nr> - shows the last played team * copytopteam <nr> <new_deck_name> - copies the last played team ### Merged changes from #7 manually * [commit 18af8ed](https://github.com/holgern/steemmonsters/commit/18af8ed6c0582f4283afc2cbcbcebc7fc55dab9c) ### Release 0.0.15 * [commit acc7bc6](https://github.com/holgern/steemmonsters/commit/acc7bc68721526fb16a527e0f4d06f3c5ba2b29d) ### Add api calls and improve stream and play * [commit 534cc06](https://github.com/holgern/steemmonsters/commit/534cc06f58fb1f25829206775b055c74dbc11942) #### New api calls added: * get_purchases_status * get_player_quests * quest command added for showing the current player quest * stream fixed * play improved #### GitHub Account https://github.com/holgern
author | holger80 |
---|---|
permlink | python-steemmonsters-0-0-15-several-improvements-and-new-features |
category | utopian-io |
json_metadata | "{"community": "busy", "app": "beempy/0.23.10", "format": "markdown", "tags": ["utopian-io", "development", "steemmonsters", "steemtank", "busy"], "users": [], "links": ["https://github.com/holgern/steemmonsters", "https://github.com/holgern/steemmonsters/releases", "https://github.com/holgern/steemmonsters/commit/913b1577f65cddb271257460177bf2c7bb7e7ca6", "https://github.com/holgern/steemmonsters/commit/18af8ed6c0582f4283afc2cbcbcebc7fc55dab9c", "https://github.com/holgern/steemmonsters/commit/acc7bc68721526fb16a527e0f4d06f3c5ba2b29d", "https://github.com/holgern/steemmonsters/commit/534cc06f58fb1f25829206775b055c74dbc11942", "https://github.com/holgern"], "image": ["https://ipfs.busy.org/ipfs/QmSmgBrJHwB6QDCqJ3YDbLoxgVgmc2ft3HQMuGDAPrqcS6", "https://ipfs.busy.org/ipfs/QmTren5kpQhdWP1kuXiHoyhCm9fqxpg6j9Lsg3n8zCEX8p", "https://ipfs.busy.org/ipfs/QmZQJRCtaZiJKE952t82WDtCRrU32DZyZvE39zb7K2hTdX"], "canonical_url": "https://hive.blog/utopian-io/@holger80/python-steemmonsters-0-0-15-several-improvements-and-new-features"}" |
created | 2018-11-02 15:24:06 |
last_update | 2020-05-23 14:45:15 |
depth | 0 |
children | 10 |
last_payout | 2018-11-09 15:24:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 102.888 HBD |
curator_payout_value | 32.600 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,070 |
author_reputation | 358,857,509,568,825 |
root_title | "python steemmonsters 0.0.15 - Several improvements and new features" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,549,245 |
net_rshares | 118,367,056,662,250 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 3,148,788,800,599 | 25% | ||
cm-steem | 0 | 579,284,535,329 | 100% | ||
thecryptodrive | 0 | 53,155,002,300 | 30% | ||
ausbitbank | 0 | 1,127,735,721,770 | 100% | ||
quigua | 0 | 80,794,374 | 100% | ||
remlaps | 0 | 9,758,560,746 | 50% | ||
timcliff | 0 | 1,382,408,102,646 | 83% | ||
snwolak | 0 | 7,029,843,451 | 90% | ||
stevescoins | 0 | 21,250,882,864 | 33% | ||
fraenk | 0 | 24,934,636,864 | 100% | ||
abh12345 | 0 | 108,509,639,042 | 15% | ||
okean123 | 0 | 63,601,805,780 | 100% | ||
busy.pay | 0 | 303,548,659,738 | 1.46% | ||
rach | 0 | 3,626,610,841 | 100% | ||
minersean | 0 | 1,473,902,087 | 100% | ||
apsu | 0 | 6,421,468,005 | 25% | ||
teamhumble | 0 | 147,256,719,913 | 100% | ||
alexvan | 0 | 23,218,139,233 | 50% | ||
danielsaori | 0 | 93,986,276,177 | 100% | ||
freebornsociety | 0 | 9,365,859,226 | 20% | ||
imperfect-one | 0 | 1,288,897,801 | 1% | ||
xplosive | 0 | 3,484,998,444 | 100% | ||
unatalmaria | 0 | 280,802,959 | 100% | ||
mys | 0 | 1,253,687,184 | 1% | ||
monoc | 0 | 23,520,239 | 100% | ||
reggaemuffin | 0 | 9,811,679,083,287 | 100% | ||
suggeelson | 0 | 336,604,789,266 | 100% | ||
yehey | 0 | 16,826,710,729 | 10% | ||
helo | 0 | 29,401,263,622 | 100% | ||
anfitriones | 0 | 10,612,307 | 100% | ||
robofox | 0 | 6,238,652,487 | 100% | ||
cardumen | 0 | 108,203,421 | 100% | ||
ew-and-patterns | 0 | 286,871,977,850 | 35% | ||
changeangels | 0 | 29,421,869 | 100% | ||
avisk | 0 | 1,159,749,901 | 100% | ||
warfeed | 0 | 89,050,640 | 16.5% | ||
theaustrianguy | 0 | 494,832,181,515 | 52% | ||
drorion | 0 | 9,019,747,183 | 100% | ||
abigail-dantes | 0 | 667,644,029,424 | 50% | ||
pixelfan | 0 | 2,314,055,232 | 0.98% | ||
upgoat | 0 | 1,404,328,714 | 100% | ||
resheep | 0 | 433,748,536 | 100% | ||
upcroak | 0 | 133,197,649 | 100% | ||
glitterbooster | 0 | 3,626,181,784 | 30% | ||
aafeng | 0 | 15,265,000,412 | 20% | ||
onetin84 | 0 | 66,189,841,093 | 100% | ||
badham | 0 | 114,655,300 | 50% | ||
make-a-whale | 0 | 52,827,568,612 | 7% | ||
jedigeiss | 0 | 650,280,744,751 | 100% | ||
boontjie | 0 | 4,877,716,524 | 100% | ||
crokkon | 0 | 92,555,826,789 | 100% | ||
kamikaze | 0 | 237,271,401,555 | 15% | ||
espoem | 0 | 17,329,200,257 | 10% | ||
feedyourminnows | 0 | 3,422,413,967 | 4% | ||
isnochys | 0 | 7,230,595,652 | 13% | ||
loshcat | 0 | 3,050,313,002 | 100% | ||
steem-plus | 0 | 10,297,923,032 | 1.41% | ||
jesusj1 | 0 | 33,177,017 | 99% | ||
feo | 0 | 12,658,964 | 100% | ||
utopian-io | 0 | 88,004,298,480,194 | 62.52% | ||
bubbleburst | 0 | 6,197,116,115 | 100% | ||
geekpowered | 0 | 63,277,666,947 | 100% | ||
steembasicincome | 0 | 1,587,642,188,342 | 31% | ||
taug | 0 | 1,160,079,849 | 26% | ||
thomasgift | 0 | 2,108,033,755 | 50% | ||
oliverschmid | 0 | 307,708,111,958 | 100% | ||
amosbastian | 0 | 113,639,401,729 | 58.08% | ||
tdre | 0 | 14,211,088,635 | 100% | ||
yakubenko | 0 | 6,739,693,390 | 100% | ||
robertgelbmann | 0 | 3,706,892,337 | 100% | ||
nealmcspadden | 0 | 81,790,766,539 | 100% | ||
jjay | 0 | 419,985,502 | 100% | ||
steemmonsters | 0 | 2,862,240,882,735 | 45% | ||
neokuduk | 0 | 1,355,061,665 | 100% | ||
lukasmining | 0 | 2,788,157,015 | 50% | ||
literaturk | 0 | 438,620,744 | 100% | ||
michaelizer | 0 | 2,680,524,600 | 100% | ||
maxpatternman | 0 | 29,765,016,283 | 100% | ||
bearded-benjamin | 0 | 27,141,448,680 | 100% | ||
snackaholic | 0 | 6,136,163,573 | 100% | ||
janse | 0 | 551,647,365 | 100% | ||
flugschwein | 0 | 30,820,458,886 | 75% | ||
akifane | 0 | 538,874,408 | 100% | ||
rasit | 0 | 438,689,514 | 100% | ||
themuffinman | 0 | 60,070,874 | 100% | ||
reazuliqbal | 0 | 21,899,871,198 | 35% | ||
maveraunnehr | 0 | 383,509,050 | 100% | ||
schlafhacking | 0 | 106,356,164,189 | 100% | ||
thefunfactory | 0 | 72,795,873 | 100% | ||
someonefun | 0 | 72,795,226 | 100% | ||
funbox | 0 | 72,795,223 | 100% | ||
funlands | 0 | 412,434,431 | 100% | ||
funanime | 0 | 72,795,211 | 100% | ||
funkyfun | 0 | 72,795,201 | 100% | ||
funnyfun | 0 | 72,795,199 | 100% | ||
dmonia | 0 | 72,795,197 | 100% | ||
goldrym | 0 | 72,794,503 | 100% | ||
qeoddrir | 0 | 72,794,491 | 100% | ||
dodrorth | 0 | 72,794,485 | 100% | ||
iedot | 0 | 59,306,523 | 100% | ||
zcool | 0 | 184,469,330 | 10% | ||
codebull | 0 | 411,372,697 | 91% | ||
petertag | 0 | 6,262,739,246 | 100% | ||
nikokafka | 0 | -171,402,803,987 | -100% | ||
ryuna.siege | 0 | 208,723,237 | 100% | ||
gandalfthebrown | 0 | 4,567,643,196 | 100% | ||
ikarus56 | 0 | 687,310,957 | 5% | ||
slobberchops | 0 | 82,868,732,821 | 37% | ||
commonlaw | 0 | 522,599,852 | 6.6% | ||
soundworks | 0 | 835,715,560 | 100% | ||
lipraproductions | 0 | 323,415,832 | 26% | ||
arsadulislam | 0 | 228,446,008 | 45% | ||
k0wsk1 | 0 | 19,639,769,622 | 100% | ||
literaturkritik | 0 | 16,217,125,489 | 100% | ||
elohim4 | 0 | 330,518,220 | 3% | ||
qurator-tier-1-2 | 0 | 39,983,138,689 | 3.5% | ||
wstanley226 | 0 | 2,801,186,639 | 50% | ||
truthly | 0 | 88,909,095 | 100% | ||
fullnodeupdate | 0 | 3,881,005,791 | 100% | ||
dharkotron | 0 | 475,432,287 | 100% | ||
bluengel | 0 | 389,850,662 | 5% | ||
fulltimebot31 | 0 | 123,515,626,551 | 100% | ||
fulltimebot34 | 0 | 123,180,100,290 | 100% | ||
fulltimebot35 | 0 | 123,539,034,617 | 100% | ||
jacekw.dev | 0 | 2,697,063,865 | 50% | ||
fulltimebot51 | 0 | 123,397,500,929 | 100% | ||
perepilichnyy | 0 | 2,029,458,768,378 | 100% | ||
fulltimebot70 | 0 | 122,773,435,009 | 100% | ||
fulltimebot71 | 0 | 123,072,239,300 | 100% | ||
linkerstinker | 0 | 403,462,535 | 50% | ||
steem-ua | 0 | 321,188,236,760 | 2.49% | ||
alvinvoo | 0 | 805,720,154 | 100% | ||
cremisi | 0 | 4,306,813,810 | 20% | ||
philipkavan | 0 | 400,212,012 | 10% | ||
finallynetwork | 0 | 31,047,621,678 | 100% | ||
nurah | 0 | 252,740,824 | 50% | ||
doloknight | 0 | 2,388,097,825 | 100% | ||
kingnosa | 0 | 34,621,718 | 50% | ||
dfen | 0 | 556,000,000 | 100% | ||
steemtank | 0 | 1,983,167,618,883 | 100% | ||
tyruspaladium | 0 | 94,814,113 | 22.5% | ||
lyannanatura | 0 | 81,610,796 | 22.5% | ||
mongshter | 0 | 2,035,834,882 | 100% | ||
marianomariano | 0 | 1,296,160 | 100% | ||
easyimagination | 0 | 41,381,392 | 100% | ||
steem-boster | 0 | 463,260,937 | 100% |
Can anybody write simple "hello world" python script to do one battle? Thanks a lot.
author | coar |
---|---|
permlink | re-holger80-python-steemmonsters-0-0-15-several-improvements-and-new-features-20190619t141044190z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2019-06-19 14:10:48 |
last_update | 2019-06-19 14:10:48 |
depth | 1 |
children | 0 |
last_payout | 2019-06-26 14:10:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 4,231,602,317,552 |
root_title | "python steemmonsters 0.0.15 - Several improvements and new features" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,915,336 |
net_rshares | 0 |
- Great post showing the commands that are implemented in this article. - Good graphics of the expected shell UI. - Lots of work with great commits messages. - Could not find one new line of comments! Maybe next time. Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/1111114). ---- Need help? Write a ticket on https://support.utopian.io/. Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | helo |
---|---|
permlink | re-holger80-python-steemmonsters-0-0-15-several-improvements-and-new-features-20181105t010548091z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/1111114","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2018-11-05 01:05:48 |
last_update | 2018-11-05 01:05:48 |
depth | 1 |
children | 1 |
last_payout | 2018-11-12 01:05:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 7.146 HBD |
curator_payout_value | 2.298 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 709 |
author_reputation | 121,547,934,535,311 |
root_title | "python steemmonsters 0.0.15 - Several improvements and new features" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,691,396 |
net_rshares | 8,472,062,342,959 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
codingdefined | 0 | 6,741,633,065 | 7.5% | ||
utopian-io | 0 | 8,401,680,302,475 | 5.86% | ||
emrebeyler | 0 | 14,465,063,527 | 1% | ||
cheneats | 0 | 313,348,910 | 100% | ||
aydant | 0 | 4,801,933,804 | 50% | ||
amosbastian | 0 | 21,187,713,145 | 11.68% | ||
reazuliqbal | 0 | 7,197,770,595 | 8% | ||
hakancelik | 0 | 6,979,387,825 | 10% | ||
statsexpert | 0 | 6,178,297,156 | 100% | ||
difelice5000 | 0 | 2,516,892,457 | 100% |
Thank you for your review, @helo! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-holger80-python-steemmonsters-0-0-15-several-improvements-and-new-features-20181105t010548091z-20181107t180726z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-11-07 18:07:27 |
last_update | 2018-11-07 18:07:27 |
depth | 2 |
children | 0 |
last_payout | 2018-11-14 18:07:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 56 |
author_reputation | 152,955,367,999,756 |
root_title | "python steemmonsters 0.0.15 - Several improvements and new features" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,867,791 |
net_rshares | 0 |
Wow great, How to use it?
author | khan.dayyanz |
---|---|
permlink | re-holger80-python-steemmonsters-0-0-15-several-improvements-and-new-features-20181103t072240749z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-11-03 07:22:39 |
last_update | 2018-11-03 07:22:39 |
depth | 1 |
children | 0 |
last_payout | 2018-11-10 07:22:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 19,542,110,558,395 |
root_title | "python steemmonsters 0.0.15 - Several improvements and new features" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,587,085 |
net_rshares | 0 |
Give that man a medal.
author | mys |
---|---|
permlink | re-holger80-python-steemmonsters-0-0-15-several-improvements-and-new-features-20181102t194206712z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2018-11-02 19:42:09 |
last_update | 2018-11-02 19:42:09 |
depth | 1 |
children | 0 |
last_payout | 2018-11-09 19:42:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 14,948,575,541,320 |
root_title | "python steemmonsters 0.0.15 - Several improvements and new features" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,561,276 |
net_rshares | 0 |
What are the :1 :2 :3 modifiers on the addteam command?
author | nealmcspadden |
---|---|
permlink | re-holger80-python-steemmonsters-0-0-15-several-improvements-and-new-features-20181102t204022873z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-11-02 20:40:24 |
last_update | 2018-11-02 20:40:24 |
depth | 1 |
children | 0 |
last_payout | 2018-11-09 20:40:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 297,254,610,598,546 |
root_title | "python steemmonsters 0.0.15 - Several improvements and new features" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,563,761 |
net_rshares | 275,909,415 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
penghuren | 0 | 275,909,415 | 100% |
Hi, @holger80! You just got a **1.41%** upvote from SteemPlus! To get higher upvotes, earn more SteemPlus Points (SPP). On your Steemit wallet, check your SPP balance and click on "How to earn SPP?" to find out all the ways to earn. If you're not using SteemPlus yet, please check our last posts in [here](https://steemit.com/@steem-plus) to see the many ways in which SteemPlus can improve your Steem experience on Steemit and Busy.
author | steem-plus |
---|---|
permlink | python-steemmonsters-0-0-15-several-improvements-and-new-features---vote-steemplus |
category | utopian-io |
json_metadata | {} |
created | 2018-11-03 09:08:45 |
last_update | 2018-11-03 09:08:45 |
depth | 1 |
children | 0 |
last_payout | 2018-11-10 09:08:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 435 |
author_reputation | 247,952,188,232,400 |
root_title | "python steemmonsters 0.0.15 - Several improvements and new features" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,590,933 |
net_rshares | 0 |
#### Hi @holger80! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your **UA** account score is currently 7.219 which ranks you at **#71** across all Steem accounts. Your rank has improved 1 places in the last three days (old rank 72). In our last Algorithmic Curation Round, consisting of 275 contributions, your post is ranked at **#18**. ##### Evaluation of your UA score: * Your follower network is great! * The readers appreciate your great work! * You have already shown user engagement, try to improve it further. **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-python-steemmonsters-0-0-15-several-improvements-and-new-features-20181103t013822z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-11-03 01:38:24 |
last_update | 2018-11-03 01:38:24 |
depth | 1 |
children | 0 |
last_payout | 2018-11-10 01:38:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 661 |
author_reputation | 23,214,230,978,060 |
root_title | "python steemmonsters 0.0.15 - Several improvements and new features" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,575,254 |
net_rshares | 0 |
It seems very interesting. I think it can be interesting for people to watch how to play without graphics. Maybe you make live stream once in next time? Posted using [Partiko Android](https://steemit.com/@partiko-android)
author | travoved |
---|---|
permlink | travoved-re-holger80-python-steemmonsters-0-0-15-several-improvements-and-new-features-20181102t181033494z |
category | utopian-io |
json_metadata | {"app":"partiko"} |
created | 2018-11-02 18:10:36 |
last_update | 2018-11-02 18:10:36 |
depth | 1 |
children | 0 |
last_payout | 2018-11-09 18:10:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 223 |
author_reputation | 48,889,279,528,990 |
root_title | "python steemmonsters 0.0.15 - Several improvements and new features" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,557,435 |
net_rshares | 0 |
Hey, @holger80! **Thanks for contributing on Utopian**. Weβre already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-python-steemmonsters-0-0-15-several-improvements-and-new-features-20181105t222031z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-11-05 22:20:33 |
last_update | 2018-11-05 22:20:33 |
depth | 1 |
children | 0 |
last_payout | 2018-11-12 22:20:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 590 |
author_reputation | 152,955,367,999,756 |
root_title | "python steemmonsters 0.0.15 - Several improvements and new features" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,749,548 |
net_rshares | 0 |