Jump to content
xisto Community

virtuous8

Members
  • Content Count

    11
  • Joined

  • Last visited

About virtuous8

  • Rank
    Newbie [Level 1]
  1. check out http://www.joymax.com/silkroad/ this is a free MMORPG from Korea. The online game 'SilkRoad' targets the unceasingly active world other than the existing online games which the has built the entrenched world. On the specious Silk Road, the merchants constantly moves for trading and burglars who intend to strip them of goods. In addition, there are hunters who specialize in removing such burglars. On the Silk Road which seems to be static, the hostility and secret strife in which various groups continuously engage for the benefit of their own groups inform the Silk Road world with new life. Besides, there is no fixed job in the SilkRoad world. All players can freely promote the growth of their own characters by their wills, and change his/her own group to other groups like merchant, burglar and hunter which he/she affiliated with as well as alter his/her character. The player is to have an experience of ultimately free world with setting up not fixed, organically changed world. The server system processed in the parallel decentralization can simultaneously accommodate a large group of users without fail and offer the more fresh game by virtue of minimized loading time. Moreover, realizing the more natural character's movement through the motion blending and dynamic animation technique provides the players with the improved oneness with the character. Now, the road to SilkRoad is open to you.It is entirely up to you whether you will earn much money in the trade, become one wolf which pounds the extensive and outlawry continent or play an active part of guardian who protects the peace of SilkRoad.
  2. My suggestion: I like the nets to be fewer and thicker lines, otherwise it wont look discernable if you have a smaller logo. The drop shadow for the 2nd logo is not pleasing to my eyes. Maybe you can add faint borders on the text. The teal text is hard to read. I prefer the 1st logo better because its easy to read. The second image u have a yellow text against white bg, and its hard to read, u need more energy to read it.
  3. The best cure of AIDS is abstention from any sexual behaviors and thoughts.
  4. First of all, if C++ doesnt give you power then you can go to C, the first thing to start making game is to create a game design.Activities involving game design are : story, lore, storylines, characters, maps, game analysis.The second stage are : requirement analysis, cost estimation(you want to estimate how long will it take you to finish), environment (what is the implementation language, the infrastructure if you are creating a multiplayer game).The third stage is to find someone who has the same game interests as you, nothing is more enjoyable than working in a team.The fourth stage is to get some funding or sponsors.The fifth stage is start making your game.
  5. I voted for Direct3D. Direct3D is designed to be a 3D hardware interface. The featureset of D3D is derived from the featureset of what hardware provides. OpenGL, on the other hand, is designed to be a 3D rendering system that may be hardware accelerated.
  6. A database consists of tables.To create tables you should begin with data analysis, or relational model analysis.This analysis is very useful when you want decompose the data into appropriate tables.Begins with relational diagram, identiy is-a , has-a, and other relationships between objects.For example: a department has one or more employees, a department has at most one manager.is-a relationship is like subclassing in programming term.After you have constructed the diagram, you then begin decompose it into tables using standard rules.example: when A involved in many-to-one relationship C with B , then you create 2 tables for A separately, and a table for the relation C separately, B is now absorbed in the relation C, all the attributes,keys of B are combined with C.example to create a table: create table C(attribute1 datatype1, attribute2 datatype2,...) A many-to-one relation to C when some element of A is mapped to the same one element of C, and each element in A is mapped to exactly one element in C.
  7. Google just added browser based messenging into gmail.There are feature limitations compared to desktop based messenging programs.Nevertheless, with a vast storage size, you dont need to delete anything!Get Gmail.
  8. start with an xml file: <?xml encoding="utf-8" version="1.0"?><root> <contact type="business"> <name>John</name> </contact> <contact type="business"> <name>Jane</name> </contact> <contact type="business"> <name>Jack</name> </contact> <contact type="family"> <name>Jim</name> </contact></root> now write your contacts.xslt file: <?xml version="1.0" encoding="utf-8"?><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform/ ; <xsl:output method="xml" encoding="utf-8" /> <xsl:template match="/"> <html> <xsl:for-each select="//contact/[type=business]"> <xsl:call-template name="contact" /> </xsl:for-each> </html></xsl:template> <xsl:template name="family"> <xsl:value-of select="./name" /> <br/></xsl:template></xsl:stylesheet> now you need xslt processor to combine xml + xslt, in php there is get Sablotron xslt processor. example using Sablotron: <?php $xmlFile = 'contacts.xml'; $xslFile = 'contacts.xslt'; // Create a new processor handle $xslt_processor= xslt_create() or die("Can't create XSLT processor handle!"); //set up parameters //$parameters = array('searchstring'=>$searchstring); $parameters = NULL; //perform the XSLT transformation $result = xslt_process($xslt_processor, $xmlFile, $xslFile, NULL, NULL, $parameters); // Free up the resources xslt_free($xslt_processor); echo($result);?> the output is: John Jane Jack notes and explanation: xslt uses powerful xpath expression to navigate through the xml parsetree.
  9. Hello potential webmasters, check out YaBB http://www.yabbforum.com/ if you are looking for flat-file web forum software. its good for small scale, sparse maintenance rate website.
  10. my first MMORPGWorld of Warcraftmy second MMORPG: Silkroad Onlineand its free, get it at http://silkroad.net/
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.