Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

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. 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.
  5. just simply double click on it and change to your desired titles.
  6. are you sure it's langtype 12 ?? from what I recall correctly, only langtype 0 will enforce english text.
  7. 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$ ) ){
  8. 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.
  9. haha you got the point .... didnt notice about getexp. anyway it still could be solved by using the playerattached
  10. read https://rathena.org/board/topic/103306-10012015-maintenance/
  11. if i recall correctly, there have been report about the kRO from nickyzai have missing patches due to removed by kRO themselves I guess.
  12. --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;
  13. ensure you disabled the RENEWAL setting in source and recompile
  14. 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
  15. double check all your client files / settings... GRF...custom login screen...client ... etc..
  16. https://rathena.org/board/index.php?/files/file/2502-%7B?%7D/
  17. http://pastebin.com/raw.php?i=ND2Qr325
  18. 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 ?
  19. 1_etc_01.act/spr files is missing, not your purple_plant.spr/act
  20. make sure you have the 1_etc_01.act/spr files. judge from the name, it's a npc.
  21. add this to your healer. if ( vip_status(1) ){ // buff script here. }
×
×
  • Create New...