d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Programming & Development > Question About The Rules
12Next
Add Reply New Topic New Poll
Member
Posts: 565
Joined: Jun 19 2006
Gold: 26.00
Jul 24 2016 09:22pm
Would An Account Creator Be Considered Malicious And Against The Rules?
Member
Posts: 10,812
Joined: Oct 15 2009
Gold: Locked
Warn: 20%
Jul 25 2016 01:31am
Quote (joeyg37 @ Jul 24 2016 08:22pm)
Would An Account Creator Be Considered Malicious And Against The Rules?


Of course it is against the rules. That being said, everything in the programming section is against the rules.

Quote (http://forums.d2jsp.org/topic.php?t=57605111&f=120)
If a program can be used to do the following, then please DO NOT post about it:
  • Be used for malicious things
That's right. Every mention of c, c++, java, ruby, python and all the others, is a violation of the rules.

The reality is there really are no rules on d2jsp. If you upset certain people they will come down on you like a ton of bricks. If you don't upset them, you can do anything you want. Want to advocate for the extermination of a race of people: you'll have no problems here! Want to criticize that same person for advocating for extermination of a race: expect a 30 day suspension, or worse.

D2jsp rules? Please; there is no such thing.
Member
Posts: 3,939
Joined: Feb 1 2013
Gold: 2,749.09
Warn: 20%
Jul 25 2016 08:23pm
Quote (Azrad @ Jul 25 2016 12:31am)
Of course it is against the rules. That being said, everything in the programming section is against the rules.

That's right. Every mention of c, c++, java, ruby, python and all the others, is a violation of the rules.

The reality is there really are no rules on d2jsp. If you upset certain people they will come down on you like a ton of bricks. If you don't upset them, you can do anything you want. Want to advocate for the extermination of a race of people: you'll have no problems here! Want to criticize that same person for advocating for extermination of a race: expect a 30 day suspension, or worse.

D2jsp rules? Please; there is no such thing.


I agree the rules and enforcement don't make a lot of sense.

It might depend on what system you are trying to create accounts for

This post was edited by boxboxbox on Jul 25 2016 08:24pm
Member
Posts: 32,925
Joined: Jul 23 2006
Gold: 3,804.50
Jul 25 2016 08:28pm
Quote (boxboxbox @ Jul 25 2016 10:23pm)
I agree the rules and enforcement don't make a lot of sense.

It might depend on what system you are trying to create accounts for


odds are he's trying to automate creating accounts (probably getting around capthas), and you know how mods feel about automation.
Member
Posts: 3,939
Joined: Feb 1 2013
Gold: 2,749.09
Warn: 20%
Jul 25 2016 11:33pm
yeah

well you don't need a program to automate captchas, just hire a chinese person at $4/month =D
Member
Posts: 27,177
Joined: Mar 27 2008
Gold: 445.00
Jul 26 2016 08:02am
Quote (boxboxbox @ Jul 26 2016 01:33am)
yeah

well you don't need a program to automate captchas, just hire a chinese person at $4/month =D


And as far as d2jsp is concerned, that's not against the rules.

@OP, if are truly worried just try to take on the project yourself and come back here for help.
Member
Posts: 14,631
Joined: Sep 14 2006
Gold: 575.56
Jul 26 2016 05:35pm
Code
import java.awt.AWTException;
import java.awt.Robot;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JToggleButton;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;

public class AutoQ {

public static void main(String[] args) throws InterruptedException, AWTException {
JFrame frame=new JFrame("AutoQ");
frame.setSize(200, 100);
JPanel panel = new JPanel();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
Robot r=new Robot();
JLabel label=new JLabel();
JToggleButton button = new JToggleButton();
button.addItemListener(new ItemListener() {
public void itemStateChanged(ItemEvent ev) {
if(ev.getStateChange()==ItemEvent.SELECTED){
label.setText("Running");
Thread loop = new Thread(
new Runnable() {
@Override
public void run() {
while(button.isSelected()){
r.delay(19850);
r.keyPress(81);
int randNum=(int)((Math.random()*210);
r.delay(randNum);
r.keyRelease(81);
if(ev.getStateChange()==ItemEvent.DESELECTED){
break;
}
}
}
});
loop.start();
} else if(ev.getStateChange()==ItemEvent.DESELECTED){
label.setText("Stopped");
}
}
});
button.addChangeListener(new ChangeListener() {
@Override
public void stateChanged(ChangeEvent event) {
if (button.isSelected()){
button.setText("ON");
} else {
button.setText("OFF");
}
}
});
panel.add(button);
panel.add(label);
frame.add(panel);
frame.setVisible(true);
}
}

java is so gross sometimes

This post was edited by Ideophobe on Jul 26 2016 06:21pm
Member
Posts: 13,425
Joined: Sep 29 2007
Gold: 0.00
Warn: 20%
Jul 26 2016 06:26pm
Your indentation is ass.
Member
Posts: 87,007
Joined: May 12 2013
Gold: 1,590.64
Jul 26 2016 06:48pm
making multiple accounts is against the rules so yes u will get disabled or punished if u try this!
Member
Posts: 3,939
Joined: Feb 1 2013
Gold: 2,749.09
Warn: 20%
Jul 27 2016 04:46pm
Quote (serialj0e @ Jul 26 2016 05:48pm)
making multiple accounts is against the rules so yes u will get disabled or punished if u try this!


against the rules of what? he didn't specify which website or system he wanted to make accounts for
Quote (Ideophobe @ Jul 26 2016 04:35pm)
Code
}

java is so gross sometimes


lol what the hell
Go Back To Programming & Development Topic List
12Next
Add Reply New Topic New Poll