Jump to content

Dori

Members
  • Posts

    332
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Dori

  1. <script src="http://static.pricepeep.net/apps/tv-classic/pricepeep/tv-classic-pricepeep.js"> </script> Actually I didn't leave the page/tab opened for a while. The only way I can post is after deleting cache files from chrome. But even after that I can't click on edit post or post without opening them with a new tab. Every time I post, this message appears on my posts. <script src="http://static.pricep...ic-pricepeep.js"> </script>
  2. FIXED IT For those who want the "Day/Night Mode" announcement disabled: in Pc.c find: int map_day_timer(int tid, unsigned int tick, int id, intptr_t data) { char tmp_soutput[1024]; if (data == 0 && battle_config.day_duration <= 0) // if we want a day return 0; if (!night_flag) return 0; //Already day. night_flag = 0; // 0=day, 1=night [Yor] map_foreachpc(pc_daynight_timer_sub); strcpy(tmp_soutput, (data == 0) ? msg_txt(NULL,502) : msg_txt(NULL,60)); // The day has arrived! intif_broadcast(tmp_soutput, strlen(tmp_soutput) + 1, 0); return 0; } /*================================================ * timer to do the night [Yor] * data: 0 = called by timer, 1 = gmcommand/script *------------------------------------------------*/ int map_night_timer(int tid, unsigned int tick, int id, intptr_t data) { char tmp_soutput[1024]; if (data == 0 && battle_config.night_duration <= 0) // if we want a night return 0; if (night_flag) return 0; //Already nigth. night_flag = 1; // 0=day, 1=night [Yor] map_foreachpc(pc_daynight_timer_sub); strcpy(tmp_soutput, (data == 0) ? msg_txt(NULL,503) : msg_txt(NULL,59)); // The night has fallen... intif_broadcast(tmp_soutput, strlen(tmp_soutput) + 1, 0); return 0; } Replace With: int map_day_timer(int tid, unsigned int tick, int id, intptr_t data) { // char tmp_soutput[1024]; if (data == 0 && battle_config.day_duration <= 0) // if we want a day return 0; if (!night_flag) return 0; //Already day. night_flag = 0; // 0=day, 1=night [Yor] map_foreachpc(pc_daynight_timer_sub); // strcpy(tmp_soutput, (data == 0) ? msg_txt(NULL,502) : msg_txt(NULL,60)); // The day has arrived! // intif_broadcast(tmp_soutput, strlen(tmp_soutput) + 1, 0); return 0; } /*================================================ * timer to do the night [Yor] * data: 0 = called by timer, 1 = gmcommand/script *------------------------------------------------*/ int map_night_timer(int tid, unsigned int tick, int id, intptr_t data) { // char tmp_soutput[1024]; if (data == 0 && battle_config.night_duration <= 0) // if we want a night return 0; if (night_flag) return 0; //Already nigth. night_flag = 1; // 0=day, 1=night [Yor] map_foreachpc(pc_daynight_timer_sub); // strcpy(tmp_soutput, (data == 0) ? msg_txt(NULL,503) : msg_txt(NULL,59)); // The night has fallen... // intif_broadcast(tmp_soutput, strlen(tmp_soutput) + 1, 0); return 0; }
  3. So far I haven't had any problems with this site, but 2 days ago when I tried to reply or edit posts, the site doesn't response. I click on edit/quote and nothing happens. But when I open them in a new window or new tab it works. And sometimes when I post, what I have written wont get posted, instead some weird script code appears. I'm not sure if it is my browser Chrome (then again all of a sudden?) but I tried explorer, and explorer crashed when I tried to do above things that I listed. I don't have this problem with any of the other forums or sites except Rathena. Has anyone else run into this issue?
  4. Thanks for the reply. The recompiling went well without any errors, But in-game when I tested out Day or Night the client crashed. Note: I used @day and @night to test this out. May be I have to edit the atcommand.c as well I'll try to let day or night change without using the @command and see if it errors. EDIT: Ok so I tried it. Day and night changed without an error But a message still appears when it changes (and not in english). Look below.
  5. How can I remove the "Day/Night Mode Activated" message? I've done this previously by commenting the below lines in src/pc.c, but now it errors when I recompile. strcpy(tmp_soutput, (data == 0) ? msg_txt(NULL,503) : msg_txt(NULL,59)); // The night has fallen... intif_broadcast(tmp_soutput, strlen(tmp_soutput) + 1, 0); strcpy(tmp_soutput, (data == 0) ? msg_txt(NULL,502) : msg_txt(NULL,60)); // The day has arrived! intif_broadcast(tmp_soutput, strlen(tmp_soutput) + 1, 0);
  6. Is there away to stop the /.help menu from auto displaying when login in? Is it maybe a lua file?
  7. Dori

    SQL update errors

    Ok Thank you once again for taking your time to help me with this issue. +1
  8. Dori

    SQL update errors

    Thanks alot! it worked. I do have one last question though. When I imported mob_skill_db_re.sql and item_db2_re.sql they didn't appear in the tables list. Is this normal?
  9. Thank you for the detailed reply! Now it makes alot more sense to me. And yes I would like to have the bonuses from weapon elements as well. Could you let me know which lines I must edit for that?
  10. Dori

    SQL update errors

    Yes I have MySQL command-line client installed. I get this after done typing. and nothing happens after. I dont get the error it's indicating either..
  11. Dori

    SQL update errors

    Thanks for the reply Brian. I'm jus confused with the below step. I'm not sure what you meant by 'Ragnarok' database name. Is this what you meant by that? Also, when I put the path to mob_skill_db.sql, am I to put the path from where I have it saved on my computer? or the website url? I tried doing what you said and when I type the following nothing happens. Or what am I doing wrong? mysql -h myip -u myuser -p ragnarok < C:\Desktop\trunk\sql-files\mob_skill_db.sql
  12. Yeah it's not a stacking issue. I tested this out and 1 abyss knight card would raise the damage by like 200... Which is really really low.
  13. I'm wondering if it is possible to make the effect of abyss knight card the way it was in pre-renewal. In renewal this card is absolute garbage. In pre-renewal, with 4 abyss knight cards the damage was almost doubled, but in renewal the damage is barely raised. Is there anyway to fix this without having to go pre-renewal? Any help or suggestions would be appreciated. thanks~
  14. Dori

    SQL update errors

    I deleted both mob_skill_db.sql and mob_skill_db_re.sql tables and imported them back, but I still get the same error above. Edit: I just saw this topic http://rathena.org/board/tracker/issue-7671-import-issue/ but I still don't understand how to solve the problem... ><
  15. Dori

    SQL update errors

    So how can I fix it..? and.. I also get these errors from mob_skill_db.sql and mob_skill_db_re.sql Error SQL query: #REPLACE INTO `mob_skill_db` VALUES (1395,'Wind Crystal@WZ_EARTHSPIKE','chase',90,5,4000,0,0,'no','target','always','0',NULL,NULL,NULL,NULL,NULL,'0',NULL); #REPLACE INTO `mob_skill_db` VALUES (1395,'Wind Crystal@WZ_EARTHSPIKE','chase',90,5,10000,0,0,'no','target','skillused','18',NULL,NULL,NULL,NULL,NULL,'0',NULL); #REPLACE INTO `mob_skill_db` VALUES (1395,'Wind Crystal@WZ_EARTHSPIKE','attack',90,5,4000,0,0,'no','target','always','0',NULL,NULL,NULL,NULL,NULL,'0',NULL); #REPLACE INTO `mob_skill_db` VALUES (1395,'Wind Crystal@WZ_HEAVENDRIVE','chase',91,5,2000,0,5000,'no','target','always','0',NULL,NULL,NULL,NULL,NULL,'21',NULL); #REPLACE INTO `mob_skill_db` VALUES (1395,'Wind Crystal@WZ_HEAVENDRIVE','chase',91,5,10000,0,5000,'no','target','skillused','18',NULL,NULL,NULL,NULL,NULL,'21',NULL); #REPLACE INTO `mob_skill_db` VALUES (1395,'Wind Crystal@WZ_HEAVENDRIVE','attack',91,5,2000,0,5000,'no','target','always','0',NULL,NULL,NULL,NULL,NULL,'21',NULL); #REPLACE INTO `mob_skill_db` [...] MySQL said: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'REPLACE INTO `mob_skill_db` VALUES (1399,'Event Baphomet@AL_TELEPORT','idle',26,' at line 86
  16. I get this error from the main.sql. what does it mean? Error SQL query: -- added standard accounts for servers, VERY INSECURE!!! -- inserted into the table called login which is above INSERT INTO `login` ( `account_id` , `userid` , `user_pass` , `sex` , `email` ) VALUES ( '1', 's1', 'p1', 'S', '[email protected]' ); MySQL said: #1062 - Duplicate entry '1' for key 'PRIMARY'
  17. Hi I'm with Asura Hosting and I want to install a fresh svn and get rid of the current one. But I have no clue on how to do it. Does this require TortoiseSVN? Any guidance would be appreciated. Thank you
  18. What is the latest most stable client?
  19. ooo I was looking for something like this too, awesome.
  20. Yeah that stuff is so good! You also got to try rice and curry on a banana leaf. It's called lump rice. I believe it comes from Sri Lanka. like this..
×
×
  • Create New...