Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    409

Everything posted by Emistry

  1. I believe the npc script script is located inside the fluxcp folder. and you didnt load the npc into the game.
  2. you can just follow the guide given, it's pretty much all of it that you required to do in order to setup the server. P/s : Don't alway expect for spoonfeeding when there are already guide given to you.
  3. you need to grant access for the user 'ragnarok' that connected using 'localhost'. Example mysql> GRANT SELECT,INSERT,UPDATE,DELETE ON `<schema>`.* TO 'ragnarok'@'localhost';
  4. you didnt attach the script to an online players. the best way to deal with variable value would be shut down server run SQL script ( UPDATE `table` SET `value` = 1 WHERE `variable` LIKE '#variable' ) done.
  5. something that i did back in 2011... LOL https://pastebin.com/P3V6EpLa or else git=npc/merchants/cashheadgear_dye.txt]
  6. use this OnPCStatCalcEvent
  7. https://rathena.org/board/files/file/3042-stream-prontera-free-map/
  8. https://github.com/rathena/rathena/commits/master
  9. doc/script_commands.txt#L4420-L4444
  10. use visual studio 10 for rathena-10.sln
  11. try this 30028,C_Wing_Of_Fly,Infinite Flywing,11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp strcharinfo(3),0,0; },{},{}
  12. visual studio 2010 ? the solutions files with different postfix are usable to different version of visual studio.
  13. https://rathena.org/board/topic/86913-pull-request-qa/?p=233328
  14. probably caused by the settings that you provided in the script.
  15. prontera,155,175,5 script Sample#npc 4_F_KAFRA9,{ if ( countitem( 7227 ) >= 10 ) { delitem 7227,10; SkillPoint++; } end; }
  16. I suggest you change to other file hosting website. TinyUpload doesn't hold the file for permanent uses. I believe nobody want to keep it alive by help you download the files every < 100 days to keep it alive. So it's better you go for other alternative files hosting sites. on a side note, most of the popular text editor out there are built-in with text searching feature too
  17. Please elaborate the problem you currently facing. Provide us with the following or more details if possible: - Run-time server console errors/warnings (if any). - Client side errors/warnings (if any). - Any edits to scripts or source mods (if any).
  18. Please elaborate the problem you currently facing. Provide us with the following or more details if possible: - Run-time server console errors/warnings (if any). - Client side errors/warnings (if any). - Any edits to scripts or source mods (if any).
  19. addrid(0); if ( #VariableAnnounce ) { announce "message",bc_self; } end;
  20. any scripts that located inside the custom folder meant that the script doesn't exist in official server. it's custom-made script.
  21. addrid(0); if ( #VariableAnnounce ) { announce "message",bc_all; } end;
  22. it's caused by this. for ( .@a = 0; .@a < .maxsize; .@a++ ) set .@fetch_name$, .@fetch_name$ + "char_id = "+ @char_id[.@a]+ " OR "; the word "OR" is appended on the end of the string. you can fix it by create a new query that consist another sub query inside the SQL statement. example SELECT `a`,`b`,`c` FROM `tables1` WHERE `char_id` IN ( SELECT `char_id` FROM `char_bg` ) or change the way to populate the string, example: .@fetch_name$ = "char_id = "+@char_id[0]; for ( .@a = 1; .@a < .maxsize; .@a++ ) set .@fetch_name$, .@fetch_name$ + " OR " + " char_id = "+ @char_id[.@a]; anyway for your case that required to check more than one variables, it's better if you just use the IN Operator.
  23. you can refer this Diff#Using_.diff.2F.patch_files_to_patch_your_server
  24. perhap your item weight is too much to be able to hold by the char ?
  25. took a quick glance on the script. if(@mob_ep > .r1po){ set .rank1_id,getcharid(0); }else if(@mob_ep > .r2po){ set .rank2_id,getcharid(0); }else if(@mob_ep > .r3po){ set .rank3_id,getcharid(0); } doesn't exist the part where the script will update the 3 variables to store latest top rank kill count ?
×
×
  • Create New...