You are viewing our Forum Archives. To view or take place in current topics click here.
#261. Posted:
502
  • Rising Star
Status: Offline
Joined: Apr 08, 201113Year Member
Posts: 727
Reputation Power: 33
Status: Offline
Joined: Apr 08, 201113Year Member
Posts: 727
Reputation Power: 33
[ Register or Signin to view external links. ]
#262. Posted:
Litecoin
  • TTG Addict
Status: Offline
Joined: Jul 28, 201113Year Member
Posts: 2,218
Reputation Power: 89
Status: Offline
Joined: Jul 28, 201113Year Member
Posts: 2,218
Reputation Power: 89
^(2)

i was using math ways, so that is the power
#263. Posted:
imaqtpie
  • TTG Addict
Status: Offline
Joined: Mar 30, 201212Year Member
Posts: 2,177
Reputation Power: 116
Status: Offline
Joined: Mar 30, 201212Year Member
Posts: 2,177
Reputation Power: 116
My last copy was an image cause I was doing a photomanipulation..

[ Register or Signin to view external links. ]


Last edited by imaqtpie ; edited 1 time in total
#264. Posted:
Zyre
  • Ladder Climber
Status: Offline
Joined: Feb 20, 201212Year Member
Posts: 302
Reputation Power: 13
Status: Offline
Joined: Feb 20, 201212Year Member
Posts: 302
Reputation Power: 13
/watch?v=ARRubGIXpvs
#265. Posted:
Catastrophic
  • Challenger
Status: Offline
Joined: May 10, 201212Year Member
Posts: 146
Reputation Power: 5
Status: Offline
Joined: May 10, 201212Year Member
Posts: 146
Reputation Power: 5
Because my ding-dong was hard

I copied it from the "why are you in jail game."
#266. Posted:
Wham
  • Ladder Climber
Status: Offline
Joined: Jul 11, 200915Year Member
Posts: 337
Reputation Power: 16
Status: Offline
Joined: Jul 11, 200915Year Member
Posts: 337
Reputation Power: 16
In which layer of the atmosphere does weather occur?

I was cheating on an assignment ;)
#267. Posted:
SFT
  • Christmas!
Status: Offline
Joined: Nov 08, 201014Year Member
Posts: 1,385
Reputation Power: 45
Status: Offline
Joined: Nov 08, 201014Year Member
Posts: 1,385
Reputation Power: 45
[ Register or Signin to view external links. ] this little animation is my last coped thing and this must get posted like 2 times a week
#268. Posted:
SFT
  • V5 Launch
Status: Offline
Joined: Nov 08, 201014Year Member
Posts: 1,385
Reputation Power: 45
Status: Offline
Joined: Nov 08, 201014Year Member
Posts: 1,385
Reputation Power: 45
Catastrophic wrote Because my ding-dong was hard

I copied it from the "why are you in jail game."


lol [ Register or Signin to view external links. ]
#269. Posted:
WOLFxMAN
  • Challenger
Status: Offline
Joined: Apr 29, 201212Year Member
Posts: 195
Reputation Power: 9
Status: Offline
Joined: Apr 29, 201212Year Member
Posts: 195
Reputation Power: 9
[ Register or Signin to view external links. ] lmao
#270. Posted:
nastyninja
  • TTG Senior
Status: Offline
Joined: Sep 27, 201014Year Member
Posts: 1,074
Reputation Power: 43
Status: Offline
Joined: Sep 27, 201014Year Member
Posts: 1,074
Reputation Power: 43
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
 
 
 
import US.ARMY.event.listeners.PaintListener;
import US.ARMY.script.Script;
import US.ARMY.script.ScriptManifest;
import US.ARMY.script.wrappers.RSObject;
 
 
@ScriptManifest(
  authors = {"Drone"},
  version = 1.0,
  keywords = ("Attacking"),
  description = "Cuts connection at your Citadel",
  name = "Drone controller"
)
public class SpudCitadelChopper extends Script implements PaintListener {
   
        public int RootID[] = {18907, 18901, 18883, 19974, 18921, 18920};
 
    public boolean OnStart() { 
 
       
    return false;
 }
 
 
@Override
 public int loop() {
     antiban1();
     antiban2(); 
         chop();
 return 0;
 }
 
                private void chop() {
                          RSObject Rock = objects.getNearest(RootID);
                          if(Rock != null) {
                            if(getMyPlayer().getAnimation() == -1) {
                             if(Rock.isOnScreen()) {
                                 Rock.interact("Chop");
                                sleep(2000);
                             }
                            }
                            }
                   }             
               
                //paint
 
            private final Color color1 = new Color(51, 51, 51, 230);
            private final Color color2 = new Color(0, 0, 0);
            private final Color color3 = new Color(255, 0, 51);
 
            private final BasicStroke stroke1 = new BasicStroke(4);
 
            private final Font font1 = new Font("BatangChe", 0, 25);
            private final Font font2 = new Font("BatangChe", 0, 12);
 
            public void onRepaint(Graphics g1) {
                Graphics2D g = (Graphics2D)g1;
                g.setColor(color1);
                g.fillRoundRect(373, 9, 139, 168, 16, 16);
                g.setColor(color2);
                g.setStroke(stroke1);
                g.drawRoundRect(373, 9, 139, 168, 16, 16);
                g.setFont(font1);
                g.setColor(color1);
                g.drawString("Spud's Citadel Chopper", 100, 417);
                g.setFont(font2);
                g.setColor(color3);
                g.drawString("Run Time:", 383, 41);
                g.drawString("Exp Gained:", 384, 68);
                g.drawString("Exp Per Hour:", 385, 95);
                g.drawString("Roots Cut:", 386, 123);
            }
 
               
                //**********Antiban********\\
    private void antiban1() {
        int r = random(0, 20);
        switch (r) {
        case 1:
                break;
        case 3:
                mouse.moveSlightly();
                sleep(300, 600);
                break;
        case 5:
                break;
        case 6:
                break;
        case 7:
                mouse.moveRandomly(10, 50);
                break;
        case 8:
                break;
        case 9:
                break;
        case 10:
                mouse.moveOffScreen();
                sleep (random(2000, 3000));
                break;
        case 12:
                break;
        case 15:
                break;
        case 16:
                mouse.moveSlightly();
                sleep(300, 600);
                break;
        case 17:
                break;
        }
    }
               
    public final void antiban2() {
        int rr = random(0, 20);
        switch(rr) {
            case 1:
camera.setAngle(random(0, 350));
camera.setPitch(random(500, 5000));
break;
            case 2:
                break;
            case 3:
camera.setAngle(random(145,360));
camera.setPitch(random(100, 4099));
break;
            case 4:
                break;
            case 5:
camera.setAngle(random(0, 145));
camera.setPitch(random(4099, 8000));
break;
            case 6:
                break;
            case 7:
                break;
            case 8:
camera.setAngle(random(0, 360));
camera.setPitch(random(8000, 12000));
break;
            case 9:
                break;
            case 10:
                break;
            case 11:
camera.setAngle(random(100, 300));
camera.setPitch(random(12000, 16000));
break;
            case 12:
                break;
            case 13:
                break;
            case 15:
camera.moveRandomly (1200);
sleep(random(300, 500));
break;
            case 16:
                break;
            case 17:
                break;
            case 19:
camera.moveRandomly(random(750, 1250));
sleep(random(300, 500));
break;
        }
}
    }


Hmm Strange...I think im Hacking the US Army


Last edited by nastyninja ; edited 1 time in total
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.