Gambling Crash Plugin

Status
This thread has been locked.
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

LeStylez

Premium
Feedback score
2
Posts
407
Reactions
63
Resources
0
Hello HasteBeSmokin, Hover Services will have you covered! Join our Discord here to receive high quality & efficient code while ensuring it is completed quickly.
 

Drawethree

Ultimate
Feedback score
30
Posts
12
Reactions
75
Resources
16
Drawethree#1018
 

Millionaire

Server Owner, Business Manager
Supreme
Feedback score
3
Posts
21
Reactions
9
Resources
0
???
Please check my portfolio and rep on every marketplaces before saying anything.
Homie, I asked you a java question and ask you to complete it.

You used 2 wrong variables and didn't answer the question correctly.

BannaPrisons ring a bell scammer?
 

Quokka

Manager & Developer
Premium
Feedback score
3
Posts
213
Reactions
94
Resources
0
Homie, I asked you a java question and ask you to complete it.

You used 2 wrong variables and didn't answer the question correctly.

BannaPrisons ring a bell scammer?

If you're going to slander someone's character and ability to be a qualified candidate for the OP's request, you should probably give a little more than using two wrong variables.

Not siding here, but calling someone a scammer because they didn't know the answer to a question just seems a bit off.
 

Drawethree

Ultimate
Feedback score
30
Posts
12
Reactions
75
Resources
16
If you're going to slander someone's character and ability to be a qualified candidate for the OP's request, you should probably give a little more than using two wrong variables.

Not siding here, but calling someone a scammer because they didn't know the answer to a question just seems a bit off.

Haha do not mind friend, I know this guy, he was asking 10+ developers how to solve simple java problem. He then came up with his own solution that was totally horrible and persuaded developers that he is right and tried to prove them wrong. At that time when he contacted me I was working for McPrison and he even contacted my employer and tried to get me out here. I do not mind reps from such people.
 

Quokka

Manager & Developer
Premium
Feedback score
3
Posts
213
Reactions
94
Resources
0
Haha do not mind friend, I know this guy, he was asking 10+ developers how to solve simple java problem. He then came up with his own solution that was totally horrible and persuaded developers that he is right and tried to prove them wrong. At that time when he contacted me I was working for McPrison and he even contacted my employer and tried to get me out here. I do not mind reps from such people.

That's exactly why I called it out on the post, I knew something did add up there.
 

Millionaire

Server Owner, Business Manager
Supreme
Feedback score
3
Posts
21
Reactions
9
Resources
0
That's exactly why I called it out on the post, I knew something did add up there.
That's funny because it isn't true...

I asked him specifically that java question.
I had multiple different solutions, let me show you his...

Question:
Take the input of a number from the user as n. Loop all numbers from 0 to n. If this number is divisible by 2 then print “Foo”, if this number is divisible by 8, then print “Bar”. If this number is divisible by both 2 and 8 print “FooBar"

Answer:
https://prnt.sc/11tkdn9

Now, lets explain why this is wrong.

#1.
User did not use the N variable.

#2.
It never printed FooBar.
Just
Foo
Bar

You choose what you want.
He also scammed that server out of a core.[DOUBLEPOST=1619045416][/DOUBLEPOST]Exhibit A:
https://prnt.sc/11tkl0q

Exhibit B:
https://prnt.sc/11tkmwn
 
Last edited:

Quokka

Manager & Developer
Premium
Feedback score
3
Posts
213
Reactions
94
Resources
0
That's funny because it isn't true...

I asked him specifically that java question.
I had multiple different solutions, let me show you his...

Question:
Take the input of a number from the user as n. Loop all numbers from 0 to n. If this number is divisible by 2 then print “Foo”, if this number is divisible by 8, then print “Bar”. If this number is divisible by both 2 and 8 print “FooBar"

Answer:
https://prnt.sc/11tkdn9

Now, lets explain why this is wrong.

#1.
User did not use the N variable.

#2.
It never printed FooBar.
Just
Foo
Bar

You choose what you want.
He also scammed that server out of a core.[DOUBLEPOST=1619045416][/DOUBLEPOST]Exhibit A:
https://prnt.sc/11tkl0q

Exhibit B:
https://prnt.sc/11tkmwn

From the answer you provided, it's not justifiable to be bashing him on this thread because of some very small things.

1. He did technically include the n variable, however he didn't show an initialization of the variable and didn't give it a value based on an inputReader. However, he did use it in the for loop, just doesn't have a value. So I'd assume that he would know what he needs to do if the time came to it.

Scanner myObj = new Scanner(System.in);

2. You're right, it didn't but it's a simple operator symbol difference. I'm sure that if he knows the remainder operator then he sure knows what the and operator is. It's literally just a combination of the two.

if (i % 2 == 0 && i % 8 == 0) print ("FooBar");​

I don't believe that the inability to answer such a simple question gives you the right to come onto the thread and bash him for not being able to code. It's literally two line difference. Additionally, unless you were offering some type of position, I'm more curious on why you are questioning somebody's ability to code?

How does this code snippet prove my ability to code you a fully functioning plugin?

Code:
Scanner myObj = new Scanner(System.in);
int myInt = myObj.nextInt();

for (int i = 0; i < n; i++){
  if (i % 2 == 0)
    print ("Foo");
  else if (i % 4 == 0)
    print ("Bar");
  else if (i % 2 == 0 && i % 8 == 0)
    print ("FooBar");
}
 
Last edited:
Status
This thread has been locked.
Top