Jump to content

NakedWolf

Members
  • Posts

    120
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by NakedWolf

  1. 9 hours ago, chatterboy said:

    Goto: rathena/db/pre-re/skill_db.yml  

    nearhere:

      Name: AB_CONVENIO
        Description: Convenio
        MaxLevel: 1
        
    SOL: Add this to line 30118:

    
     - Id: 5075
        Name: NV_BREAKTHROUGH
        Description: Break Through
        MaxLevel: 1
      - Id: 5076
        Name: NV_HELPANGEL
        Description: Help Angel
        MaxLevel: 1
      - Id: 5077
        Name: NV_TRANSCENDENCE
        Description: Transcendence
        MaxLevel: 1

    Good Luck!!!

    thank you for the Reply @chatterboy and i also had to add skills in skill_tree.txt to solve it (Thank you @Haruka Mayumi)
    SOLVED

  2. How to fix this ...???
    CREATE TABLE IF NOT EXISTS `E-Inquiry` (
    	`ID` bigint(20) unsigned NOT NULL auto_increment,
    	`Sender_ID` int(11) unsigned NOT NULL default '0',
    	`Sender_Name` varchar(30) NOT NULL default '',
    	`Title` text,
    	`Message` text,
    	`Status` tinyint(2) NOT NULL default '0',
    	`Inquiry_Time` datetime NOT NULL default '0000-00-00 00:00:00',
    	`Reply` text,
    	`Reply_Time` datetime NOT NULL default '0000-00-00 00:00:00',
    	`Reply_Name` varchar(30) NOT NULL default '',
    	PRIMARY KEY  (`ID`)
    ) ENGINE=MyISAM
    

     

    MySQL said: Documentation

    #1067 - Invalid default value for 'Inquiry_Time'

    --------------------------------------------------------------------------------------------------------------

    SOLVED

    by disabling sql strict mode (NO_ZERO_DATE.)

  3. Hello sir/masam

    Am requesting for a script,

    If the player is hunting more than 5 hours (total combat time)the exp and drop reduces by 50% if it exceeds more than 7 hours exp and drop is reduced by 90% And it resets every 24 hours .

    Charact based.(not account based)

    If the player is in town/field/dungeon, with out hunting the combat time wont be calculated it will be paused.

    Even if the character logout and login the combat time will continue it only resets every 24 hours

  4. 22 hours ago, vulcan1991 said:

    Put this at the top of script
     

    
        if(#Quest_CD> gettimetick(2)) {
    		msg "Come Back Later";
            end;
            }



    put this after player get item
     

    
        set #Quest_CD,gettimetick(2) + 3600; // set your cooldown


     

    This sir this quest will be character based rite not account based rite ?

    Thank you

  5. 3 minutes ago, pajodex said:

    @NakedWolf 

    I don't get any errors like that.. 

    try this method.. look for this npc..

    
    -   script  RUBGController  -1,{

    then transfer it all the way to the bottom of the whole thing.

    am just wondering what fixed the error .it was giving error on my offline rAthena and when i uploaded it on my online one it is working fine ?

  6. @TARTs

    I actually changed all the

        disablenpc "อาณาเขตรอบที่ 1#BG1";
        disablenpc "อาณาเขตรอบที่ 2#BG1";
        disablenpc "อาณาเขตรอบที่ 3#BG1";
        disablenpc "อาณาเขตรอบที่ 1#BG2";
        disablenpc "อาณาเขตรอบที่ 2#BG2";
        disablenpc "อาณาเขตรอบที่ 3#BG2";
        disablenpc "อาณาเขตรอบที่ 1#BG3";

    To

        disablenpc "territory 1#BG1";
        disablenpc "territory 2#BG1";
        disablenpc "territory 3 #BG1";
        disablenpc "territory 1#BG2";
        disablenpc "territory 2#BG2";
        disablenpc "territory 3#BG2";
        disablenpc "territory 1#BG3";

    And it shows the error

    [Error]: npc_enable: Attempted to hide a non-existing NPC 'territory 1#BG2' (flag=0).
    [Error]: npc_enable: Attempted to hide a non-existing NPC 'territory 2#BG2' (flag=0).
    [Error]: npc_enable: Attempted to hide a non-existing NPC 'territory 3#BG2' (flag=0).

    How to fix it ??

    doubts

    one more thing the last person who wins is warped in to town but his equip are not removed which is picked from the battle field.

    and whats the use of the skill KO_BAKURETSU actually because when i use my gunslinger it docent appear on his skill tray or whats the use of it actually ?

     

    Thank you.

     

     

     

  7. @TARTs

    hello, i tested the script it work well except 2 things i found on my console

    //error 1
    [Error]: npc_enable: Attempted to hide a non-existing NPC 'อาณาเขตรอบที่ 1#BG2' (flag=0).
    [Error]: npc_enable: Attempted to hide a non-existing NPC 'อาณาเขตรอบที่ 2#BG2' (flag=0).
    [Error]: npc_enable: Attempted to hide a non-existing NPC 'อาณาเขตรอบที่ 3#BG2' (flag=0).
    
    //error 2
    [Error]: pc_skill: Skill with id 0 does not exist in the skill database
    [Error]: pc_skill: Skill with id 0 does not exist in the skill database
    [Error]: pc_skill: Skill with id 0 does not exist in the skill database

    and am using pre-re

    please tell me the fix.

    thank you.

×
×
  • Create New...