Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,194,686 members, 7,955,559 topics. Date: Sunday, 22 September 2024 at 09:17 AM

Ofejiro20's Posts

Nairaland Forum / Ofejiro20's Profile / Ofejiro20's Posts

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 15 pages)

Programming / Re: Script Needed To Run On A Gaming Platform by Ofejiro20: 1:07pm On Aug 21
KidKonnekt:
I understand your point. I've been scammed here too a couple of years ago when it was difficult to receive money from abroad as freelancers in Nigeria. Twice, the so-called exchangers here defrauded me of $1,800 and nothing was done by the moderators. Their profiles continued to create topics in different sections, looking for their next victims.

That said, I think your tone of communication should still be professional because it sounded a bit more confrontational.

If you haven't found someone to do the job, let me know.

Sorry I've not been online lately. Please send me a DM boss
Programming / Re: Script Needed To Run On A Gaming Platform by Ofejiro20: 7:05am On Aug 20
KidKonnekt:
I understand exactly what you're trying to say. I can write whatever script you want me to write and deploy it.

But like someone else said before, you're not sounding like you really need someone to do this for you. You're sounding as if you're doing me a favor if I should accept to do the job for you.

Anyways, I hope you find the kind of person you're looking for. Just as you select the kind of programmer you want, I also select the kind of people I work with.


With all due respect Sir I never sounded as you claim. The only request I asked is that I'm not making an advance payment and that shouldn't become a problem to anyone who is trusts his job and believes he can handle it. ..


I told you I've been scammed twice and they both blocked me for no reasons. If you were in my position, would you release advance payment again?


I think it's clear the programming section of the forum is breeding lots of scammers and no one wish to address it but I'll rest my case now
Programming / Re: Script Needed To Run On A Gaming Platform by Ofejiro20: 5:00am On Aug 19
KidKonnekt:
Nodejs is built on JavaScript na, so yes, the website is built on JavaScript. I already did my research to understand how the site was built first. I only need the OP to tell me what the site does, and what he wants to be done.

The site as you can see is an online casino enabled platform. The thing is I can't keep my mobile device on screen standby mode to keep running games, moreover my internet connection is not strong enough to keep running games either....so I thought of using an automated bot through script to keep my bets running till I crash out of funds...


Also, this is not the script which I planned to use. I only dropped this script to give a clue the kind of programming language that works on the site.

If you understand this part, kindly send a DM let's see if we can work together.


Kindly note I'm not making advance payment. I'll make full payment once job has been completed
Programming / Re: Script Needed To Run On A Gaming Platform by Ofejiro20: 5:47am On Aug 18
Ofejiro20:



var config = {
baseBet: {
label: 'Base Bet',
value: currency.minAmount,
type: 'number'
},
startingChance: {
label: 'Starting Chance',
value: 0.1,
type: 'number'
},
}

var chance = config.startingChance.value;
var currentPayout = ((1/chance)*99);

var losecount = 0;
var betcount = 0;
var varix = 1.025;

var previousBet = currentBet;

var runningbalance = currency.amount;
var originalbalance = currency.amount;
var baseBet = config.baseBet.value;
var currentBet = baseBet;

function main () {
game.onBet = function () {
game.bet(currentBet, currentPayout).then(function(payout) {
runningbalance -= currentBet;
previousBet = currentBet;
betcount += (1);

if (payout > 1) {
var netwin = currentBet * currentPayout;
runningbalance += netwin;

currentBet = baseBet;
losecount = 0;
chance = 0.1;
varix = 1.025;

} else {

if (losecount >= 190) {
varix = 1.05;
}
if (losecount >= 260) {
varix = 1.066;
}

losecount += (1);
currentBet = (previousBet * varix);

chance += (0.01);

}

currentPayout = ((1/chance)*99);

if (betcount % 100 == 0) {
logSummary();
}

log.info('Betting: ' + currentBet.toFixed(7) + ' ' + ' X ' + ' ' + currentPayout.toFixed(2));
});
}
}

function logSummary() {
var netNumber = runningbalance - originalbalance;
var netPecentage = (netNumber / originalbalance) * 100;

if (originalbalance < runningbalance) {
log.success('Total Profit: ' + netNumber.toFixed(7) + '(' + netPecentage.toFixed(2) + '%)');
} else {
log.error('Total Profit: ' + netNumber.toFixed(7) + '(' + netPecentage.toFixed(2) + '%)');
}
}

This script was shared by a friend but mine will be a little bit different. I hope this is enough clue to help capable hands to complete the job
Programming / Re: Script Needed To Run On A Gaming Platform by Ofejiro20: 5:44am On Aug 18
bassdow:
don't be quick to conlcude Ooo. It equally might be using Javascript server side and if you don't know things such as nodeJs, you fit jam Ooo.
Another is, you don't know exactly what OP wants and that site includes blockChain technology.

Think it would help if OP shares source code or at least languages the script is built on.


var config = {
baseBet: {
label: 'Base Bet',
value: currency.minAmount,
type: 'number'
},
startingChance: {
label: 'Starting Chance',
value: 0.1,
type: 'number'
},
}

var chance = config.startingChance.value;
var currentPayout = ((1/chance)*99);

var losecount = 0;
var betcount = 0;
var varix = 1.025;

var previousBet = currentBet;

var runningbalance = currency.amount;
var originalbalance = currency.amount;
var baseBet = config.baseBet.value;
var currentBet = baseBet;

function main () {
game.onBet = function () {
game.bet(currentBet, currentPayout).then(function(payout) {
runningbalance -= currentBet;
previousBet = currentBet;
betcount += (1);

if (payout > 1) {
var netwin = currentBet * currentPayout;
runningbalance += netwin;

currentBet = baseBet;
losecount = 0;
chance = 0.1;
varix = 1.025;

} else {

if (losecount >= 190) {
varix = 1.05;
}
if (losecount >= 260) {
varix = 1.066;
}

losecount += (1);
currentBet = (previousBet * varix);

chance += (0.01);

}

currentPayout = ((1/chance)*99);

if (betcount % 100 == 0) {
logSummary();
}

log.info('Betting: ' + currentBet.toFixed(7) + ' ' + ' X ' + ' ' + currentPayout.toFixed(2));
});
}
}

function logSummary() {
var netNumber = runningbalance - originalbalance;
var netPecentage = (netNumber / originalbalance) * 100;

if (originalbalance < runningbalance) {
log.success('Total Profit: ' + netNumber.toFixed(7) + '(' + netPecentage.toFixed(2) + '%)');
} else {
log.error('Total Profit: ' + netNumber.toFixed(7) + '(' + netPecentage.toFixed(2) + '%)');
}
}
Programming / Re: Script Needed To Run On A Gaming Platform by Ofejiro20: 5:41am On Aug 18
KidKonnekt:


I did a quick check on the platform and found that the platform was built with heavy usage of JavaScript libraries. With JavaScript, you can add/manipulate the website (as allowed by the developers) to do virtually anything you want to do.

What function(s) do you want the script to have?

You can call me let's discuss - 09078344265

Yes the platform was built on JavaScript and the script should run 24/7 on the platform too. The script should be able to stake on games in progression and regression style which I'll give to you privately and not on an open forum here.
Programming / Re: Script Needed To Run On A Gaming Platform by Ofejiro20: 10:37pm On Aug 15
VinCheckr:

Lost my email of this account, just drop some hints of the features so that no one wastes time contacting you if they can't do it.

It's a gaming platform which is related to casino and I already dropped it on the thread. I think these information are already enough for someone who can truly handle the job mere looking at it...
Programming / Re: Script Needed To Run On A Gaming Platform by Ofejiro20: 6:22pm On Aug 14
VinCheckr:
At least write the features of the script.
Send a DM bro
Programming / Re: Script Needed To Run On A Gaming Platform by Ofejiro20: 10:23am On Aug 14
It's unfortunate majority of the developers who have contacted me are asking for half payment and I've been scammed by one of them. Please and please, I'm no longer giving upfront payment of any kind.


Once the job has been completed, you send a screen record of the job so I can see for evidence before I make payment.


I'm looking for a long term partnership with whoever could complete the job.
Programming / Re: Script Needed To Run On A Gaming Platform by Ofejiro20: 3:55am On Aug 14
Please I need more applicants. Majority of developers who contacted me were unable to complete the job and I don't know why...
Programming / Re: Script Needed To Run On A Gaming Platform by Ofejiro20: 3:54am On Aug 14
classicben3:


Contact me we.share@yahoo.com I have the gaming script or can code you one.

Sent...
Programming / Script Needed To Run On A Gaming Platform by Ofejiro20: 6:21pm On Aug 13
I'm looking for a programmer who can write script on a gaming platform. The script could be used on an rdp and it is expected to run 24/7 on the platform.

The name of the platform is bc dott game.
Phones / Re: Google Pixel 6A Battery Is Terrific. Damn by Ofejiro20: 10:41pm On Sep 22, 2023
Chasito:
Your phone still dey learn work grin
Which phone product is this bro?
Romance / Re: Reality Every Guy Need To Know ( STRICTLY REDPILL) ... by Ofejiro20: 11:33pm On Feb 24, 2023
Guys, I need your advice. I'm the type of guy who loves to have sex frequently especially with the woman I'm attracted to and I informed my girlfriend about it. She came to stay at my place for about a week and this is the 5th day ...


Just this evening, she was doing something which I don't understand. Previously, she said that I injured her during our last s_x so she's going to do a water treatment. She sat down on a boiled water which contains salt and detoil for about 10 minutes or so....


We started a conversation shortly after she has completed her procedure and then she Futher concluded that "man nor fit Bleep her everyday"... directly to my face.


I felt insulted because she's laying down rules which I can't cope with at the early start of the relationship...I don't know if she's trying to test to see if I truly love her but that's not a good sign . I'm still new to the redpill so my leaders should throw some advice if any. Respect!

8 Likes

Romance / Re: Reality Every Guy Need To Know ( STRICTLY REDPILL) ... by Ofejiro20: 12:15pm On Jan 13, 2023
AlphaAlex:
I hope you know from her previous behavior she doesn’t genuinely desire you trying to keep the sex from you may also be a signal that you probably didn’t perform well but anyway.

Now if you begged her for a long time to be your girlfriend that’s one sign she doesn’t genuinely desire you,

if you weren’t having sex with her before you made her your girlfriend that’s another sign she doesn’t genuinely desire you bro , right now she’s probably acting submissively because she’s in a bad spot financially or something like that.


Now evaluate your situation according to what I wrote above and then let’s know how it all started for now just Go about your life like normal, go outside and get other girls so she’ll not use sex and do yanga for you
You got it mixed up bro. We've been having sex since the first day she stepped her foot in my house till she suddenly changed. She claims that I'll see her finish that's why she stopped coming to my place for about one month.


One thing I know is that all women does it whenever they want a future with you. She wants a long term relationship from my guess but she felt she made a mistake to quickly give in to sex with me without giving me tough time before eating her cookie...lol


At the moment, she says she's doing 21 days prayed and fasting so she begged me to abstain from sex with her etc. I don't want to force her so she won't feel like I'm sex starved.


Dunno but I think she's trying to play the good gal part to me, like a wife material stuff. She always talks about marriage and how many kids she'll love to have for me etc and I just have to flow with her make work nor spoil..


I'm asking cos I don't know it all. As much as I like her, I'm trying to stay game all through this process with her. I believe someone has something to say regarding this situation

4 Likes

Romance / Re: Reality Every Guy Need To Know ( STRICTLY REDPILL) ... by Ofejiro20: 9:43am On Jan 13, 2023
GM Guys, I need your help in tackling this situation with my new gf. We started slowly and we had sex the first day she came to my place meanwhile I live alone. She insisted we use condom and that's what we've been using till this day. She says that if she won't abort any pregnancy for me so that's why she's careful to use condom and it was a nice Idea for me anyway. I'm not even ready to father a child at the moment.



After two times of meeting, she suddenly stopped coming to my place whenever I invited her upto a month..I endured this new behaviour till I learnt the power of ignoring women whenever they try to manipulate man. Could remember we had heated argument on the phone about this issue and she finally opened up in her words "u won see me finish". Sounds like a big joke to me that a lady whom we've had sex twice could stop coming to my place all because she doesn't want me to see her finish? Lol women and wahala.


Ignored her for almost 2 weeks and she texted me on Christmas day. I knew this was her method of apology so I called her and we talked, ever since then she has never refused my invitation sometimes she'll ask if I want her to come cook for me etc.



I don't trust any gal not even this one. She uses Nokia touch light fone cos her iPhone was stolen about a year ago. Meanwhile, she carries her fone to the kitchen, bathroom, room everywhere in my house whenever we're together. I noticed it but I just pretend as if I know nothing.


Did I forget to say that she picks up my call whenever I call her? And she's no longer working at the moment cos her work is temporary. Last time, she talked about learning handiwork so she can keep busy etc.


I don't know if she's sticking with me so I'll buy her a good phone. I don't know where I stand with this gal cos I know I'm not the only guy Wen dey knack her. I've stood my ground not minding her opinion but I need some advice from the house make I nor loseguard. Thanks Fam

12 Likes

Investment / Re: . by Ofejiro20: 12:15pm On May 25, 2022
JoshJay1:
Hi you want to join stepn but can't afford the sneaker? Dm me or drop your number to join with me
Maximum of 30 persons only
Must have 100usd
I'm ready to pay back your capital if anything happens.
Good Afternoon bro
I want us to talk about this Crypto Arbitrage which u talked about in the other thread. How can I reach u bro?
Investment / Re: 2022 Trending Online Investment: Learn, Earn And Teach Others. by Ofejiro20: 5:38am On Apr 18, 2022
08175169541
Investment / Re: How To Sell Crypto And Make Upto 3.6% Profit Daily On COTP by Ofejiro20: 7:36am On Apr 10, 2022
I've been trying to withdraw for the second time and they're requesting for facial authentication holding ID card close to my face. Is anyone experiencing same issue?
Phones / Re: Recommendations For A Good Phone To Purchase by Ofejiro20: 10:42pm On Nov 02, 2021
Thank alot bro. Please I need more honest recommendations��
Phones / Recommendations For A Good Phone To Purchase by Ofejiro20: 9:21pm On Nov 02, 2021
Hi Guys�

Please I’m in need of advice from gurus in the house. I’ve a budget of not more than 180k and I’m looking for a good phone to buy but it must be android not an iPhone please……



My Android phone is on the verge of dying as it gets so hot whenever I use it for no reasons, and it turns gets hotter when I leave it for like 5 mins to charge with using it…. I had to get a small fan to keep it cool so that I can manage it till I get a new phone… lol

So my Specifications for an Android are;

1. Phone must be able to withstand stress without getting to hot.
2. Must have a capacity Storage of at least 4gb Ram and at least 128gb ROM
3. Great Internet Connections even in remote areas where network is a bit poor.
4. Battery capacity of at least 4500 mah… I might consider a capacity of least 4000 mah of the I’m left with no other
5. Not a forgetting a good camera for nice pictures

This are just the basics that I need for now… Recommendations should be on personal experience not marketing strategies please.


Thanks I’m advance��
Health / Re: Thank you by Ofejiro20: 11:23pm On Sep 13, 2021
Nairalando:
Hi guys! I got this irritation on my back like eczema... what's it and how can I treat it please? I've been applying Vixa Skineal and Funbact-A but it's showing little to no effect.
are u related to Orogun and u ate their forbidden foods in the process? I heard this kind of reaction happens to those who break their tradition..

1 Like

Investment / Re: Cryptocurrency group For Beginners by Ofejiro20: 1:02pm On Apr 12, 2021
08175169541

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 15 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 62
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.