Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Kajamaz

Members
  • Posts

    661
  • Joined

  • Last visited

    Never

Everything posted by Kajamaz

  1. Hmm… i dont know how to use them ingame... but it'll be a source for clan people for my game, they can make a clan logo useing these! Thanks!
  2. GAME IS BACK UP, we are still in need of a trailer maker and paperdoller above all. Everyone is welcome to be an alpha tester!
  3. Ever Since we got JC Denton… Robin Dissapeared, what happened? I mean he hasnt worked on eclipse for 2+ years and he hasnt even been on the forums, what happened?
  4. > You are serious? for 400 dollars? a spell checker? No lol ![:P](http://www.touchofdeathforums.com/community/public/style_emoticons//tongue.png)
  5. > Credit will be fine. I'll see you in game ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons//wink.png) Im pritty sure abhi's just… trolling, and your trolling... so... i hope to see you ingame, but we wont pay 400$ a month for a spell check :|
  6. > Hey, I'm a developer for Voltisoft (Navarius Online/Naya Online/Etc…) and I have a great deal of MMO knowledge. If you still need it, I can GM/Moderate for you. Well… you can register on the forums in the mean time, when the game comes out, if you spend enough time ingame and on the fourms helping players out, i might consider you on the moderating team!
  7. > Kajamaz, I hope you don't mean to convert the engine itself, you can try to convert the maps. Yea, maps, items and npcs'. Not the engline lol ![:P](http://www.touchofdeathforums.com/community/public/style_emoticons//tongue.png)
  8. > You need to move the data to the correct format. > > Basically, you take your rec and get the new rec (rec is the structure of the data your trying to convert), adjust the order of the rec on yours and fill in the other stuff as blank. Go through it and fix any errors you find. For example, ItemRec you would move each data type to the order of the new ItemRec. This requires programming knowledge to do, sorry. ![:(](http://www.touchofdeathforums.com/community/public/style_emoticons//sad.png) Wasn't there a converter?
  9. So.. we've tryed to convert old eo to the new one and all that we get is errors. How do we convert, is there a tutorial or program to do so? Thanks!
  10. > oh boy…what a team, i'll sit back back and watch how this goes. good luck to you all. ![:lol:](http://www.touchofdeathforums.com/community/public/style_emoticons//laugh.png) Thanks ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png)
  11. We Are rereleasing the game and are in need of a few staff members, look through the list and if possible, pm me and reply to this topic with examples of former expirence and what position you would like.
  12. > Haha, sure! I'd love to. =] > > Email me if or when you need something. > > [email protected] Hmm… we will re-release our game soon so i hope to see you on, but first i will need to actually see you on and to see you helping other people out before i even consider you on the staff list. Also the game experience isnt needed unless you were ACTUALLY A MOD! It looks like you just listed games you played.... that doesn't make you an expirienced staff member, just an expirenced player, and there are PLENTY of those. I will say though, gj on the page layout, very... proish.
  13. I can barely see them :| QUALITY IS EXCESSIVLY low… You really need to turn up the quality or try a different file format... Also plz, dont make people download two things, just put up some screenys on the page.
  14. Kajamaz

    Swf Sig

    I wanna put in a little swf sig, can i plz? Its not too large so… ya... :/
  15. Its not an intro maker, its a banner creator, and i guess it can work as an intro but meh… Well i guess i cant really compain. Thanks for sharing this. I'll Try it ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png)
  16. I like this Version! Keep up the good work, but one HUGE suggestion, please try to add guilds instead of juke box, it serves more of a purpous ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png)
  17. I think he took it down because no one used it…
  18. Kajamaz

    Java Help

    OMG thats exactly what i had but i mispelled something in my code so it fked up :/ It was driving me nuts… Thanks...
  19. Kajamaz

    Java Help

    Im Asking you to help me and simply show me an example of that code working , the entire code… If i know with that example i can do the rest on my own :/
  20. Kajamaz

    Java Help

    > double rub[] = {23.0, -102.1, 88.23, 111, 12.02, 189.119, 299.88};[/font] > > double dub[] = {1, 2, 3, 4, 5, 6, 7, 8, 9};[/font] > > Write a single line of code (using arraycopy) that will result in dub looking like this: > > {1, 2, 3, 4, 111, 12.02, 189.119, 8, 9} > > System.arraycopy(rub,3,dub,4,3); //Copy 3 elements from rub starting at index 3 into dub starting at index 4. > > double[] zz, top = {12.1, 13.1, 14.1, 15.1, 18};[/font] > > zz = top; > > zz[2] = 99; > > top[3] = 100.2; > > Show what “both” arrays would look like at the completion of the above code. > > zz and top = {12.1,13.1,99,100.2,18}; //Since arrays are actually object references, so setting zz to top results in a reference. > > char[] a, b;[/font] > > a = “Groovy dude”.toCharArray( ); > > b = “I like this”.toCharArray( ); > > System.arraycopy(a, 1, b, 0, 4); > > What do the two arrays look like at the completion of this code? > > a = {G,r,o,o,v,y, ,d,u,d,e} > > b = {r,o,o,v,k,e, ,t,h,i,s} > > //Copies "roov" from Groovy into array b. > > Assume the array myArray in #12 has been correctly sorted. What would be printed with > > the following? > > System.out.println( Arrays.binarySearch(myArray, 56) ); > > System.out.println( Arrays.binarySearch(myArray, 102) ); > > Where is #12? > > What does the following print? > > int xc[] = {123, 97, -102, 17};[/font] > > int pk[] = {123, 79, -102, 17};[/font] > > int gs[] = {123, 97, -102, 17};[/font] > > System.out.println( Arrays.equals(xc, pk) + “\n” + Arrays.equals(xc, gs)); > > false, true > > Since the _contents_ of the array xc != pk, and the contents of xc and gs are the same. > > Thanks for the answers man but i want to know the code i should use to make this work! > > int pickle[] = {1, 2, 3, 4, 5, 6, 7, 8}; > > Arrays.fill(pickle, -1); > > System.out.println( pickle[4] ); > > Please can you write out the Full code including the class and the static void main, i cant get it to work :/
  21. Kajamaz

    Java Help

    Well, i'm doing some questions in Java and i have some issues with some questions. double rub[] = {23.0, -102.1, 88.23, 111, 12.02, 189.119, 299.88}; double dub[] = {1, 2, 3, 4, 5, 6, 7, 8, 9}; Write a single line of code (using arraycopy) that will result in dub looking like this: {1, 2, 3, 4, 111, 12.02, 189.119, 8, 9} double[] zz, top = {12.1, 13.1, 14.1, 15.1, 18}; zz = top; zz[2] = 99; top[3] = 100.2; Show what “both” arrays would look like at the completion of the above code. char[] a, b; a = “Groovy dude”.toCharArray( ); b = “I like this”.toCharArray( ); System.arraycopy(a, 1, b, 0, 4); What do the two arrays look like at the completion of this code? Assume the array myArray in #12 has been correctly sorted. What would be printed with the following? System.out.println( Arrays.binarySearch(myArray, 56) ); System.out.println( Arrays.binarySearch(myArray, 102) ); What does the following print? int xc[] = {123, 97, -102, 17}; int pk[] = {123, 79, -102, 17}; int gs[] = {123, 97, -102, 17}; System.out.println( Arrays.equals(xc, pk) + “\n” + Arrays.equals(xc, gs)); I Cant Answer those 5 Questions, can someone answer them or one of them? For Some reason i get compiler issues.
  22. Kajamaz

    Add Mp3's?

    Umm, well we followed a tut on adding mp3's and when you open admin panel, then open maps, then map properties, select an mp3 file, and click play it plays fine, but when you click ok and save, leave the map and renter the song doesn't play, any suggestions?
  23. Aaron, i wanna tell you that i think we got the mp3's to work ![:D](http://www.touchofdeathforums.com/community/public/style_emoticons//biggrin.png) Gonna use your music in beta, idk how much time and effort you put into it but you are get all of the credit Possible in the world O_O
×
×
  • Create New...