Jump to content

en_dev

Members
  • Posts

    113
  • Joined

  • Last visited

Everything 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 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. go to your router settings, like 192.168.1.1, port forward your ports, both UDP and TCP
  3. en_dev

    Server Info

    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 Yup. Thanks for the info.
  4. en_dev

    Server Info

    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.
  5. en_dev

    Server Info

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

    Server Info

    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.
  7. yes its possible. setarray $exampleArray[0],'100,00','200,00','300,00' so on so fort.
  8. 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.
  9. dang, u know how to draw. looks great! maybe I should contact you for graphics screen.
  10. Thank you, i wanted to add image on mouse over but idk if it'll look good xD
  11. Thank you, yea I load all images from the start. My website loading will only take awhile at first load though.
  12. Thank you, feel free to throw suggestions I just finished coding world map online, if you go to that website then click the bottom arrow you'll see the world map.
  13. en_dev

    Problem

    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
  14. I just changed the theme, how was it now ?
  15. atcommand "@summon "+ .monsterid + " 60000"; that should hold the monster for 1hr, not sure if i got the number right, but the idea is right there
  16. Thanks, the more opinion you guys give, the more i can fill those missing spots.
  17. 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. The ro part, yes.
  18. I just added new features on the bottom, soon will be online
  19. Prolly that item doesn't exist in your lua, and or some of your data files like numdescription something, sorry forgot the name of the file, but on your lua, it should be the accessory_id.
  20. en_dev

    N>Codes

    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.
  21. 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.
  22. en_dev

    @mute problem

    Hmm, like the player that got muted is not seeing the mute icon above her/his face?
×
×
  • Create New...