Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by shadow-xx

  1. shadow-xx

    Which Games Should Be Filmed Most?

    Lufia 2 is on the first spot in my list because IMO it has an awesome story.
  2. shadow-xx

    Chnage Site Name...

    That number is a ip adress if you want to give it a domein name you could try a free one like the ones you can get here > You must be registered for see element.
  3. shadow-xx

    Wipe All..

    In MSSQL open a query window and fill DELETE FROM tablename and execue it in the gunz database Note : replace "tablename" with the name of the table i cant remember the table that stored all that info lol also i dont remember if any of the tables where linked it might not work
  4. shadow-xx

    GunZ Rankings Page

    did you change the amount of rows it will output? to like 0 or turned of all the fields.. tbh i wont know if its a mistake in the code.. haven't looked at the source since forever
  5. shadow-xx

    Wipe All..

    Use a delete query.. example: DELETE FROM <tablename>
  6. shadow-xx

    GunZ Rankings Page

    It only works if you have accounts with characters linked to them
  7. shadow-xx

    [Release]LuckyBag

    This is old because it was made in 2007 when gunz pservers where at their early stages..
  8. shadow-xx

    Registration Page not Working!!!

    Find a guide about how to port forward the modem/router on You must be registered for see element. Then read my guide to check if its open for real.. > You must be registered for see element.
  9. shadow-xx

    "AID" colun HELP me

    AID Stands for Account ID its used to link data that belong to the same account INT(1) or INT(2) or anything like that is the value the field can contain INT Stands for Integer that means the field can only contain Numeric characters The number behind INT is the maximum amount of characters...
  10. shadow-xx

    FAKE: Google is trying to set us up!

    Re: Google is trying to set us up! DNS Info.. of > thenewwebproject.com Doesn't look like any of the company's registered that.. just look up the dns info if you think the above is fake
  11. shadow-xx

    [PHP] GET parameters

    use $_GET[''] to grab the data from it not sure about this but isnt that data limited to a amount of characters?
  12. shadow-xx

    PHP - Giftitem

    the value 1 is numeric it doesent need quotation marks
  13. shadow-xx

    PHP - Giftitem

    Try usign this query as example to grab data from another table without using php to get and inserting it into the database.. INSERT INTO $table_login (UserID,AID,Password,RegIP) SELECT '$user',AID,'$pass','$ip' FROM $table_account WHERE UserID='$user'" Copyd the query from my reg page..
  14. shadow-xx

    PHP - Giftitem

    Ur trying put put alphanumeric data into a field that can only contain numeric values Try outputting all of these and see if any of them contains anything else then numbers if the fields can only hold numeric values.. $aid $itemid GETDATE()
Back
Top