|
programmer3666 (OP)
|
 |
July 15, 2025, 10:42:18 PM Last edit: July 23, 2025, 09:37:01 AM by hilariousandco |
|
I just tried it and it worked without problems, everything was fine, although in two tests I did, in one it appeared to me at 79% completed for my next rank, and in the second it appeared to me at 87%, which would make sense if there had been changes in my account, or I had received merits recently but that is not the case, I recommend you carefully review how you are managing those percentages, for the rest, thanks for the initiative!
Thank you boss for the feedback and observation as well. I have fixed that issue it was coming from the formula used and i have made the correction so the system should now handle the percentage calculation accurately. I tested the tool and it looks cool to find out what's the current progress from reaching the next rank and also I checked a few times to see if there's any wrong figures after reading someone reported it gives different numbers and for me it gave the same with the few tests.
I would like to have a feature like desired rank instead of just the next rank so we can track the progress for other ranks than just the next rank. A Good-fun tool and does the job what it's supposed to do.
Thanks boss man I apprecate the feedback, if i am getting you correctly you mean like a feature tha shows progress across all ranks like it will allow users optionaly view their percentage progress to all the ranks? I will look into that feature and see how i can add it as well. Thanks for the recommendation sir.
|
|
|
|
|
Bitcoin Smith
|
 |
July 15, 2025, 10:57:16 PM |
|
~ Thanks boss man I apprecate the feedback, if i am getting you correctly you mean like a feature tha shows progress across all ranks like it will allow users optionaly view their percentage progress to all the ranks? I will look into that feature and see how i can add it as well. Thanks for the recommendation sir.
Exactly, to make it clear currently I'm Sr.Member and your tool only shows the progress to reach the Hero member but what I am suggesting is you can also add an option to click the desired rank and in my case it will be legendary so I can see where I am currently from reaching the highest possible rank that I can achieve.  * Avoid multi posting in a row which is against the forum rules, you can reply to multiple comments in one either by copying the respective quotes and paste it one after another or simply use Insert Quote that you can find in the replying page.
|
▄▄█████████████████▄▄ ▄█████████████████████▄ ███▀▀█████▀▀░░▀▀███████ ███▄░░▀▀░░▄▄██▄░░██████ █████░░░████████░░█████ ████▌░▄░░█████▀░░██████ ███▌░▐█▌░░▀▀▀▀░░▄██████ ███░░▌██░░▄░░▄█████████ ███▌░▀▄▀░░█▄░░█████████ ████▄░░░▄███▄░░▀▀█▀▀███ ██████████████▄▄░░░▄███ ▀█████████████████████▀ ▀▀█████████████████▀▀ | ..Rainbet.com.. CRYPTO CASINO & SPORTSBOOK | | | █▄█▄█▄███████▄█▄█▄█ ███████████████████ ███████████████████ ███████████████████ █████▀█▀▀▄▄▄▀██████ █████▀▄▀████░██████ █████░██░█▀▄███████ ████▄▀▀▄▄▀███████ █████████▄▀▄███ █████████████████ ███████████████████ ███████████████████ ███████████████████ | | | |
▄█████████▄ █████████ ██ ▄▄█░▄░▄█▄░▄░█▄▄ ▀██░▐█████▌░██▀ ▄█▄░▀▀▀▀▀░▄█▄ ▀▀▀█▄▄░▄▄█▀▀▀ ▀█▀░▀█▀
| 10K WEEKLY RACE | | 100K MONTHLY RACE | | | ██
█████
| ███████▄█ ██████████▄ ████████████▄▄ ████▄███████████▄ ██████████████████▄ ░▄█████████████████▄ ▄███████████████████▄ █████████████████▀████ ██████████▀███████████ ▀█████████████████████ ░████████████████████▀ ░░▀█████████████████▀ ████▀▀██████████▀▀ | ████████ ██████████████ |
|
|
|
|
mcdouglasx
|
 |
July 15, 2025, 11:08:13 PM |
|
I just tried it and it worked without problems, everything was fine, although in two tests I did, in one it appeared to me at 79% completed for my next rank, and in the second it appeared to me at 87%, which would make sense if there had been changes in my account, or I had received merits recently but that is not the case, I recommend you carefully review how you are managing those percentages, for the rest, thanks for the initiative!
Thank you boss for the feedback and observation as well. I have fixed that issue it was coming from the formula used and i have made the correction so the system should now handle the percentage calculation accurately. You should consider the activity in percentage, since this is an important factor to calculate the real progress, since maybe you have 300 merits for example and 150 of activity, therefore both figures must be considered for the calculation of progress, I don't know if you already do it, but in Python it would be something like this: def calculate_real_progress(merit, activity): ranks = [ {"name": "Full Member", "min": 100, "max": 250}, {"name": "Senior Member", "min": 250, "max": 500}, {"name": "Hero Member", "min": 500, "max": 1000}, {"name": "Legendary Member","min": 1000, "max": float("inf")} ]
for i in range(len(ranks) - 1): current = ranks[i] next_rank = ranks[i + 1]
if merit < next_rank["min"] or activity < next_rank["min"]: span = next_rank["min"] - current["min"] merit_pct = ((merit - current["min"]) / span) * 100 activity_pct = ((activity - current["min"]) / span) * 100
merit_pct = max(0, min(100, merit_pct)) activity_pct = max(0, min(100, activity_pct))
real_pct = (merit_pct + activity_pct) / 2 missing_pct = 100 - real_pct
return { "current_rank": current["name"], "next_rank": next_rank["name"], "merit_pct": round(merit_pct, 2), "activity_pct": round(activity_pct, 2), "real_pct": round(real_pct, 2), "missing_pct": round(missing_pct, 2) }
return { "current_rank": "Legendary Member", "next_rank": "—", "merit_pct": 100.0, "activity_pct": 100.0, "real_pct": 100.0, "missing_pct": 0.0 }
result = calculate_real_progress(merit=375, activity=375) print(f"Current rank: {result['current_rank']}") print(f"Next rank: {result['next_rank']}") print(f"Merit %: {result['merit_pct']}%") print(f"Activity %: {result['activity_pct']}%") print(f"Real %: {result['real_pct']}%") print(f"Missing %: {result['missing_pct']}%")
|
|
|
|
|
|
| betpanda.io | │ | .
| │ | ▄███████████████████████▄ █████████████████████████ █████████████████████████ ████████▀▀▀▀▀▀███████████ ████▀▀▀█░▀▀░░░░░░▄███████ ████░▄▄█▄▄▀█▄░░░█▄░▄█████ ████▀██▀░▄█▀░░░█▀░░██████ ██████░░▄▀░░░░▐░░░▐█▄████ ██████▄▄█░▀▀░░░█▄▄▄██████ █████████████████████████ █████████████████████████ █████████████████████████ ▀███████████████████████▀ | ▄███████████████████████▄ █████████████████████████ ██████████▀░░░▀██████████ █████████░░░░░░░█████████ ████████░░░░░░░░░████████ ████████░░░░░░░░░████████ █████████▄░░░░░▄█████████ ███████▀▀▀█▄▄▄█▀▀▀███████ ██████░░░░▄░▄░▄░░░░██████ ██████░░░░█▀█▀█░░░░██████ ██████░░░░░░░░░░░░░██████ █████████████████████████ ▀███████████████████████▀ | ▄███████████████████████▄ █████████████████████████ ██████████▀▀▀▀▀▀█████████ ███████▀▀░░░░░░░░░███████ ██████▀░░░░░░░░░░░░▀█████ ██████░░░░░░░░░░░░░░▀████ ██████▄░░░░░░▄▄░░░░░░████ ████▀▀▀▀▀░░░█░░█░░░░░████ ████░▀░▀░░░░░▀▀░░░░░█████ ████░▀░▀▄░░░░░░▄▄▄▄██████ █████░▀░█████████████████ █████████████████████████ ▀███████████████████████▀ | .
SLOT GAMES SPORTS LIVE CASINO | │ | ▄░░▄█▄░░▄ ▀█▀░▄▀▄░▀█▀ ▄▄▄▄▄▄▄▄▄▄▄ █████████████ █░░░░░░░░░░░█ █████████████ ▄▀▄██▀▄▄▄▄▄███▄▀▄ ▄▀▄██▄███▄█▄██▄▀▄ ▄▀▄█▐▐▌███▐▐▌█▄▀▄ ▄▀▄██▀█████▀██▄▀▄ ▄▀▄█████▀▄████▄▀▄ ▀▄▀▄▀█████▀▄▀▄▀ ▀▀▀▄█▀█▄▀▄▀▀ | Regional Sponsor of the Argentina National Team |
|
|
|
joker_josue
Legendary
Offline
Activity: 2198
Merit: 6360
Trêvoid █ No KYC-AML Crypto Swaps
|
 |
July 16, 2025, 06:32:39 AM |
|
Sorry Boss i think the issue is because i am hosting it on a free plan so it keeps getting some minor glitch, but it is displaying fine now
Something doesn't add up. Because either the link is not correct, or the site is down, because I still can't access it. Honestly maybe the issue is from the hosting platform, I mentioned the fact that i am using a free hosting plan so it could be the reason why it occasionally have minor glitches. But i believe its now working fine because i just used it myself and i added new features to it. The new features shows: The number of Activities needed and Merits needed to go to the next rank and also add some nice Visual progress bar to complement the percentages. Since I'd never logged into the site before, a hosting page always popped up, a sort of "human verification" page, but it wasn't at all intuitive. I had to keep checking every link on that page until I found the one that allowed me to continue. It wasn't very practical. It can be an interesting platform that quickly allows users to know what is missing to the next level. You just need to make it more practical and intuitive. Maybe instead of requiring the link, just use the username for the search.
|
.Winna.com.. | │ | ░░░░░░░▄▀▀▀ ░░█ █ █▒█ ▐▌▒▐▌ ▄▄▄█▒▒▒█▄▄▄ █████████████ █████████████ ▀███▀▒▀███▀
▄▄▄▄▄▄▄▄
| | ██████████████ █████████████▄ █████▄████████ ███▄███▄█████▌ ███▀▀█▀▀██████ ████▀▀▀█████▌█ ██████████████ ███████████▌██ █████▀▀▀██████
▄▄▄▄▄▄▄▄
| | | THE ULTIMATE CRYPTO ...CASINO & SPORTSBOOK... ───── ♠ ♥ ♣ ♦ ───── | | | ▄▄██▄▄ ▄▄████████▄▄ ▄██████████████▄ ████████████████ ████████████████ ████████████████ ▀██████████████▀ ▀██████████▀ ▀████▀
▄▄▄▄▄▄▄▄
| | ▄▄▀███▀▄▄ ▄███████████▄ ███████████████ ███▄▄█▄███▄█▄▄███ █████▀█████▀█████ █████████████████ ███████████████ ▀███████████▀ ▀▀█████▀▀
▄▄▄▄▄▄▄▄
| │ | ►
► | .....INSTANT..... WITHDRAWALS ...UP TO 30%... LOSSBACK | │ |
| │ |
PLAY NOW |
|
|
|
ABCbits
Legendary
Offline
Activity: 3416
Merit: 9309
|
 |
July 16, 2025, 08:39:10 AM |
|
To OP, please avoid creating multiple reply in a row. It violate this forum rule. 32. Posting multiple posts in a row (excluding bumps and reserved posts by the thread starter) is not allowed.
In a reply, you can quote/response to multiple other member reply at once. As for your tool/website, i guess it'd be useful for member who don't want to bother make calculation by themself or prefer progress visualization.
|
|
|
|
babo
Legendary
Offline
Activity: 4144
Merit: 5368
si vis pacem, para bellum
|
 |
July 16, 2025, 09:28:41 AM |
|
nice, I liked it I'd be curious to see the code It's true that other tools already exist, but it's always nice to see how others do the same thing. Among other things, I wasn't aware of the render.com service. Thanks for letting me know (though I prefer self-hosted services). 
|
| CHIPS.GG | | | ▄▄███████▄▄ ▄████▀▀▀▀▀▀▀████▄ ▄███▀░▄░▀▀▀▀▀░▄░▀███▄ ▄███░▄▀░░░░░░░░░▀▄░███▄ ▄███░▄░░░▄█████▄░░░▄░███▄ ███░▄▀░░░███████░░░▀▄░███ ███░█░░░▀▀▀▀▀░░░▀░░░█░███ ███░▀▄░▄▀░▄██▄▄░▀▄░▄▀░███ ▀███░▀░▀▄██▀░▀██▄▀░▀░███▀ ▀███░▀▄░░░░░░░░░▄▀░███▀ ▀███▄░▀░▄▄▄▄▄░▀░▄███▀ ▀████▄▄▄▄▄▄▄████▀ █████████████████████████ | | ▄▄███████▄▄ ▄███████████████▄ ▄█▀▀▀▄█████████▄▀▀▀█▄ ▄██████▀▄█▄▄▄█▄▀██████▄ ▄████████▄█████▄████████▄ ████████▄███████▄████████ ███████▄█████████▄███████ ███▄▄▀▀█▀▀█████▀▀█▀▀▄▄███ ▀█████████▀▀██▀█████████▀ ▀█████████████████████▀ ▀███████████████████▀ ▀████▄▄███▄▄████▀ ████████████████████████ | | 3000+ UNIQUE GAMES | | | 12+ CURRENCIES ACCEPTED | | | VIP REWARD PROGRAM | | ◥ | Play Now |
|
|
|
|
programmer3666 (OP)
|
 |
July 16, 2025, 10:59:58 AM |
|
 Hello Everyone, Following up on my previous topic of where i was proposing a Bitcoin Address Verifier tool built specifically for BitcoinTalk:: https://bitcointalk.org/index.php?topic=5549218.0 unfortunately the feedbacks were more of discouragement so i thought of another lighter idea of a Bitcointalk Profile Analyzer & Rank Progress Tracker for Newbies and Existing Members as well.
The Bitcointalk Profile Analyzer & Rank Progress Tracker is designed to scrape, analyze nd visualize any user's public Bitcointalk profile data where a user can paste his/her unique profile link and the system provides detailed insights into the member’s current forum rank, merit and activity levels and their progress toward the next rank This is the working steps:::- The system extracts data directly from a Bitcointalk user’s public profile URL such as::: usernam, numberof posts, activity scores and merit points
- Automatically determines a user's current rank
- Compares the user’s merit and activity levels to Bitcointalk’s official rank thresholds
- Calculates how far the user is from the next rank
- Displays rank progress as a percentage using both activity and merit thresholds.
I hope to make it in two phase and this is phase one of it and in this phase the benefitiaries are mostly the new users and other low rank members like me in the forum!! they can use it to track how close they are to reaching Newbie or Jr. Member status and also tracking of rank progress to motivate posting meaningful content, comments and merit earningIn phase two i hope to add this features for::::- Bounty Hunters so it can help track the required ranks for eligibility in signature campaigns
- Reputation Analysts so theycan easily review rank progression of any public profile
- Forum Moderators & Investigators so theycan quickly fetch merit/activity data without navigating the full forum
It is currently on free hosting space on render i am hoping the community likes it and possibly i might get some voluntary support from individuals to host it officially and eeffect the features i listed out aabove. this is the link it is a limited bandwidth traffic so possibly some people might not get to view before the allocated bandwith get exhusted:: https://branktracker.onrender.com/Based on the Recommendation from the positive replies I got i just added a new feature, Now users can just click on a Toggle and show their progress accross all ranks. It hghlights the Activity needed and Meritts needed to go to those ranks
 The next feature i will work on is to see how Username can also be used in the input field as a search parameter.
|
|
|
|
|
DYING_S0UL
|
 |
July 16, 2025, 11:40:30 AM |
|
Nice work OP. I just tried it and it worked without any issues. Anyway, do you think people would support your project in the long term? We already have similar sites (ninjastic) that is fulfilling what your tool is offering. Of course that doesn't mean you cannot have your own idea and develop the project. In that sense, I think you should consider adding features that isn't available in the current version in these similar tools. Something unique.  p.s: avoid posting multiple times in a row. 
|
|
|
|
|
|
| . betpanda.io | │ |
ANONYMOUS & INSTANT .......ONLINE CASINO....... | │ | ▄███████████████████████▄ █████████████████████████ █████████████████████████ ████████▀▀▀▀▀▀███████████ ████▀▀▀█░▀▀░░░░░░▄███████ ████░▄▄█▄▄▀█▄░░░█▄░▄█████ ████▀██▀░▄█▀░░░█▀░░██████ ██████░░▄▀░░░░▐░░░▐█▄████ ██████▄▄█░▀▀░░░█▄▄▄██████ █████████████████████████ █████████████████████████ █████████████████████████ ▀███████████████████████▀ | ▄███████████████████████▄ █████████████████████████ ██████████▀░░░▀██████████ █████████░░░░░░░█████████ ████████░░░░░░░░░████████ ████████░░░░░░░░░████████ █████████▄░░░░░▄█████████ ███████▀▀▀█▄▄▄█▀▀▀███████ ██████░░░░▄░▄░▄░░░░██████ ██████░░░░█▀█▀█░░░░██████ ██████░░░░░░░░░░░░░██████ █████████████████████████ ▀███████████████████████▀ | ▄███████████████████████▄ █████████████████████████ ██████████▀▀▀▀▀▀█████████ ███████▀▀░░░░░░░░░███████ ██████▀░░░░░░░░░░░░▀█████ ██████░░░░░░░░░░░░░░▀████ ██████▄░░░░░░▄▄░░░░░░████ ████▀▀▀▀▀░░░█░░█░░░░░████ ████░▀░▀░░░░░▀▀░░░░░█████ ████░▀░▀▄░░░░░░▄▄▄▄██████ █████░▀░█████████████████ █████████████████████████ ▀███████████████████████▀ | .
SLOT GAMES ....SPORTS.... LIVE CASINO | │ | ▄░░▄█▄░░▄ ▀█▀░▄▀▄░▀█▀ ▄▄▄▄▄▄▄▄▄▄▄ █████████████ █░░░░░░░░░░░█ █████████████ ▄▀▄██▀▄▄▄▄▄███▄▀▄ ▄▀▄██▄███▄█▄██▄▀▄ ▄▀▄█▐▐▌███▐▐▌█▄▀▄ ▄▀▄██▀█████▀██▄▀▄ ▄▀▄█████▀▄████▄▀▄ ▀▄▀▄▀█████▀▄▀▄▀ ▀▀▀▄█▀█▄▀▄▀▀ | Regional Sponsor of the Argentina National Team |
|
|
|
babo
Legendary
Offline
Activity: 4144
Merit: 5368
si vis pacem, para bellum
|
 |
July 16, 2025, 11:55:14 AM |
|
OP quote first message but don't reply me about the code
Having the open source code is important in my opinion, it is not mandatory without a doubt, I never force anyone given my nature as a liberal person
Let me know if you'd like to take a look at it out of curiosity.
|
| CHIPS.GG | | | ▄▄███████▄▄ ▄████▀▀▀▀▀▀▀████▄ ▄███▀░▄░▀▀▀▀▀░▄░▀███▄ ▄███░▄▀░░░░░░░░░▀▄░███▄ ▄███░▄░░░▄█████▄░░░▄░███▄ ███░▄▀░░░███████░░░▀▄░███ ███░█░░░▀▀▀▀▀░░░▀░░░█░███ ███░▀▄░▄▀░▄██▄▄░▀▄░▄▀░███ ▀███░▀░▀▄██▀░▀██▄▀░▀░███▀ ▀███░▀▄░░░░░░░░░▄▀░███▀ ▀███▄░▀░▄▄▄▄▄░▀░▄███▀ ▀████▄▄▄▄▄▄▄████▀ █████████████████████████ | | ▄▄███████▄▄ ▄███████████████▄ ▄█▀▀▀▄█████████▄▀▀▀█▄ ▄██████▀▄█▄▄▄█▄▀██████▄ ▄████████▄█████▄████████▄ ████████▄███████▄████████ ███████▄█████████▄███████ ███▄▄▀▀█▀▀█████▀▀█▀▀▄▄███ ▀█████████▀▀██▀█████████▀ ▀█████████████████████▀ ▀███████████████████▀ ▀████▄▄███▄▄████▀ ████████████████████████ | | 3000+ UNIQUE GAMES | | | 12+ CURRENCIES ACCEPTED | | | VIP REWARD PROGRAM | | ◥ | Play Now |
|
|
|
|
programmer3666 (OP)
|
 |
July 16, 2025, 12:55:55 PM |
|
OP quote first message but don't reply me about the code
Having the open source code is important in my opinion, it is not mandatory without a doubt, I never force anyone given my nature as a liberal person
Let me know if you'd like to take a look at it out of curiosity.
Sorry boss! I was holding on to that response because i am trying to stabilize the system for now by adding more features and also addressing some minor glitches but i have sent you a personal message in that regard.
|
|
|
|
|
Alone055
|
 |
July 16, 2025, 01:39:46 PM |
|
Nice tool, OP. However, I've noticed a small mistake when I checked my profile:  Since it requires you to have 1000 merits to become a Legendary member, someone having 598 (which I have) should have completed 59.8%, but it shows 60%. It seems that it's rounding it up, but I think it would be better if you allow the percentages shown to have decimal points for better accuracy. Also, as suggested by someone earlier, it would be easier if you allow searching with usernames as well, instead of the profile link of a user. Overall, it's good, just keep adding new features. 
|
|
|
|
|
Bitcoin Smith
|
 |
July 16, 2025, 05:05:11 PM |
|
~
Looks like you added, what I suggested before, and it looks cool too.  I have a suggestion about the toggle button, Here's how it looks now  Toggle button is not that much visible unless we give a closer look to it, so try adding a border with a bolder look or even a different color can work fine.
|
▄▄█████████████████▄▄ ▄█████████████████████▄ ███▀▀█████▀▀░░▀▀███████ ███▄░░▀▀░░▄▄██▄░░██████ █████░░░████████░░█████ ████▌░▄░░█████▀░░██████ ███▌░▐█▌░░▀▀▀▀░░▄██████ ███░░▌██░░▄░░▄█████████ ███▌░▀▄▀░░█▄░░█████████ ████▄░░░▄███▄░░▀▀█▀▀███ ██████████████▄▄░░░▄███ ▀█████████████████████▀ ▀▀█████████████████▀▀ | ..Rainbet.com.. CRYPTO CASINO & SPORTSBOOK | | | █▄█▄█▄███████▄█▄█▄█ ███████████████████ ███████████████████ ███████████████████ █████▀█▀▀▄▄▄▀██████ █████▀▄▀████░██████ █████░██░█▀▄███████ ████▄▀▀▄▄▀███████ █████████▄▀▄███ █████████████████ ███████████████████ ███████████████████ ███████████████████ | | | |
▄█████████▄ █████████ ██ ▄▄█░▄░▄█▄░▄░█▄▄ ▀██░▐█████▌░██▀ ▄█▄░▀▀▀▀▀░▄█▄ ▀▀▀█▄▄░▄▄█▀▀▀ ▀█▀░▀█▀
| 10K WEEKLY RACE | | 100K MONTHLY RACE | | | ██
█████
| ███████▄█ ██████████▄ ████████████▄▄ ████▄███████████▄ ██████████████████▄ ░▄█████████████████▄ ▄███████████████████▄ █████████████████▀████ ██████████▀███████████ ▀█████████████████████ ░████████████████████▀ ░░▀█████████████████▀ ████▀▀██████████▀▀ | ████████ ██████████████ |
|
|
|
dkbit98
Legendary
Offline
Activity: 2772
Merit: 8292
|
 |
July 16, 2025, 05:57:37 PM |
|
I think you should have the option for adding members by entering their usernames, not only profile URL links. You should also think about providing some new interesting features if you want to compete with proven and tested projects like BPIP.
|
|
|
|
|
programmer3666 (OP)
|
 |
July 17, 2025, 07:42:05 PM |
|
~
Looks like you added, what I suggested before, and it looks cool too.  I have a suggestion about the toggle button, Here's how it looks now  Toggle button is not that much visible unless we give a closer look to it, so try adding a border with a bolder look or even a different color can work fine. I have add some styling to the toggle section, it now appears boldly as a button under the check progress button. Regarding the asect of utilizing username in the search field, i am currently working on it and i will finalize it and make it functional soon.
|
|
|
|
babo
Legendary
Offline
Activity: 4144
Merit: 5368
si vis pacem, para bellum
|
 |
July 18, 2025, 08:22:50 AM |
|
you did a really good job, well done Even if there are similar services it doesn't matter, it's worth doing your own to learn and do something new, maybe it will be more beautiful graphically or will have some intuition on the UX side so well done, keep it up -- update -- i see the code you send me by pm, is good starting point remember to read some books abount pattern and design of code (example MCV)
|
| CHIPS.GG | | | ▄▄███████▄▄ ▄████▀▀▀▀▀▀▀████▄ ▄███▀░▄░▀▀▀▀▀░▄░▀███▄ ▄███░▄▀░░░░░░░░░▀▄░███▄ ▄███░▄░░░▄█████▄░░░▄░███▄ ███░▄▀░░░███████░░░▀▄░███ ███░█░░░▀▀▀▀▀░░░▀░░░█░███ ███░▀▄░▄▀░▄██▄▄░▀▄░▄▀░███ ▀███░▀░▀▄██▀░▀██▄▀░▀░███▀ ▀███░▀▄░░░░░░░░░▄▀░███▀ ▀███▄░▀░▄▄▄▄▄░▀░▄███▀ ▀████▄▄▄▄▄▄▄████▀ █████████████████████████ | | ▄▄███████▄▄ ▄███████████████▄ ▄█▀▀▀▄█████████▄▀▀▀█▄ ▄██████▀▄█▄▄▄█▄▀██████▄ ▄████████▄█████▄████████▄ ████████▄███████▄████████ ███████▄█████████▄███████ ███▄▄▀▀█▀▀█████▀▀█▀▀▄▄███ ▀█████████▀▀██▀█████████▀ ▀█████████████████████▀ ▀███████████████████▀ ▀████▄▄███▄▄████▀ ████████████████████████ | | 3000+ UNIQUE GAMES | | | 12+ CURRENCIES ACCEPTED | | | VIP REWARD PROGRAM | | ◥ | Play Now |
|
|
|
|
osasshem
|
 |
July 18, 2025, 08:43:23 AM |
|
Wow, this is a very important tool you have created, I just accessed the site and found out what is needed for me to rank up. It is a very nice tool for the community. Good job mate, I like it and I am sure there will be other members of the forum that will like the service this tool provides.
|
|
|
|
Out of mind
Sr. Member
  
Offline
Activity: 994
Merit: 402
I like to treat everyone as a friend 🔹
|
 |
July 18, 2025, 11:47:52 AM |
|
Well, I used your tool today, I think it's a really great service. This score processing ticker you made is really amazing, anyway I think it's great and you can achieve even better things in the future. 
|
|
|
|
|
|
| betpanda.io | │ | .
| │ | ▄███████████████████████▄ █████████████████████████ █████████████████████████ ████████▀▀▀▀▀▀███████████ ████▀▀▀█░▀▀░░░░░░▄███████ ████░▄▄█▄▄▀█▄░░░█▄░▄█████ ████▀██▀░▄█▀░░░█▀░░██████ ██████░░▄▀░░░░▐░░░▐█▄████ ██████▄▄█░▀▀░░░█▄▄▄██████ █████████████████████████ █████████████████████████ █████████████████████████ ▀███████████████████████▀ | ▄███████████████████████▄ █████████████████████████ ██████████▀░░░▀██████████ █████████░░░░░░░█████████ ████████░░░░░░░░░████████ ████████░░░░░░░░░████████ █████████▄░░░░░▄█████████ ███████▀▀▀█▄▄▄█▀▀▀███████ ██████░░░░▄░▄░▄░░░░██████ ██████░░░░█▀█▀█░░░░██████ ██████░░░░░░░░░░░░░██████ █████████████████████████ ▀███████████████████████▀ | ▄███████████████████████▄ █████████████████████████ ██████████▀▀▀▀▀▀█████████ ███████▀▀░░░░░░░░░███████ ██████▀░░░░░░░░░░░░▀█████ ██████░░░░░░░░░░░░░░▀████ ██████▄░░░░░░▄▄░░░░░░████ ████▀▀▀▀▀░░░█░░█░░░░░████ ████░▀░▀░░░░░▀▀░░░░░█████ ████░▀░▀▄░░░░░░▄▄▄▄██████ █████░▀░█████████████████ █████████████████████████ ▀███████████████████████▀ | .
SLOT GAMES SPORTS LIVE CASINO | │ | ▄░░▄█▄░░▄ ▀█▀░▄▀▄░▀█▀ ▄▄▄▄▄▄▄▄▄▄▄ █████████████ █░░░░░░░░░░░█ █████████████ ▄▀▄██▀▄▄▄▄▄███▄▀▄ ▄▀▄██▄███▄█▄██▄▀▄ ▄▀▄█▐▐▌███▐▐▌█▄▀▄ ▄▀▄██▀█████▀██▄▀▄ ▄▀▄█████▀▄████▄▀▄ ▀▄▀▄▀█████▀▄▀▄▀ ▀▀▀▄█▀█▄▀▄▀▀ | Regional Sponsor of the Argentina National Team |
|
|
|
babo
Legendary
Offline
Activity: 4144
Merit: 5368
si vis pacem, para bellum
|
 |
July 20, 2025, 08:00:00 AM |
|
Well, I used your tool today, I think it's a really great service. This score processing ticker you made is really amazing, anyway I think it's great and you can achieve even better things in the future.  Yes, I like it because it's aesthetically pleasing, maybe it's because I do really bad things. and then, in my silly opinion, it represents a good way to gain experience which then helps with a probable job later Before working I did years and years of experiments, programs, website and so on Even today I don't stop and I continue to experiment
|
| CHIPS.GG | | | ▄▄███████▄▄ ▄████▀▀▀▀▀▀▀████▄ ▄███▀░▄░▀▀▀▀▀░▄░▀███▄ ▄███░▄▀░░░░░░░░░▀▄░███▄ ▄███░▄░░░▄█████▄░░░▄░███▄ ███░▄▀░░░███████░░░▀▄░███ ███░█░░░▀▀▀▀▀░░░▀░░░█░███ ███░▀▄░▄▀░▄██▄▄░▀▄░▄▀░███ ▀███░▀░▀▄██▀░▀██▄▀░▀░███▀ ▀███░▀▄░░░░░░░░░▄▀░███▀ ▀███▄░▀░▄▄▄▄▄░▀░▄███▀ ▀████▄▄▄▄▄▄▄████▀ █████████████████████████ | | ▄▄███████▄▄ ▄███████████████▄ ▄█▀▀▀▄█████████▄▀▀▀█▄ ▄██████▀▄█▄▄▄█▄▀██████▄ ▄████████▄█████▄████████▄ ████████▄███████▄████████ ███████▄█████████▄███████ ███▄▄▀▀█▀▀█████▀▀█▀▀▄▄███ ▀█████████▀▀██▀█████████▀ ▀█████████████████████▀ ▀███████████████████▀ ▀████▄▄███▄▄████▀ ████████████████████████ | | 3000+ UNIQUE GAMES | | | 12+ CURRENCIES ACCEPTED | | | VIP REWARD PROGRAM | | ◥ | Play Now |
|
|
|
|
SuperBitMan
|
 |
July 20, 2025, 10:33:06 AM |
|
This is a good one programmer3666 I love you because you are doing something like this, I believe you will solve more bigger problems in this forum with you inventions, I decided to try it and it worked and I most say I love it, however at first when I tried the site it was difficult for me to access but I believe it was network from my own end because I just tried it today again and it was very easy and quick to access.
This is actually or mainly for newbie's it will really help them keep track of there growth in the forum, yeah other older members in the forum can use it too but those older members has already fine a way to keep track of there growth in the forum before now. So I will advise you also post this thread in the beginners board since that is the board Newbies mostly visit to know somethings about the forum. Just a suggestion.
|
|
|
|
|
|
| betpanda.io | │ | .
| │ | ▄███████████████████████▄ █████████████████████████ █████████████████████████ ████████▀▀▀▀▀▀███████████ ████▀▀▀█░▀▀░░░░░░▄███████ ████░▄▄█▄▄▀█▄░░░█▄░▄█████ ████▀██▀░▄█▀░░░█▀░░██████ ██████░░▄▀░░░░▐░░░▐█▄████ ██████▄▄█░▀▀░░░█▄▄▄██████ █████████████████████████ █████████████████████████ █████████████████████████ ▀███████████████████████▀ | ▄███████████████████████▄ █████████████████████████ ██████████▀░░░▀██████████ █████████░░░░░░░█████████ ████████░░░░░░░░░████████ ████████░░░░░░░░░████████ █████████▄░░░░░▄█████████ ███████▀▀▀█▄▄▄█▀▀▀███████ ██████░░░░▄░▄░▄░░░░██████ ██████░░░░█▀█▀█░░░░██████ ██████░░░░░░░░░░░░░██████ █████████████████████████ ▀███████████████████████▀ | ▄███████████████████████▄ █████████████████████████ ██████████▀▀▀▀▀▀█████████ ███████▀▀░░░░░░░░░███████ ██████▀░░░░░░░░░░░░▀█████ ██████░░░░░░░░░░░░░░▀████ ██████▄░░░░░░▄▄░░░░░░████ ████▀▀▀▀▀░░░█░░█░░░░░████ ████░▀░▀░░░░░▀▀░░░░░█████ ████░▀░▀▄░░░░░░▄▄▄▄██████ █████░▀░█████████████████ █████████████████████████ ▀███████████████████████▀ | .
SLOT GAMES SPORTS LIVE CASINO | │ | ▄░░▄█▄░░▄ ▀█▀░▄▀▄░▀█▀ ▄▄▄▄▄▄▄▄▄▄▄ █████████████ █░░░░░░░░░░░█ █████████████ ▄▀▄██▀▄▄▄▄▄███▄▀▄ ▄▀▄██▄███▄█▄██▄▀▄ ▄▀▄█▐▐▌███▐▐▌█▄▀▄ ▄▀▄██▀█████▀██▄▀▄ ▄▀▄█████▀▄████▄▀▄ ▀▄▀▄▀█████▀▄▀▄▀ ▀▀▀▄█▀█▄▀▄▀▀ | Regional Sponsor of the Argentina National Team |
|
|
|
|
*Ace*
|
 |
July 20, 2025, 10:43:18 AM |
|
First of all I want to congratulate you, this tool is beautiful especially for us who are not yet legendary members  This feature is truly a gem  I hope your project is successful
|
|
|
|
|