Jump to content

Balfear

Members
  • Posts

    255
  • Joined

  • Last visited

  • Days Won

    32

Community Answers

  1. Balfear's post in How to remove the fluxcp greatings and articles was marked as the answer   
    It is in default/main/index.php
    Chanege it like this:
    <?php if (!defined('FLUX_ROOT')) exit; ?> <h4>Your main page here.</h4>  
  2. Balfear's post in Achievement for completequest was marked as the answer   
    Hi, you can find achievment commands here.
    ============================ |15.- Achievement commands.| ============================ Add your custom achieves in db/re/achievement_db.yml or db/pre/achievement_db.yml like:
    - ID: 220060 Group: "AG_ADVENTURE" Name: "Complete my quest" Score: 10 and this to your script when quest complete.
    achievementcomplete(220060); *achievementcomplete(<achievement id>{,<char id>}) This function will complete an achievement for the attached player or the supplied <char id>. The objective requirements are ignored when using this function. Returns true on success and false on failure. don`t forget add your custom achievment to client: yourclient\System\achievement_list.lub
    [220060] = { UI_Type = 0, group = "ADVENTURE", major = 2, minor = 0, title = "Complete my quest", content = { summary = "Text", details = "Text" }, resource = { [1] = { text = "Text" } }, reward = {}, score = 10 }, I think this will work 
  3. Balfear's post in how to update #CASHPOINTS in mysql while my character still login in game? was marked as the answer   
    - script DonationUpdate -1,{ OnInit: start: initnpctimer; end; OnTimer5000: set $@nb2,query_sql("SELECT COUNT(*) FROM test_donation WHERE status=0",$@count); if($@count != 0) { set $@nb,query_sql("SELECT id, account_id,donate,status FROM test_donation WHERE status='0'",$@id,$@account_id,$@donate,$@status); for (.@i = 0; .@i < $@nb; .@i++) { if (isloggedin($@account_id[.@i])) { // check if player online atcommand "#cash \""+rid2name($@account_id[.@i])+"\" "+$@donate[.@i]; query_sql("UPDATE test_donation SET status='1' WHERE id='"+$@id[.@i]+"' AND account_id='"+$@account_id[.@i]+"'"); } } } else finish: stopnpctimer; goto start; } CREATE TABLE `test_donation` ( `id` INT(11) NOT NULL AUTO_INCREMENT, `account_id` INT(11) NOT NULL, `donate` INT(11) NOT NULL, `status` INT(11) NOT NULL DEFAULT '0', `time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) COLLATE='cp1251_general_ci' ENGINE=InnoDB AUTO_INCREMENT=1 ; Fixed.
  4. Balfear's post in about Chatroom on "Paradise Warper" was marked as the answer   
    Hi !
    1) You can find this sign board in your grf [data\luafiles514\lua files\signboardlist.lub]
    2)   {
            "izlude", <= map name
            131, <= x
            148, <= y
            10, <= height
            IT_SIGNBOARD, <= type 
            "유저인터페이스\\item\\suffragium.bmp",  <= change icon name
            "Chat name", <= rename chat
            "#0x00FFFFFF" <=color
        },
  5. Balfear's post in kRO prontera cherryblossom map was marked as the answer   
    Here it is 
    Old Prontera - Sakura.zip New Prontera - Sakura.zip
  6. Balfear's post in Help Change Service Select Name was marked as the answer   
    Hi, change this line in conf\char_athena.conf
    // Display (New) in the server list.
    char_new_display: 0
  7. Balfear's post in Remove unwanted text in chatbox was marked as the answer   
    you can disable it in "conf/battle/client.conf"
     
    // Show rAthena version to users when the login? display_version: no
  8. Balfear's post in Calling item description in script was marked as the answer   
    On new client version 2015+ use this command:
     
     mes " <ITEM>Red Potion<INFO>501</INFO></ITEM>";
  9. Balfear's post in how to disable or Hide Max Connect User was marked as the answer   
    Open your client data\msgstringtable.txt and delete " (%d) " on line 484.  
    Like this:
     
    msgstringtable.txt
    Quote
  10. Balfear's post in ###### I need Original Prontera Map was marked as the answer   
    here it is   
    Prontera_Standart.rar
×
×
  • Create New...