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

lexkymbeth

Members
  • Posts

    382
  • Joined

  • Last visited

    Never

Posts posted by lexkymbeth

  1. > IDs in a database should never be changed, having gaps is absolutely fine and isn't something you should worry about.

    Why should they never be changed? I do not see a problem with changing them.. Everything still works with my program and website after doing this. Although there is another way to get past gaps I found this useful for OCD :S (lol)
  2. Don't know the real name to this so I guess 'refit' works.

    This php function fixes indexes after you remove an item, say you have 5 rows and you delete the 4th you now have (1,2,3,5)

    This function will fix that so there are no missing indexes, (1,2,3,4) Its basic and there could be better ways but this is how I did it

    Arguments of mysql as mysqli object, and table as string

    ```
    function fixRows($mysqli, $table) {
    $result = $mysqli->query("SELECT * FROM `$table` ORDER BY `Index`");
    $count = 1;
    while($row = mysqli_fetch_array($result)) {
    if($row['Index'] != $count) {
    $oldIndex = $row['Index'];
    if(!$mysqli->query("UPDATE `$table` SET `Index`='$count' WHERE `Index`=$oldIndex")){
    die('Error: ' . mysqli_error($mysqli));
    }
    }
    $count++;
    if(!$mysqli->query("ALTER TABLE `$table` AUTO_INCREMENT = $count")){
    die('Error: ' . mysqli_error($mysqli));
    }
    }
    }
    ```
  3. 1\. You send all  the files over but the src folder. This will allow the client to connect to the server and have all the graphics

    2\. No you have to share it, just don't send the source

    3\. Other people cant connect to your local host you have to port forward and use your internet IP, and no it does not send graphics see #1

    4\. You can edit the character sprite and draw one, or program it in (Create a shadow image to render under the sprite)
  4. Its created in java, you can create your own textures and models if you would like it downloads a defualt texture and sound pack you can change pretty sure I have to check when I get home
  5. **Currently working on Space Wars 2.0 (SWIFT, More FPS, ECT)**

    Hello, just posting some of my work on IOS :S The apps showcased here are released

    The Space Wars ($0.99) ~ [https://itunes.apple.com/us/app/the-space-wars/id898526245?ls=1&mt=8](https://itunes.apple.com/us/app/the-space-wars/id898526245?ls=1&mt=8)

    (Since I'm legaly not old enough to have my own developer account my its in my mothers name)

    The Space Wars is an arcade game written in AS3, currently in upgrade for IOS8 with new SWIFT language (Much faster than AS3)

    The new version will be free with advertisements you can pay to remove

    >! ![](http://a4.mzstatic.com/us/r30/Purple3/v4/0b/3b/3a/0b3b3a9b-b5cb-3cfa-04b5-8cdf84f841b9/screen568x568.jpeg) ![](http://a2.mzstatic.com/us/r30/Purple3/v4/08/3c/c6/083cc696-75eb-583c-b585-7f606a16c339/screen568x568.jpeg) ![](http://a5.mzstatic.com/us/r30/Purple3/v4/a0/e3/6e/a0e36e4e-2292-4c48-bee4-8aefb084c0cd/screen568x568.jpeg) ![](http://a5.mzstatic.com/us/r30/Purple3/v4/23/8c/fd/238cfd3e-6d1d-0c2d-f4a3-490cf12097f3/screen568x568.jpeg)

    The Spartan Post (Free) ~ [https://itunes.apple.com/us/app/spartan-post/id819479501?ls=1&mt=8](https://itunes.apple.com/us/app/spartan-post/id819479501?ls=1&mt=8)

    (The account is under my school, they first got me this account.) 

    This app is going to be under edits for the new language & _IOS8_ but working on 4 apps at a time is hard :S

    Its basically an app that brings my school together with news, morning videos, scores (soon) contacts push notifications ect. All data on the app can be edited by a website written in php

    >! The screen shots are older than the app sorry XD I should update them…

    SOON:

    A Game of some sorts dealing with you (the player) being an antivirus and fighting off viruses ~ (Free with advertisements and buying levels / antivirus upgrades)

    A app for the high school football ref's to check ruling on plays and penalties ($10.00 ~ could change this was recommended by my computer teacher (He is a ref))
  6. No its not about worms.

    [http://www.wurmonline.com/](http://www.wurmonline.com/)

    'The Sandbox MMO' Voxelbased Sandbox MMO

    Awesome game you can do pretty much anything in midevil time, create a house, a kingdom, a boat/ship, fight giant spiders, dragons wolf bear ect

    The game is really immerse you have to cut down trees then sit there and craft logs for hours (This part is boring…) Mine ores (Its voxel based) clear/flatten land

    I've only played the game up till creating my own house (took 24 hours)  last year, lost my username/password :S

    Has anyone played this? I get bored starting over alone D:
  7. Try

    ```
    If bestIndex > 0 And bestIndex <> myTarget Then
    call playertarget(bestIndex, TARGET_TYPE_NPC) // I always found it odd how some subs (not all) need to be called :S
    End If
    ```
    Looks like playertarget (the sub or function) is missing did you type it exact?if you named the sub, playerTarget then it needs to be playerTarget (case matters)
  8. > Sorry dude, nothing pisses me off more than minecraft…. I used to run servers with lex all the time, we ran some great servers and around the last year and a half the game just filled with kids begging for staff, ranks, trolls, kids attempting to scam and failing... that's all it really is. In the past it was great, you had great communities awesome servers, factions, townies, people playing for the enjoyment of the game. now it's like everyone and their mothers owns a server and kids don't learn to respect rules of a community,

    I don't play minecraft anymore I created the topic because mojang is not owned by notch anymore. wanted to see what others though since I spend two years? I think it was two years of my life with crest n' servers

    Microsoft bought mojang (I think) because they only appeal to older folk. What kid would buy a windows phone when everyone else has iPhones? xD Now that they have minecraft they can monopolize off of children (Their parents money)

    What I really hate is how they changed their eula and then this happens not to far after XD
  9. Just a heads up its not very safe to do checks on the client, nor sending them hidden data (like all the serials) The client should send a code and then the server checks the code not the other way around. Some one could use a packet editor/reader to find the serials when they are sent to the client

    ```

    If txtCode.Text = Serial(a).Name Then
    ```
     – Client side, should be server side, shouldn't send Serials to the client. Do checks on the server
  10. > A little heads up for 1.3 daro and myself, have planned a few features not before done by eclipse and thats another reason we're deciding to go closed source.

    Next your going to want money and start selling it as eclipse 4.0 :P

    *Joke*
×
×
  • Create New...