Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. @imrfreezing just follow the structure given to setup your own refiner ... @blueicerains check for map-server error and etc...
  2. euphy has changed the script for woe long ago ...and it break the functionality of other woe controller... either you can revert it back using the old guild folder...or switch to euphy's woe controller.
  3. probably here query_sql("SELECT FIND_IN_SET('"+.@charmap$+"', '"+.maps$+"');",.@q); if(.@charmap$!=.tmp$[(.@q-1)]) end; you can try something like this .maps$ = "aldeg_cas01|gefg_cas01|payg_cas01|prtg_cas01"; if( compare( "|"+.maps$+"|","|"+strcharinfo(3)+"|" ) ){ // check dual here. }
  4. probably you changed the setting here ? https://github.com/rathena/FluxCP/blob/master/config/application.php#L23
  5. you can refer this text file to write your own item bonus doc/item_bonus.txt
  6. UPDATE `char` SET `class` = XYZ WHERE `class` = ABC; replace the value yourself ... XYZ = 2nd job ID ABC = third job ID make sure you shutdown server before run this. you can also try other way....simpler... OnPCLoginEvent + jobchange
  7. Emistry

    If only

    my own experience for scripting ... i used to search every single topic in here http://www.eathena.ws/board/index.php?s=79f689a6fb93259d61f8f27404fbfb0b&showforum=56 what i meant is ...EVERY SINGLE TOPIC + POSTS YES..everything not to mention that i read every topic and posts more than 1 times.... then after sometime ... when i capable to start writing .... i found sensei ~ AnnieRuru ...and Keyworld...and ToastofDoom .Z3R0 ... etc ... day by day get scolded by AnnieRuru ... day by day getting advise from Z3R0 and Keyworld .. then only i started to get improvement .. sometime.... it's not that people unwilling to share their knowledge ... it's just that they wanted you to find it by yourself ...since it's already in the forum .. something like feed you with food = survive 1 day cook food by yourself = survive all the time ~.~ ... now i have no idea what i wanted to say ... EDIT: those multi quotebox ... are soooooo irritating .... xP
  8. when diff your client, add this extend chat box
  9. Emistry

    Vote System

    one of the example~ http://gtop100.com/incentivevoting http://gtop100.com/pingbackvoting but it's premium member features..
  10. .@item = groupranditem( <item_group_id> ); announce strcharinfo(0)+" gained "+getitemname( .@item ),bc_all;
  11. Emistry

    Reward NPC

    isnt that you already have it in your current script ?? - check weight function if( Weight > ( MaxWeight / 2 ) ){ mes "Please make sure you are not Over Weight."; close; } - only selected ID will get the reward if(getcharid(3) == 2000002 || getcharid(3) == 2014412 ) { .. ... .... }
  12. if you live at GERMANY then use GERMANY ... if you live at TURKEY then use TURKEY ... just try use english language .. when entering the data ..
  13. update your server svn ... and..dont post your full script in codebox ... it's suck ... use paste link instead.
  14. add all your custom database here https://github.com/rathena/rathena/tree/master/db/import-tmpl
  15. change item type to 11 .... and change the item script to use sc_start
  16. http://rathena.sourceforge.net/tools/diff_patcher.php?client=2010-07-30aRagexeRE click your desired settings..and download.
  17. Wew ...thx annie for the help to fix my buggy script xD
  18. maybe you didnt set the correct client date here ?? src/common/mmo.h#L23 or missing packets ?? hmm
  19. maybe their paypal account need to have balance stored as EUR currency ?? maybe you can try change to use other currency instead of using EUR ?
  20. https://github.com/rathena/rathena/blob/master/db/re/skill_require_db.txt maybe just change the skill requirement here ?? hmm
  21. some basic info http://en.wikipedia.org/wiki/SQL_injection http://www.w3schools.com/sql/sql_injection.asp
  22. change the FOR-LOOP variable or the variable i used in my sample script ...currently both are using same variable ..
×
×
  • Create New...