Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    409

Everything posted by Emistry

  1. OnInit: if ( gettime(3) <= 18 ) { day; } else { night; } end; OnClock0000: day; end; OnClock1800: end;
  2. OnClock0000: night; end; OnClock1800: day; end; OnInit: if ( gettime(3) < 18 ) { night; } else { day; } end; OnClock0000: night; end; OnClock1800: day; end;
  3. .............................., { announce "message",bc_map; },{ },{ }
  4. npc/custom/woe_controller.txt
  5. bugs?
  6. find and remove it in the configuration files. Adding_a_Script#Configuration_Files SQL used to store server data, most of the time it will autosave every short interval, 300 seconds by default.
  7. read Category:Installation
  8. just simply double click on it and change to your desired titles.
  9. are you sure it's langtype 12 ?? from what I recall correctly, only langtype 0 will enforce english text.
  10. if( query_sql( "SELECT `account_id`,`userid`,`user_pass`,`sex`,`email`,`group_id`,`state`,`unban_time`,`expiration_time`,`logincount`,`lastlogin`,`last_ip`,`birthdate` FROM `login` WHERE `account_id`='"+.@id[.@i]+"'",.@id,.@user_id$,.@user_pass$,.@sex$,.@email$,.@group_id,.@state,.@unban_time,.@expiration_time,.@login_count,.@last_login$,.@last_ip$,.@birth_date$ ) ){
  11. if( query_sql( "SELECT * FROM `login` WHERE `account_id`='"+.@id[.@i]+"'",.@id,.@user_id$,.@user_pass$,.@sex$,.@email$,.@group_id,.@state,.@unban_time,.@expiration_time,.@login_count,.@last_login$,.@last_ip$,.@birth_date$ ) ){ replace the asterisk ( * ) with all the column name that retrieved from the script. you can based on the variable amount at the end.
  12. haha you got the point .... didnt notice about getexp. anyway it still could be solved by using the playerattached
  13. read https://rathena.org/board/topic/103306-10012015-maintenance/
  14. if i recall correctly, there have been report about the kRO from nickyzai have missing patches due to removed by kRO themselves I guess.
  15. --en-- default english name for the monster. you can also do like this OnInit: monster "prontera",150,160,"--en--",1002,1,"Punching_Bag::OnInit"; // <-- reuse the same label. end;
  16. ensure you disabled the RENEWAL setting in source and recompile
  17. Emistry

    Chat Filter

    it's possible, but it could be bypass easily if the user want to. you can try convert it to rathena based on this. I remember back then someone did this already in rathena, but unable to find the topic. https://github.com/HerculesWS/StaffPlugins/blob/master/shennetsind/manners/manners.c you dont really have a way to block unless you mute everyone of them. O_O
  18. double check all your client files / settings... GRF...custom login screen...client ... etc..
  19. https://rathena.org/board/index.php?/files/file/2502-%7B?%7D/
  20. http://pastebin.com/raw.php?i=ND2Qr325
  21. integrate an online Radio into your server ??? not possible. if you're asking solely a NPC that play BGM, it's possible, and I believe some members does did it long ago in forum. about your GM talk/announce station, why not just use the Channel System ?
  22. Is that you Gudetama ?? xD
  23. 1_etc_01.act/spr files is missing, not your purple_plant.spr/act
  24. make sure you have the 1_etc_01.act/spr files. judge from the name, it's a npc.
  25. add this to your healer. if ( vip_status(1) ){ // buff script here. }
×
×
  • Create New...