Testing and feedback needed for project

here
http://www.armoredlegion.com
we're looking for feedback and suggestions for our game
armored legion
we've been working on it for about 4 months (minus a big
break over christmas), it has about 16 planets to visit currently,
procedurally generated (props and more distinguishing faetures are
coming soon), and player versus player combat
the server is custom written in c++, there are about 15k
npc's spread across the worlds currently, and several hundred
players per world is supported
thanks
- ZookazRules

quote:
Originally posted by:
Newsgroup User
This is nice, but sorry - I simply cannot accept worlds with
no
lightmaps and shadows any more. This is 2009 not 1999 !!!
I've been pretty busy this week with real work (sigh), but I
made a few minutes to throw in a quick shadow, just for you :)
As for lightmaps, although they're trivial to add, I haven't
for a couple of reasons. First off, the DCR is already getting a
little large and there are so many other things that would offer
more bang for the buck. Secondly, I don't really think they're all
that necessary for these landscapes. I can't imagine much benefit
to lightmapping some hills. If I were to add some buildings, some
ruins, etc... then its an area to revisit.
To tyree_2: The combat was a design choice, real-time
wouldn't have taken any longer to implement. I grew up on games
like Final Fantasy, Chrono Trigger, and similar games, so I wanted
to bring back that style of combat in this one. In time more
options, as well as group combat, etc... will be added.
To Nanomedia: I'm not quite sure what you mean by that?
Unless you had an existing account, you should have been taken
through a tutorial and given a chance at combat right away.

Similar Messages

  • Discoverer and potential need for IDS

    I am reviewing 10g Application Server Enterprise Edition, as I've a need for Oracle Reports and Portal to distribute the reports company wide. In the search I became aware that Discoverer was also included with this bundle. And the features are quite an upgrade to those available with Reports.
    So here is the question, I've been informed that in order to utalize Discoverer one also needs the features available within the Internet Developer Suite else Discoverer is not usable.
    So I went off to research, just what it is that IDS provides that Discoverer "needs". But thought I would post here and ask the community for a summary of why IDS is needed, while I read the white papers.
    Any help would be greatly appreciated.
    Adam

    Ahh, here we are:
    1.4 What is Oracle Discoverer Administrator?
    Discoverer Administrator is used for the initial setup and ongoing maintenance of the End User Layer. Users of Discoverer Administrator are called Discoverer managers. The Discoverer manager performs a variety of tasks including creation and maintenance of business areas, folders, summary table creation, and managing end user access. Discoverer provides extensive defaulting capability to enable managers to rapidly implement their end user environment. Discoverer Administrator is a required component of a complete Discoverer installation and is a component of Oracle Developer Suite
    So in order to use Discoverer, which is included within 10g AS Enterprise Edition one also needs a seperate liscence for Oracle Developer Suite.

  • Labview Programmer needed for project work in Milwaukee Area or over the internet

    We have a project I need to get done before summers end and we have majotiy of the code. My company builds robotic systems which we use for industrial inspections mainly in the petrochemical industry.  These robotic systems work with a ultrasonic systems which we use to take thickness measurements of piping and pressure vessels using ultrasound.   We have the ultrasound equipment and most of the software as said previously, we just need it polished up and some additions made.  Here is a link from NI which is simular to what we do and you can even download the code and have a look at there code: http://zone.ni.com/devzone/cda/epd/p/id/3618 . Our code is a bit more complex but you get the picture. 
    This position is not a full time position as of yet.  We are looking for someone to work with us on a contract basis for now. We need someone experienced with the following; Data aquisition, Data analysis, Experience with RF, USB comunication.  We perfer to hire somebody local but if we cant we can can do this over the internet.  If you are interested, give us a reply with contact info.  Thanks.
    Regards,
    Bill

        Bill,
    We are able to offer you the help you need on
    this.  I work for a LabVIEW/test-system consulting group based here out
    of Salt Lake City...not too far if a quick trip is needed.  Among the
    six of us, four of us are former NI employees and we count with a lot of LabVIEW experience and regularly do
    contract work, local and remote.  This sounds interesting and right up
    our alley as far as experience goes.  I'd refer you to our website for
    further info about different projects that we've done for many
    clients.  www.mooregoodideas.com.
    If this seems workable for
    you, feel free to shoot me a note at [email protected]  I'd be
    curious to know more about what you're after and how we can help you
    out. 
    Thanks,
    Jim

  • Help needed for Project Work

    +People..I am new to this forum and your help is absolutely essential as it for my project work. There are two questions in my project. This is the second one. The first question is at the following thread.
    http://forum.java.sun.com/thread.jspa?threadID=5220057
    Thanks in advance..+*
    This is the Question
    Create a class ToyCollection that stores information about different toys in a toy shop.  The information to be stored about a single toy is,
    -         Toy identification as String
    -         Name of the toy as String
    -         Short description about the toy as a String
    -         Price of the toy as float
    -         Quantity of the toy in hand as short integer.
    This class contains following methods,
    -         Constructor method that assigns user input values to above mentioned variables.
    -         main ( ) method that creates array of 4 objects of ToyCollection class and that takes input for all above details from the user and
    calls method to check validity of Quantity and Price values. If all values are valid then create the objects and display the details
    for all 4 toys.
    -         Method that checks validity of quantity and price. If the quantity is 0 or negative then method should throw user defined
    exception with appropriate message and come out of program. Similarly if the price is 0 or negative then it should throw user defined exception with appropriate message and come out of program.
    -         Method that displays all details about a single toy in the following format, e.g. Here Total price should be calculated.
    Toy Identification                  :  S-1
    Toy Name                            :  Small Scooter
    Toy Description                    :  Ordinary 3 wheeler scooter
    Toy price                              :   650.50
    Quantity in hand                    :   3
    Total price of Toys               :    1951.50
    And i did the following coding
    import java.io.*;
    import java.lang.*;
    public class ToyCollection
         public int toyid;
         public String toyname;
         public String toydetails;
         public float toyprice;
         public int toyquantity;
         public void setToyid(int tid)
              toyid = tid;
         public void setToyname(String tname)
              toyname = tname;
         public void setToydetails(String tdet)     
              toydetails = tdet;
         public void setToyprice(float tpri)
              toyprice = tpri;
         public void setToyquantity(int tquan)
              toyquantity = tquan;
         public int getToyid()
              return toyid;
         public String getToyname()
              return toyname;
         public String getToydetails()     
              return toydetails;
         public float getToyprice()
              return toyprice;
         public int getToyquantity()
              return toyquantity;
         public static void main(String args[])throws Exception
              ToyCollection a=new ToyCollection();
              System.out.println("Enter the Toy id");
              BufferedReader br1=new BufferedReader(new InputStreamReader(System.in));
              int tid=Integer.parseInt(br1.readLine());
              a.setToyid(tid);
              System.out.println("Enter the Toy name");
              BufferedReader br2=new BufferedReader(new InputStreamReader(System.in));
              String tname=br2.readLine();
              a.setToyname(tname);
              System.out.println("Enter the Toy details");
              BufferedReader br3=new BufferedReader(new InputStreamReader(System.in));
              String tdet=br3.readLine();
              a.setToydetails(tdet);
              System.out.println("Enter the Toy price");
              BufferedReader br4=new BufferedReader(new InputStreamReader(System.in));
              float tpri=Float.parseFloat(br4.readLine());
              a.setToyprice(tpri);
              System.out.println("Enter the Toy quantity");
              BufferedReader br5=new BufferedReader(new InputStreamReader(System.in));
              int tquan=Integer.parseInt(br5.readLine());
              a.setToyquantity(tquan);
              System.out.println("The Toy Attributed you entered are displayed below \n" + " ID :" + a.getToyid() + "\n " +" Name :" + a.getToyname() + "\n " + " Details :" + a.getToydetails() + "\n " + " Price :" + a.getToyprice() + "\n " + " Quantity :" + a.getToyquantity());
    I submitted the above coding and this was the response from the evaluator
    *"You need to create array of toys. You are accepting details of toy in a single line and your program ends."*
    Eagerly awaiting your reply at the earliest people.

    DrLaszloJamf , here is the question.
    Create a class ToyCollection that stores information about different toys in a toy shop. The information to be stored about a single toy is,
    - Toy identification as String
    - Name of the toy as String
    - Short description about the toy as a String
    - Price of the toy as float
    - Quantity of the toy in hand as short integer.
    This class contains following methods,
    - Constructor method that assigns user input values to above mentioned variables.
    - main ( ) method that creates array of 4 objects of ToyCollection class and that takes input for all above details from the user and
    calls method to check validity of Quantity and Price values. If all values are valid then create the objects and display the details
    for all 4 toys.
    - Method that checks validity of quantity and price. If the quantity is 0 or negative then method should throw user defined
    exception with appropriate message and come out of program. Similarly if the price is 0 or negative then it should throw user defined exception with appropriate message and come out of program.
    - Method that displays all details about a single toy in the following format, e.g. Here Total price should be calculated.
    Toy Identification : S-1
    Toy Name : Small Scooter
    Toy Description : Ordinary 3 wheeler scooter
    Toy price : 650.50
    Quantity in hand : 3
    Total price of Toys : 1951.50
    What is the java code for the above ?

  • How do I choose a specific version of IOS?  I'm doing app testing and I need to test a version other than what iTunes provides as the latest

    I am testing applications and I want to run an IOS version that is not the latest version offered by iTunes.  ex: Plug in my iPod Touch and the latest version of IOS being offered in the update option is version 4.2.  I need to test v4.1.  How can I download and downgrade my device?

    Downgrading iOS is not supported by Apple. You may find workarounds on other web sites if you do a web search for such information, e.g. "downgrade iOS". You can links to Apple's direct downloads for iOS 4.1 here, among other places:
    http://www.redmondpie.com/download-ios-4.1-final-version-for-iphone-4-3gs-3g-ipo d-touch/
    though there are no guarantees as to how long Apple will continue to have those available.
    Regards.

  • Table name and field required for Project name

    Hi Guys
    I need to print Transfer order print out
    Which Table and field I need to take to print Project number (Original format) BSA01.000045.00002

    hello,
    if i am right in understanding your question, then you wanted to know the technical details about the project number or should i say project id, from which wbs elements are created, on which we finally place the orders.
    if this is what you want, then for getting the prject number for a particular order, at the table level, follow the below steps -
    using the po number or order number as an input in ekkn table, along with the po line item, you will get the wbs element for the order number for that particular po line item.
    and using this wbs element as an input in prps table, you can find the current project number.
    finally using this current project number as an input in the table proj, you can find the project id or project number = proj-pspid
    so you will require 3 tables to get the required details.
    hope this helps you.
    Regards,
    Zafar.

  • SQLPlus and SQLLoader needed for Sparc Solaris 2.6

    Hello,
    for a test i need the two Oracle utilities SQLPlus and SQLLoader
    for Sparc Solaris 2.6.
    Is there a test version available ???
    Thanks for information.
    Olaf.
    null

    hai Alan,
    Let me specific on the problem.
    I developed a fail-over software for Linux servers(need 2 servers of same configuration). In this servers ,there are two modes , Active and passive mode. At a time one can be active,and other passive. Clients can communicate the with the servers through a common alias ip address. But the actual ip address of servers can be different.Normally Active server would be having the alias ip.
    When switching take place from active to passive mode,server will be assigned with its actual ip address. When switching takes place other passive server becomes active and its get common alias ip address.?
    This is the actual scenario . And fake is used in Linux to refresh the arp table of immediate switching device.
    But i came to know that solaris os would do it normally when it switches .?
    Is this possible with solaris.?

  • Best Capture and Sequence settings for project ending up as digital file

    Hi. Looking for capture/setting advice.
    I am used to working in broadcast NTSC 10-bit uncompressed video, but I now have a project which needs to end up as MPEG-1 files. The tapes I have were recorded NTSC 4:3. Should I capture the footage in DV instead of Uncompressed 10-bit, and set my sequence frame size as DV? Will this avoid the reshaping of the image when I output to an MPEG1, or will I lose quality?
    Thanks for the knowledge.

    The tapes were recorded on DVCAM 4:3, but we have an
    analogue capture board (AJA IO).
    Then for best quality you should be capturing via FireWire as DV (its native format) and then editing in an uncompressed sequence.
    This issue came up after I had captured and edited in
    the 10-bit uncompressed (space is not an issue), then
    was called upon to export stills of the footage,
    which, of course, came out in the 720 x 486 format,
    much to the consternation of the person who had to
    use the stills. This person didn't understand how
    the MPEG1 files could come out square, but the stills
    came out in 720 x486. So it made me wonder whether I
    shoudn't be editing in DV or some other "square"
    format to begin with.
    DV (DVCam) isn't a square pixel format. It's the same as what you've got except it's missing a measly six usually-blank lines at the top. You just have to make sure it doesn't get stretched into the 486 lines.
    For your graphics person: all they have to do is stretch them to 10% narrower or 11% taller when they place them. That's all.

  • OSX Beta testing and Feedback assistant....

    I was in Mavericks OS X Beta Program and today I had to update my Feedback Assistant to Yosemite F.A. .... but I still dont have Yosemite to give feedback about... Am I missing something? Also checked AppStore updates... nothing there. Any comments?
    Is there Yosemite available for downlod to prior Beta testers or only to developers?

    Perhaps you missed the bolded bit below from the public beta program page?:
    How can I participate?
    To join the OS X Beta Program, just sign up using your Apple ID. When the beta software is ready, you’ll receive a redemption code that will allow you to download and install OS X Yosemite Beta from the Mac App Store. Then go ahead and start using it. When you come across an issue that needs addressing, report it directly to Apple with the built-in Feedback Assistant application. " 

  • Report for Req Material and Issue Material for Project/WBS

    Dear All,
    My client need a report for a WBS element-wise material required and material issue with value.
    Let me know if any standard report avialble for same??
    Or Incase of devlopment which are the tables we can use to Get req qty and issue qty of materials?
    Thanks and Regards,
    Atul R. Rajmane

    Dear Shirkant,
    Thanks for your input. I am using CN52N report.
    I this I have selected Req Qty, Qty Received, Qty Withdrawn, Shortfall Qty. I am getting figures in  Req Qty, Qty Withdrawn, Shortfall Qty but I am not able to get Qty Received figure. Let me know how I can get it i.e. for this any Note is required or any other configuration??
    If I can get this figure than I can use this report for requirement.
    Thanks and Regards,
    Atul R. Rajmane

  • I have Verizon FiOS service for phone, internet and TV but I only have one TV hooked up for it for just basic cable service with no DVR and no need for widgets.  Can I use an Airport Extreme as my router and not use the FiOs router?

    I want to use an Airport Extreme as my router.  I currently have a Verizon FiOS router.  I have Verizon for phone, internet and TV.  However, TV-wise, I just have a basic service for one TV with just a regular box.  No HD, no DVR.  Don't need access to a menu, widgets, on-demand.  Can I eliminate the FiOS Router and just use the Airport Extreme and still have phone and internet?

    I know that it will increase my wireless coverage in my house but will it increase the speeds?
    Not sure what you are asking here.  The AirPort Extreme is only going to be as fast as the Internet connection that it receives.....which is 75/75. It cannot take a 75/75 connection and make it go any faster.
    If you locate the AirPort Extreme in an area where you need more wireless signal coverage, the AirPort Extreme would deliver 75/75 in that area.  But, keep in mind that the AirPort Extreme must connect to the FIOS router using a permanent, wired Ethernet cable connection.
    If you are asking if the AirPort Extreme can wirelessly connect to the FIOS modem router, and extend the FIOS wireless network, the AirPort Extreme would not be compatible with a FIOS product for that purpose.

  • Creating/Testing and Using Agents for ODI Sequence

    Hi
    can you/anyone please tell/guide me how to Create a agent and use ODI sequence when i am doing File-to-File Mapping?
    I created an ODI sequence and an agent too. but i am unable to use this sequence coz it gives error like Connection fail for agent.
    and more over when I am testing my agent for connection my Application hangs and I have no choice but to close it forcefully and re-start.
    I am giving host as my target server IP and Port as my target's port (Same as defined in DataServer' URL).
    Please Advise/Help/Suggest.

    Hi
    can you/anyone please tell/guide me how to Create a agent and use ODI sequence when i am doing File-to-File Mapping?
    I created an ODI sequence and an agent too. but i am unable to use this sequence coz it gives error like Connection fail for agent.
    and more over when I am testing my agent for connection my Application hangs and I have no choice but to close it forcefully and re-start.
    I am giving host as my target server IP and Port as my target's port (Same as defined in DataServer' URL).
    Please Advise/Help/Suggest.

  • What are the BP and BF need for E- Recruitment configuration?

    Dear All,
    We are going to implement E-Recruitment.
    System is ECC6,  EHP6 and portal 7.3
    Client is Indian
    We are going to deploy below Business Packages in portal.
    BP Recruiter
    BP Recruiter Administrator
    We are going to activate below Business Functions in ECC.
    HCM_ERC_CI_1
    HCM_ERC_CI_2
    HCM_ERC_CI_3
    HCM_ERC_CI_4
    Are there any other to deploy BP and activate BF?
    Please guide me on this.
    Regards
    Anoku

    Hi Anoku,
    Please check the prerequisites for the business functions. You can find the documentation regarding the business functions in transaction SFW5.
    For example: Starting from HCM_ERC_CI_2, you will need to activate HCM_ERC_SES_1 as a prereq.
    Keep in mind: You only need to activate the business functions which bring you the functionality you need.
    Regards,
    Luk

  • Dimension and Facts need for telecommunication industry

    Hi All,
    I am preparing a raw datamodel for a telecommunication client. I would like have ur inputs on what all dimension i can have and fact for the following subjetcs.
    1.Customer Retention
    2.Customer Profiling and Se4gmentation
    3.Customer Care
    4.Campaign Management
    5.Forecasting and Service Planning
    6.Product Profitability
    I need help to form a raw data model. Pls help me out. looking forward to hear from u all.
    Regards
    Natesh

    The issue is resolved

  • Query needed for projects??

    Hi ,
    Iam not aware of projects module,but i got a requirement to built a projects module related query in R12 module.
    My requirement is i need to built projects invoice query.All important columns like customer_name,project_number,
    agreement,task_no,task_types,quantity,uom,invoice_amount this is what they told.
    Please can any1 who have projects module knowledge,help me by building the query.
    Regards,
    Kranthi.

    Are you going to answer the question asked?... is it an Oracle Apps question? Then go to the Oracle Apps forum... the volunteers there have domain knowledge.. This is a "general" SQL and PL/SQL forum

Maybe you are looking for

  • Please help...Can't find dependent libraries.

    I've searched and read, and tried several things but every time I run my application I get this: java.lang.UnsatisfiedLinkError: C:\JBuilderX\Projects\AlwaysOnTop\AlwaysOnTop.dll: Can't find dependent libraries      at java.lang.ClassLoader$NativeLib

  • File to IDOC Scenario using BPM

    Hi Experts,     I am working on file-Bapi-Idoc scenario using BPM.     I have two conditions 1. If the Sonumber is populated then need trigger an Bapi_change 2.If the Sonumber is not populated from the file then need to trigger a Bapi_Createfromdat t

  • Captioning Problem in Photoshop Elements 7 (and earlier)

    Photoshop Elements provides the ability to add a caption at the bottom of a full image screen. However, once I have typed the caption and click the down arrow to view and caption the next photo, the displayed photos quickly scroll to the last image.

  • Formatted search to update item description in Purchase order document

    Hello Everyone,    Has anyone developed a formated search to update the item description field on the PO or SO document?  I need to change the  standard Item Description  based on the BP catalog number but cannot seem to get it to work.  I know to ch

  • Set Document Restrictions to generated PDF Documents

    Hi, does anyone know, how to set PDF Document Restrictions (like Printing, Copying...) to the PDF Documents generated by BEx Broadcaster? Thank you for advices. Erik