Need 3D world -- will pay

I need someone to create a SIMPLE 3d world using only basic java packages (no third party API's, or extras to download)
Description:
A simple 3d world, with a ground, and a player
I will do the rest, please contain it to MAX 3 classes, name your price, i want to see the applet before I pay though

Well the quickest and easiest way to get thingsdone
is to do it yourselfunless of course you are lazy liar like our new
friend here.OR Unless you stop being childish, read my posts, and see that I mentioned I am very busy.
Now please, if you can't be serious, don't be immature, just leave if you don't like my offers

Similar Messages

  • Why in the world is there an "Unsorted Bookmarks" folder appearing that I can't get rid of. I will pay money to get it gone... forever

    The details are:
    there's an "Unsorted Bookmarks" folder appearing that I can't get rid of. I will pay money to get it gone... forever
    clear enough?

    Do you have any Boot Camp or other secondary partitions set up on your system? If so then try running a disk verification routine (chkdsk, etc.) in Windows to repair the disk. While I've not heard of it happening recently, in the past errors in these partitions have resulted in stubborn ghost files appearing in OS X.

  • I will pay for who can help me with this applet

    Hi!, sorry for my english, im spanish.
    I have a big problem with an applet:
    I�ve make an applet that sends files to a FTP Server with a progress bar.
    Its works fine on my IDE (JBuilder 9), but when I load into Internet Explorer (signed applet) it crash. The applet seems like blocked: it show the screen of java loading and dont show the progress bar, but it send the archives to the FTP server while shows the java loading screen.
    I will pay with a domain or with paypal to anyone who can help me with this problematic applet. I will give my code and the goal is only repair the applet. Only that.
    My email: [email protected]
    thanks in advance.
    adios!

    thaks for yours anwswers..
    harmmeijer: the applet is signed ok, I dont think that is the problem...
    itchyscratchy: the server calls are made from start() method. The applet is crashed during its sending files to FTP server, when finish, the applet look ok.
    The class I use is FtpBean: http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean/
    (I test too with apache commons-net, and the same effect...)
    The ftp is Filezilla in localhost.
    This is the code, I explain a little:
    The start() method calls iniciar() method where its is defined the array of files to upload, and connect to ftp server. The for loop on every element of array and uploads a file on subirFichero() method.
    Basicaly its this.
    The HTML code is:
    <applet
           codebase = "."
           code     = "revelado.Upload.class"
           archive  = "revelado.jar"
           name     = "Revelado"
           width    = "750"
           height   = "415"
           hspace   = "0"
           vspace   = "0"
           align    = "middle"
         >
         <PARAM NAME="usern" VALUE="username">
         </applet>
    package revelado;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import javax.swing.*;
    import java.io.*;
    import javax.swing.border.*;
    import java.net.*;
    import ftp.*;
    public class Upload
        extends Applet {
      private boolean isStandalone = false;
      JPanel jPanel1 = new JPanel();
      JLabel jLabel1 = new JLabel();
      JLabel jlmensaje = new JLabel();
      JLabel jlarchivo = new JLabel();
      TitledBorder titledBorder1;
      TitledBorder titledBorder2;
      //mis variables
      String DIRECTORIOHOME = System.getProperty("user.home");
      String[] fotos_sel = new String[1000]; //array of selected images
      int[] indice_tamano = new int[1000]; //array of sizes
      int[] indice_cantidad = new int[1000]; //array of quantitys
      int num_fotos_sel = 0; //number of selected images
      double importe = 0; //total prize
      double[] precios_tam = {
          0.12, 0.39, 0.60, 1.50};
      //prizes
      String server = "localhost";
      String username = "pepe";
      String password = "pepe01";
      String nombreusuario = null;
      JProgressBar jProgreso = new JProgressBar();
      //Obtener el valor de un par�metro
      public String getParameter(String key, String def) {
        return isStandalone ? System.getProperty(key, def) :
            (getParameter(key) != null ? getParameter(key) : def);
      //Construir el applet
      public Upload() {
      //Inicializar el applet
      public void init() {
        try {
          jbInit();
        catch (Exception e) {
          e.printStackTrace();
      //Inicializaci�n de componentes
      private void jbInit() throws Exception {
        titledBorder1 = new TitledBorder("");
        titledBorder2 = new TitledBorder("");
        this.setLayout(null);
        jPanel1.setBackground(Color.lightGray);
        jPanel1.setBorder(BorderFactory.createEtchedBorder());
        jPanel1.setBounds(new Rectangle(113, 70, 541, 151));
        jPanel1.setLayout(null);
        jLabel1.setFont(new java.awt.Font("Dialog", 1, 16));
        jLabel1.setText("Subiendo archivos al servidor");
        jLabel1.setBounds(new Rectangle(150, 26, 242, 15));
        jlmensaje.setFont(new java.awt.Font("Dialog", 0, 10));
        jlmensaje.setForeground(Color.red);
        jlmensaje.setHorizontalAlignment(SwingConstants.CENTER);
        jlmensaje.setText(
            "Por favor, no cierre esta ventana hasta que termine de subir todas " +
            "las fotos");
        jlmensaje.setBounds(new Rectangle(59, 49, 422, 30));
        jlarchivo.setBackground(Color.white);
        jlarchivo.setBorder(titledBorder2);
        jlarchivo.setHorizontalAlignment(SwingConstants.CENTER);
        jlarchivo.setBounds(new Rectangle(16, 85, 508, 24));
        jProgreso.setForeground(new Color(49, 226, 197));
        jProgreso.setBounds(new Rectangle(130, 121, 281, 18));
        jPanel1.add(jlmensaje, null);
        jPanel1.add(jlarchivo, null);
        jPanel1.add(jProgreso, null);
        jPanel1.add(jLabel1, null);
        this.add(jPanel1, null);
        nombreusuario = getParameter("usern");
      //Iniciar el applet
      public void start() {
        jlarchivo.setText("Start() method...");
        iniciar();
      public void iniciar() {
        //init images selected array
        fotos_sel[0] = "C:/fotos/05160009.JPG";
        fotos_sel[1] = "C:/fotos/05160010.JPG";
        fotos_sel[2] = "C:/fotos/05160011.JPG";
         // etc...
         num_fotos_sel=3; //number of selected images
        //conectar al ftp (instanciar clase FtpExample)
        FtpExample miftp = new FtpExample();
        miftp.connect();
        //make the directory
         subirpedido(miftp); 
        jProgreso.setMinimum(0);
        jProgreso.setMaximum(num_fotos_sel);
        for (int i = 0; i < num_fotos_sel; i++) {
          jlarchivo.setText(fotos_sel);
    jProgreso.setValue(i);
    subirFichero(miftp, fotos_sel[i]);
    try {
    Thread.sleep(1000);
    catch (InterruptedException ex) {
    //salida(ex.toString());
    jlarchivo.setText("Proceso finalizado correctamente");
    jProgreso.setValue(num_fotos_sel);
    miftp.close();
    //Detener el applet
    public void stop() {
    //Destruir el applet
    public void destroy() {
    //Obtener informaci�n del applet
    public String getAppletInfo() {
    return "Subir ficheros al server";
    //Obtener informaci�n del par�metro
    public String[][] getParameterInfo() {
    return null;
    //sube al ftp (a la carpeta del usuario) el archivo
    //pedido.txt que tiene las lineas del pedido
    public void subirpedido(FtpExample miftp) {
    jlarchivo.setText("Iniciando la conexi�n...");
    //make folder of user
    miftp.directorio("www/usuarios/" + nombreusuario);
    //uploads a file
    public void subirFichero(FtpExample miftp, String nombre) {
    //remote name:
    String nremoto = "";
    int lr = nombre.lastIndexOf("\\");
    if (lr<0){
    lr = nombre.lastIndexOf("/");
    nremoto = nombre.substring(lr + 1);
    String archivoremoto = "www/usuarios/" + nombreusuario + "/" + nremoto;
    //upload file
    miftp.subir(nombre, archivoremoto);
    class FtpExample
    implements FtpObserver {
    FtpBean ftp;
    long num_of_bytes = 0;
    public FtpExample() {
    // Create a new FtpBean object.
    ftp = new FtpBean();
    // Connect to a ftp server.
    public void connect() {
    try {
    ftp.ftpConnect("localhost", "pepe", "pepe01");
    catch (Exception e) {
    System.out.println(e);
    // Close connection
    public void close() {
    try {
    ftp.close();
    catch (Exception e) {
    System.out.println(e);
    // Go to directory pub and list its content.
    public void listDirectory() {
    FtpListResult ftplrs = null;
    try {
    // Go to directory
    ftp.setDirectory("/");
    // Get its directory content.
    ftplrs = ftp.getDirectoryContent();
    catch (Exception e) {
    System.out.println(e);
    // Print out the type and file name of each row.
    while (ftplrs.next()) {
    int type = ftplrs.getType();
    if (type == FtpListResult.DIRECTORY) {
    System.out.print("DIR\t");
    else if (type == FtpListResult.FILE) {
    System.out.print("FILE\t");
    else if (type == FtpListResult.LINK) {
    System.out.print("LINK\t");
    else if (type == FtpListResult.OTHERS) {
    System.out.print("OTHER\t");
    System.out.println(ftplrs.getName());
    // Implemented for FtpObserver interface.
    // To monitor download progress.
    public void byteRead(int bytes) {
    num_of_bytes += bytes;
    System.out.println(num_of_bytes + " of bytes read already.");
    // Needed to implements by FtpObserver interface.
    public void byteWrite(int bytes) {
    //crea un directorio
    public void directorio(String nombre) {
    try {
    ftp.makeDirectory(nombre);
    catch (Exception e) {
    System.out.println(e);
    public void subir(String local, String remoto) {
    try {
    ftp.putBinaryFile(local, remoto);
    catch (Exception e) {
    System.out.println(e);
    // Main
    public static void main(String[] args) {
    FtpExample example = new FtpExample();
    example.connect();
    example.directorio("raul");
    example.listDirectory();
    example.subir("C:/fotos/05160009.JPG", "/raul/foto1.jpg");
    //example.getFile();
    example.close();

  • My iPad is not functioning properly, I want to restore it. but I'm unsure if my Minecraft world will be saved in the backup

    My iPad is not functioning properly, I want to restore it. but I'm unsure if my Minecraft world will be saved in the backup. Please help, I need to use it ASAP

    How to BackUp
    http://support.apple.com/kb/ht1766
    See iTunes will backup the following Information  Here...
    http://support.apple.com/kb/HT4946

  • I own photoshop cs5 extended but now have win8.  can i upgrade to cc at reduced price to cc or do i need to purchase it at full price? I don't need cloud but will use the pc for install.

    I own photoshop cs5 extended but now have win8.  can i upgrade to cc at reduced price to cc or do i need to purchase it at full price? I don't need cloud but will use the pc for install.

    There is no such thing as a "pay once, use forever CC". It's strictly a subscription model that you can use as long as you pay for it. Your CS5 will give you a discount for the first year.
    Mylenium

  • I will pay, who creates a method for importing tables from MS word

    I need a script or any other type of method, which will import the MSword document, which have tables and footnotes.
    WIth "Place" option (with "SHift"), it only imports the first page of word document, and even that first page is degraded and some part of  footnotes are moved to the second page of Indesign.
    for example,see such document: http://d2.minus.com/1342790256/zDuntjI5q2iNIJqkk5UPJA/dbjwjsXzUbRmjD/sample.rtf
    i will pay him, who will do that job (offer me your bid).
    my info:
    mail: selnomeria(*)yahoo.com
    skype: oceane.sa

    Hello!
    First of all:
    Indesign does not support footnotes in tables. There are some tricks i use, for example making a "hidden footnote reference" somwhere in the page (just assign a 0.1pt size and fillcolor of "None") but it's just a ugly hack and if you have to reformat the tables you will have to rebuild all teh footnotes. move them around etc.
    Second:
    If one of the cells in the table you are importing is larger (verticaly) than the page size the autoflow will stop. The table is imported in the story (check it out in the story editor) but indesign cannot display it. Enlage the frame until the cell fits (or make the cell smaller -decrease the text size?) and reflow the rest of the text.
    Third:
    If you are working with large tables and especialy large cells be prepared to have numerous crashes. And i mean NUMEROUS!! Every time you try to change something in the table.
    i am sorry to be the bearer of bad news but at the moment table and footnote support in indesign is crappy at best, and i don't think there's anyone besides the guys form Adobe that can do anything to help you.

  • Do I need to download and pay for Iwork Numbers App on Mac if I already downloaded it on IPAD

    I have Iwork numbers on my Ipad.  Do I need to download and pay again to have it on my Macbook for it to work in Icloud?

    iPads have a different OS so its apps are different, and will not run on a Mac computer. Yes you need to buy a Mac OScapable copy for your Mac. Practically all software licenses, regardless of publisher, are for installation on one device.

  • Will pay for Flash programming

    Hi folks,
    I have been let down by some programmers and need a web site
    built similar
    to the Business Card application at
    http://www.premierlook.com/xangocard.php
    It is a fairly straight-forward application of developing a
    form in Flash. A
    shopping cart addition would be greatly appreciated also.
    Prospective designers wishing to undertake this job and
    complete within 36
    hours can send me an email at [email protected]
    Thanks for your help.
    Richard

    Will Pay for Consulting on Java Swing Issue
    Really?
    863221 wrote:
    ..*Offer*:     I will pay a reasonable consulting fee ..I will read your post (and give it serious consideration and a reply) for $1500 US. The ball is in your court.

  • Need more days to pay

    Hi tried to get through to BT customer support but could only get through to automated service with regards to telling BT when I will pay my bill as I am needing a few more days to pay My phone line is due to stop outgoing calls from tomorrow but cant clear my bill until Wedensday 11th Feb so am really stuck as my phone / net connection massivly important for my work. Is there any contact numbers or anyone I could speak to in person to try get a 4 day further extension without having my services cut. Thanks for reading.

    If you would like to try Live Chat they may be able to help you.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • How can i get a comedy, Dutch Treat or/and its companion Detective School Dropouts released in 1987 be included in the iTunes US store for me to down load. i will pay any thing to download them.

    I wish to request that a comedy, Dutch Treat or/and its companion Detective School Dropouts released in 1987 be included in the iTunes US store for me to down load. i will pay any thing to download them.

    You can try requesting it via this page (these are user-to-user forums) : http://www.apple.com/feedback/itunes.html
    But unless the the US rights-holder passes it to Apple and allows them to sell it in the US then Apple won't be able to sell it there

  • I want to buy iPhones (4S and 5) and want to buy them in US $. But want Apple to ship them to Pakistan. I will pay the charges of shipment once told. I want to buy the iPhones in Contracts. I'll unlock them myself no problem. Is that possible? Apple ans?

    I want to buy iPhones (4S and 5) and want to buy them in US $. But want Apple to ship them to Pakistan. I will pay the charges of shipment once told. I want to buy the iPhones in Contracts. I'll unlock them myself no problem. Is that possible? Apple ans?

    No, you can't do what you want. Apple will only ship a US iPhone to a verified billing/shipping address in the US.

  • Can i change my old iPad with the new one, i Will pay the difference... Do you have this kind of program?

    Can i change my old iPad with the new one, i Will pay the difference... Do you have this kind of program?

    If you are past the return date, you can sell the older iPad and put the money towards a new one.
    Plus, old iPads make great gifts ! ! !

  • I will pay you if you can help me with..

    Logic studio. I have tons of questions about everything and I dislike reading. If you would be so kind to 'teach' me the programs inside logic studio I will pay you $5 an hour. Reach me at: [email protected] or my aol instant messenger screen name: wut a lewser
    please and thank you.

    Let's do some math.
    20 sessions at $5 a piece is $100. The same cost for 52 sessions.
    Also, I think you might be hard pressed to get some one to teach you Logic for $5 an hour. Not to sound arrogant but for $5 I might answer 1 question for that. Not to say you can't find someone, just remember you get what you pay for.
    See what works for you or how you can learn the application. There are some great tutorial books from peachpit press that you could look into.

  • CDs I burn from my itunes 10 on my macbook with snow lepard will not play in the regular cd player.  How do I burn Cds that will pay in a reg old cd player?

    CDs I burn from my itunes 10 on my macbook with snow lepard will not play in the regular cd player.  How do I burn Cds that will pay in a reg old cd player?

    When the computer was new, I had the same issue I have now.  It was new and I could not burn to play on a reg cd player. Today, I can not burn to play on a reg cd player. Inbetween, I could not burn to play on a reg cd player.  I keep giving up and then trying months later.
           I have recently made the cds that play on the computer.  I have also tried in the last month to make a dvd copy, it played.  I have gone to people's homes and tried the cd's burned in my computer. They are not recognized.  This last round I have only used the cd-r but have tried many others in the past. I am running out of money to keep buying different brands, kinds, etc.  I figured it must be my lac of knowledge and am trying to get some new here. 
    Sincerely,
    Paul

  • I was in the middle of the latest update and my iPhone now says it needs to restored will I be able to back it up first. I have photos on it I can NOT loses

    I was in the middle of the latest update and my iPhone now says it needs to restored will I be able to back it up first. I have photos on it I can NOT lose

    It should have backed up automatically at the start of the update process. And you should be saving photos from your phone to your computer regularly, just like you would with any digital camera. If you were not doing this you MAY lose the photos, but if your backup at the start of the update was successful you will not. Just DO NOT sync after the update, until you have restore the backup and verified that it is OK.
    What error message did you get during the update? Before you restore do the following:
    Reboot your computer
    Connect to a USB port on the computer directly, not a hub
    disable your antivirus and firewall
    Launch iTunes
    Finally, connect the phone and restore.

Maybe you are looking for

  • Open PO's

    Hi Gurus, I need the table / FM / BAPI etc from which I will be able to find out the following. Fully open PO. Partial Open PO etc I would require the PO numbers & the Open quantities (if possible). Please help. regards, kumar

  • Email Setting

    I have an issue with my BB curve 9300. When I first bought it, I was able to setup my mail (hotmail) successfully. Then I decided to add another email (Yahoo mail) but it is prompting Username and password for email setting. Ever since,  I have been

  • NW CE Trial Installation Problem

    Hi all, I've got a SAP NW CE 7.1 Trial-DVD and wanted to install it on my laptop. At the very beginning of the installation I always get this message on my screen: "The installer cannot find the needed archives (content and native libraries). It will

  • New to gb

    and cant figure out how to record my usb keyboard and usb drums at the same time any suggestions? i have an arturia analog labratory and simmons sd7pk

  • Burn iMovie '8 project to dvd or other medium to give as gift

    I created a video project in iMovie '8 that is 15 minutes long. I have video/photos/music in the project. As I made it as a gift I'm trying to figure out how to either burn to a dvd or other medium so that I can give a copy to my parents. I downloade