Jump to content

zXoOm

Members
  • Posts

    73
  • Joined

  • Last visited

Posts posted by zXoOm

  1.  

     

     

    Try checking this

    trunk/conf/inter_athena.conf

     

    ipban_db_ip: 127.0.0.1
    ipban_db_port: 3306
    ipban_db_id: root
    ipban_db_pw: password
    ipban_db_db: database
    ipban_codepage:

     

     

    those lines doesn't exist on my copy of rAthena. I have the latest.

     

    EDIT: it's on ipban.c

    What should I do with that?

     

    the latest rathena have that lines

    So you said that you have updated.

    but in your files the lines are missing

    try adding that lines. 

    with correct information

     

     

    error is still there.

    solved. closed this thread please. thanks!

  2.  

    Try checking this

    trunk/conf/inter_athena.conf

     

    ipban_db_ip: 127.0.0.1
    ipban_db_port: 3306
    ipban_db_id: root
    ipban_db_pw: password
    ipban_db_db: database
    ipban_codepage:

     

     

    those lines doesn't exist on my copy of rAthena. I have the latest.

     

    EDIT: it's on ipban.c

    What should I do with that?

  3.  

    This script is old and I'm not using it anymore so I decided to share this here. :P

     

    Chained Quest ~

    Scripts including 9 NPCs ~

     

    ~ Dende

    ~ Master Popo

    ~ Bulma

    ~ Chi-Chi

    ~ Master Roshi

    ~ Krillin

    ~ Goku

    ~ Master Karin

    ~ Shenron

     

    Can set Random Prizes ~

            set .@gamble1,rand(1,10);
            if (.@gamble1 == 1) set .@item,1161;
            else if (.@gamble1 == 2) set .@item,30021; // Change
            else if (.@gamble1 == 3) set .@item,2115; // Change	
            else if (.@gamble1 == 4) set .@item,2421; // Change
            else if (.@gamble1 == 5) set .@item,30029; // Change
            else if (.@gamble1 == 6) set .@item,7086; // Change
            else if (.@gamble1 == 7) set .@item,30013; // Change
            else if (.@gamble1 == 8) set .@item,675; // Change
            else if (.@gamble1 == 9) set .@item,30014; // Change
            else if (.@gamble1 == 10) set .@item,30004; // Change
            
            getitem .@item,1;

     

    how to change to not random rewards?

  4. i'm having a problem with this event npc every tym it broadcast the the event will start in 1 minute. the players is able to answer even without the countdown being finished.

    here's the script :

    // = Script made by RIKIMARU on rathena.org
    // = Profile Link :
    // = http://rathena.org/board/user/434-rikimaru/
    // = ENJOY THIS SCRIPT!
    //===================================================================================
    //	    //=====//	 /==/	 /==/		  /==/	 
    //	   //	 //	 /==/	 /==/  /=/	 /==/		
    //	  //=====//			  /==/  /=/			 /==============/	 /========/   /==//===/    /==/	 /==/
    //	 //=//////    /==/	  /==//=/	   /==/    /==/==/==/==/==/	 /	 /  /   /==/		 /==/	 /==/
    //    // ==	    /==/	  /==//=/	   /==/    /==/  /==/  /==/	 ======/  /   /==/		 /==/	 /==/
    //   //   ==	  /==/	  /==/  /=/	 /==/    /==/  /==/  /==/	 / /===/  /   /==/		 /==/	 /==/
    //  //	 ==    /==/	  /==/   /=/    /==/    /==/  /==/  /==/	 / /===/  /   /==/		 /==/=====/==/
    // //	   ==  /==/	  /==/    /=/   /==/    /==/  /==/  /==/	 /========/   /==/		 /==///////==/
    // ================ rAthena Script ==================================================
    // ============== Information =======================================================
    // = Automated Guess the Number Event
    // = Made by :
    // = Rikimaru
    //===== Current Version: ===============================================
    //= 2.3
    //===== Compatible With: ===============================================
    //= any rAthena SVN
    //===== Description: ===================================================
    //= This is an automated Guess the Number Event,which I made
    //= for having fun in game,guessing a number. The number is going
    //= to be a number between 1 and 2000 , so it'll take time to find out
    //= the correct number.
    //===== Additional Comments: ===========================================
    //= 2.0 Fixed an announcer Bug [Rikimaru]
    //= 2.1 Fixed a few Typos in the Script [Rikimaru]
    //= 2.2 Fixed the Prize,which was not working correctly. [Rikimaru]
    //= 2.3 Fixed another little Bug. [Rikimaru]
    //======================================================================
    //= DO NOT REMOVE MY CREDITS AND CLAIM MY WORK AS YOURS
    //======================================================================
    - script guessannouncer -1,{
    OnClock0030:
    OnClock0130:
    OnClock0230:
    OnClock0330:
    OnClock0430:
    OnClock0530:
    OnClock0630:
    OnClock0730:
    OnClock0830:
    OnClock0930:
    OnClock1030:
    OnClock1130:
    OnClock1230:
    OnClock1330:
    OnClock1430:
    OnClock1530:
    OnClock1630:
    OnClock1730:
    OnClock1830:
    OnClock2030:
    OnClock2130:
    OnClock2230:
    OnClock2330:
    announce "Guess the Number: Is starting in 1 Minute in Payon!",0;
    sleep 30000;
    announce "Guess the Number: Is starting in 30 Seconds in Payon!",0;
    sleep 20000;
    announce "Guess the Number: 10 Seconds! Gather up in Payon quick!",0;
    sleep 5000;
    announce "Guess the Number: 5 Seconds Left!",0;
    sleep 1000;
    announce "Guess the Number: 4 Seconds!",0;
    sleep 1000;
    announce "Guess the Number: 3 Seconds!",0;
    sleep 1000;
    announce "Guess the Number: 2 Seconds!",0;
    sleep 1000;
    announce "Guess the Number: 1 Second!",0;
    sleep 1000;
    announce "Guess the Number: The event has started!",0;
    enablenpc "guess";
    end;
    }
    // ==============================================================================
    payon,156,233,3 script Guess the Number::guess 123,{
    // =================== Setting the NPC Name and Prize and amount  =============
    set .@n$,"^FF0000[Guess the Number]^000000";
    set @prize,9342;//Change the 7227 to your reward item ID
    set @amoun,20;//Change the 10 to your reward amount
    // ==================== End of settings =========================================
    if(.guessstart==1) goto Oneventevent;
    set .usednumber, rand(1,1000);
    announce "Guess the Number: Guess the Number Event Started in Payon!",0;
    set .guessstart,1;
    Oneventevent:
    mes .@n$;
    mes "Guess the number...It is a number between between 1 and 1,000!";
    input .@guessnumber;
    next;
    if(.@guessnumber > .usednumber) {
    mes .@n$;
    mes "My number is ^FF0000SMALLER^000000 than the one you guessed!";
    close;
    } else if(.@guessnumber < .usednumber) {
    mes .@n$;
    mes "My number is ^FF0000BIGGER^000000 than the one you guessed!";
    close;
    } else if(.@guessnumber == .usednumber) {
    announce ""+strcharinfo(0)+" has won the Guess the Number Event! My number was "+.usednumber+"!",0;
    mes .@n$;
    mes "You have guessed my number! Congratulations!";
    getitem @prize,@amoun;
    disablenpc "guess";
    set .guessstart,0;
    close2;
    end;
    }
    }
    

  5. who can give me the attack/def calculation of pre-renewal? cause attack calculation for renewal is too low i have 255 str and i only have 460+ attack while in pre-renewal i have 1000+ attack . i want to run my server in renewal with pre-renewal calculation.

    Thanks!

  6. i have the problem with the user online is not showing up.

    how do i fix this ?

    for the login, char and map its seem good.

    post-12126-0-40661600-1358894165_thumb.png

    i will help you. but can u help me in return ? i need to change the banner and i dont know how cause i'm not good in photoshop . will you change it for me? i need it to be Xtreme Instead of Radical. i will help you too with ur problem i know the solutions for that!

×
×
  • Create New...