Jump to content

Ridley

Administrators
  • Content Count

    1157
  • Joined

  • Last visited

  • Days Won

    86

Posts posted by Ridley


  1. yes, but not sure when i do the pr (i work on this since some time, the recent iro testing helped a bit but there is still a lot missing).

    for mobs

    //== lasa_fild01 - Ravioli Plain Watch ========================
    lasa_fild01,145,361,15,15    monster    Red Plant    1078,5,5000,0,0
    lasa_fild02,0,0,0,0    monster    Eggring    3495,115,5000,0,0
    lasa_fild02,0,0,0,0    monster    Leaf Lunatic    3496,115,5000,0,0
    lasa_fild02,0,0,0,0    monster    Grass Fabre    3497,115,5000,0,0
    
    
    //== lasa_fild02 - Ravioli Forest =============================
    lasa_fild02,0,0,0,0    monster    Wild Hornet    3498,40,5000,0,0
    lasa_fild02,0,0,0,0    monster    Sweet Roda Frog    3499,40,5000,0,0
    lasa_fild02,0,0,0,0    monster    Hunter Desert Wolf    3500,40,5000,0,0
    lasa_fild02,0,0,0,0    monster    Scout Basilisk    3502,2,5000,0,0
    
    
    //== lasa_dun01 - Dragon Nest =================================
    lasa_dun01,0,0,0,0    monster    Trance Spore    3501,15,5000,0,0
    lasa_dun01,0,0,0,0    monster    Scout Basilisk    3502,20,5000,0,0
    
    
    //== lasa_dun02 - Dragon Nest 2 ===============================
    lasa_dun02,0,0,0,0    monster    Charge Basilisk    3503,15,5000,0,0
    lasa_dun02,0,0,0,0    monster    Charge Basilisk 2    3504,15,5000,0,0
    
    
    //== lasa_dun03 - Dragon Nest 3 ===============================
    lasa_dun03,0,0,0,0    monster    Charge Basilisk 2    3504,15,5000,0,0
    lasa_dun03,0,0,0,0    monster    Fruit Pom Spider    3507,15,5000,0,0
     

    but i can not say much about their stats yet


  2. 6c042acd5460dd013ee4179d8a01e750.png

     

    Just a side note. We all work here on a volunteer base, in our free time. For many of us this free time is limited. Most important, we do this without the intention of making money (and I claim for most people here, this is the exactly reason to host a server). 

     

    If people not comfortable of the amount of time we put into this, and you think you can do it faster and better, then go ahead and do it.


  3. function	script	EndEvent	{
    		if (!$@Battle_Start && $@party_team<2) {
    

    to

     

    function	script	EndEvent	{
    		announce "You can now register for Party vs Party",bc_blue;
    		if (!$@Battle_Start && $@party_team<2) {
    

     

    not a perfect solution, but the script is calling different labels over and over, so else you got to set it in each label separately.


  4. i like this suggestion but 4144 already posted in october about this

     

    mesf("A little %s. Who are you?", Sex == SEX_MALE ? "boy" : "girl");
    
    
    This line better replace to:
     
    if (Sex == SEX_MALE)
    mes("A little boy. Who are you?");
    else
    mes("A little girl. Who are you?");
     
    
    Because in some languages can be issue because sentence can be different depend on gender.

     

    So you could do 

     

    if (Sex)
      mes("Bienvenido a Prontera");
    else
      mes("Bienvenida a Prontera");
    
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.