Jump to content

en_dev

Members
  • Posts

    113
  • Joined

  • Last visited

Posts posted by en_dev

  1. All images used belong to their respective owners. backgrounds are rendered.

    for live preview of my latest design/code -> http://demo4.xrovolution.com/

    below is my patcher design/code

    patcher_preview.jpg

    the big image above is a slider, the news and links are tabs that switch information.

    This is my 4th latest coding and design with flux. Feel free to browse my live site.

    I appreciate all the rates and comments. Thank you.

  2. Yes, it's safe to update. You should be updating regardless.

    Though, with r16382, a lot of things have changed in the NPC folder and the source functionality.

    Since there is a change on npc location and other files, does tortoise will move them automatically ?

    If you're using Pre-re, NPC locations should of stayed the same. If you're using RE, they'll be moved (Especially on the map Izlude).

    Ok thanks, since i haven't started any modification on my server, i will probably download a new copy of rathena.

    If you have no heavily modified sources/scripts/dbs, I suggest you always get a clean copy of rAthena :P

    Yup. Thanks for the info.

  3. Yes, it's safe to update. You should be updating regardless.

    Though, with r16382, a lot of things have changed in the NPC folder and the source functionality.

    Since there is a change on npc location and other files, does tortoise will move them automatically ?

    If you're using Pre-re, NPC locations should of stayed the same. If you're using RE, they'll be moved (Especially on the map Izlude).

    Ok thanks, since i haven't started any modification on my server, i will probably download a new copy of rathena.

  4. Yes, it's safe to update. You should be updating regardless.

    Though, with r16382, a lot of things have changed in the NPC folder and the source functionality.

    Since there is a change on npc location and other files, does tortoise will move them automatically ?

  5. I have no idea where to post this, mods can move this topic if its inappropriate. Thank you.

    anyways, is it safe to update rathena revision to latest one? if yes, there are some file location modifications, are there any issues regarding that ?

    Thank you.

  6. on your php mysql admin, click your database, then do sql query, enter this info

    UPDATE `ragnarok`.`char` SET `base_level`=1 and `job_level`=1 and `base_exp`=0 and `job_exp`=0 and `str`=0 and `agi`=0 and `vit`=0 and `dex`=0 and `luk`=0;

    above query will reset all your characters to lvl 1/1 , base and job exp to 0, and all stats to 0, you can also add point to 0, i just forgot the right field name.

  7. Nice one :)

    I already worked on a design with the same system (loading the whole site, manage pages with a javascript animation) but I abandoned this way :

    Loading all images from each pages it's a bit long for the network, and the SEO isn't really structured.

    Well I sent you a pm for two things about your website.

    Keep it up :)

    Thank you, yea I load all images from the start. My website loading will only take awhile at first load though.

  8. go to your src/common/mmo.h open that file and look for #define PACKETVER

    make sure the define settings there match your client version, you also need to modify your db/packet_db.txt to the right version.

    what i mean settings, if your client date is 2012-04-10 , then on #define PACKETVER should be 20120410

  9. i think the "xtreme R.O evolution" logo in the middle of that inicial BG killed the website..

    there are some really nice features but the design doesnt all match ><. what i mean is, there are 2 different design styles in the website, it starts with a white cartonish style, and then the content is inside a dark cool css style based design.

    and is the content all loaded in the first website load? or are the other pages loaded with ajax later on? you should consider using ajax with anchor navigation, for better seo and so ppl can send links of pages.

    All pages are inserted in first load, but there are sub pages, example, the updates section, click any of those links, will take you to a second page, which is seo friendly. Navigation is smart enough to detect which page is loaded then it directs on that page.

    Is that bleeding cowboys font? -_-

    The ro part, yes.

  10. Using form, example below.

    <form method="post">

    <select name="Gender"><option value="M">Male</option><option value="F">Female</option></select>

    </form>

    Then you gonna use php code to fetch all those variables like $getGender = $_POST['Gender']

    where $_POST['Gender'] comes from name select tag.

    do php security also for sql-injection.

  11. So its just adding value 30 in your diasvip table.

    Mysql Script example below.

    Insert into ragnarokTable (col1, col2, col3, diasvip) Values ('','','','30')

    You can run that on mysql sql or any mysql program you got. Change ragnarokTable to your target table, change col1 col2 or col3 to your login table columns, you can add as long as it exist in your table.

    if you can give me a screenshot of your login table, I could give you the whole code.

    • Upvote 1
×
×
  • Create New...