Jump to content

Emistry

Forum Moderator
  • Posts

    10015
  • Joined

  • Days Won

    396

Everything posted by Emistry

  1. did you restart your server after you edit the changes for the party level exp sharing gap ?
  2. try this change getmapxy .@MAP$,.@X,.@Y,0; into this if( HP ) getmapxy .@MAP$,.@X,.@Y,0;
  3. LOL......=='' that line..................is not a BUG / Problem.... it is a....INFORMATION show by that NPC after it load... >.< i remember back then this questions has been asked several times...>.<
  4. Haha..i like GSD and i like to watch these AMV also...although some is suck...
  5. npc/scripts_athena.conf remove the following line npc: npc/merchants/refine.txt
  6. i guess the site is just temporary dead ??? because of the SOPA ? ( not really remember what name )
  7. Emistry

    DoTA Runes

    EDP doesnt not only give 2x of damage..perhap it is at least of 3x.... yes...it will be 2 minutes....
  8. nope...the lowest rate is 1% otherwise you need to do it separately i guess..xD something like this ? if( rand(10000) < 5 ) getitem <itemID>,<Amount>;
  9. you should inform us or teach us how to duplicate your problem...else just post your script in case if you dont know how to duplicate your problem.. if we cant locate the problem...we unable to solve it... and it is wasting time to ask the script creator or other member to keep try and error to keep try to duplicate the error..>.<
  10. OnTimer600000: // After 1 hour LOL ? Are you sure that is 1 Hours ?? /dum 600000 = 600 Seconds = 10 Minutes the correct 1 should be OnTimer3600000
  11. conf/inter_athena.conf // Global SQL settings // overriden by local settings when the hostname is defined there // (currently only the login-server reads/obeys these settings) sql.db_hostname: 127.0.0.1 sql.db_port: 3306 sql.db_username: ragnarok sql.db_password: ragnarok sql.db_database: ragnarok sql.codepage: // MySQL Character SQL server char_server_ip: 127.0.0.1 char_server_port: 3306 char_server_id: ragnarok char_server_pw: ragnarok char_server_db: ragnarok // MySQL Map SQL Server map_server_ip: 127.0.0.1 map_server_port: 3306 map_server_id: ragnarok map_server_pw: ragnarok map_server_db: ragnarok // MySQL Log SQL Database log_db_ip: 127.0.0.1 log_db_port: 3306 log_db_id: ragnarok log_db_pw: ragnarok log_db_db: ragnarok log_codepage: log_login_db: loginlog
  12. i think there is a Diff that allow you to increase the View ID to 2000... you have to diff a new client for it.....
  13. these doesnt exist in the rAthena / eAthena scripting yet... unless you are going to make your own script command.....xD
  14. try this prontera,155,181,5 script Sample 757,{ if( !getcharid(1) || getpartyleader( getcharid(1),2 ) == getcharid(0) ) { mes "^FF0000Failed^000000.Perhaps you are not in a Party or your are the Leader."; }else if( !isloggedin( getpartyleader( getcharid(1),1 ) )){ mes "Your Party Leader is Offline."; }else{ mes "Warp to Leader Location ?"; if( select("Yes","No") == 2 ) close; set .@CID,getcharid(0); attachrid( getpartyleader( getcharid(1),1 ) ); getmapxy .@MAP$,.@X,.@Y,0; warpchar .@MAP$,.@X,.@Y,.@CID; end; } close; }
  15. erm..then hex your own custom client... maybe some little trick you can try ? rename your clientinfo.xml to other.. rename your DATA.ini to other.. then hex your client to read that "clientinfo.xml" that you have renamed. then hex your client to read that "DATA.ini" that you have renamed. this is because..most of the client by default will read for clientinfo.xml and DATA.ini to access to the server
  16. check here ??? http://rathena.org/board/topic/53320-%e2%99%a5-e-m-i-s-t-r-y-s-s-c-r-i-p-t-s-%e2%99%a5/page__view__findpost__p__71628
  17. Emistry

    DoTA Runes

    well...thank for wakoko's script..which remind me on how to make the cloaking to work...xD hahaha @TS..you can try this 1 http://pastebin.com/raw.php?i=DP99WyLK edit the Runes Duration here ( in Seconds ) // Runes Duration in Seconds set .Duration,5; Coordinate Lists where it will Spawn Randomly.. // Random Coordinate where NPC will Shown Again setarray .CoordinateX[0],150,155; setarray .CoordinateY[0],175,175; this NPC only apply on 1 Map..if you want to use in other map...i suggest to duplicate the whole script and edit the location and coordiante random lists..
  18. change this #Newbie into these #Newbie // For Each Account Newbie // For Each Character
  19. add this system... http://rathena.org/board/topic/56424-advanced-common-drop-system/ then you will be able to limit the rate of items dropped by certain monster...
  20. put this at the warper... if( countitem( itemID ) < 2 ){ mes "Please bring 2 of this items."; close; }else{ delitem itemID,2; warpparty "prontera",155,181,getcharid(1); end; }
×
×
  • Create New...