Jump to content

oblinez

Members
  • Posts

    20
  • Joined

  • Last visited

Profile Information

  • Gender
    Male

Recent Profile Visitors

1606 profile views

oblinez's Achievements

Drops

Drops (2/15)

  • Dedicated
  • Reacting Well
  • First Post
  • Collaborator
  • Conversation Starter

Recent Badges

1

Reputation

  1. well, I downloaded the rathena server, I did everything I had to do to run it, everything ok, server side ok, the client I downloaded the BRO updated so far, I made the DATA.ini file, I made my grf with the data folder that I downloaded from this address: https://github.com/llchrisll/ROenglishRE/tree/master/Pre-Renewal I put everything from system folder to BRO system folder but it is giving a lot of errors when trying to open client does anyone know a data and system folder compatible with 2021-11-03_Ragexe_1635926200
  2. hy guys, i'm getting this error when i try to run the solution in vstudio "not possible to run application" "libconfig.lib is not a valid application win32"
  3. someone know why script input does not work with new player character? please, create a new player character and try to input something... it will freeze - script login -1,{ OnPCLoginEvent: mes "hello"; input .@val; mes .@val; close; }
  4. this is exactly what i'm looking for ty bro!
  5. there is some solution to arr = str.split(",") from javascript? to ragnarok script?
  6. hello guys, I'm trying to make a condition to check if there is a player on the map, but the condition enters an infinite loop, I need the NPC to show a waitingroom if there is a player on the map and another if there is no player on the map, but it has to be in real time do{waitingroom "PvP in progress",0;}while(getareausers("force_4-1",86,113,113,86) > 0)
  7. mapserver: [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Warning]: skill_castend_pos2: Unknown skill used:196 [Status]: Received '44' guild castles from char-server. [Status]: Received '4' clans from char-server. since i downloaded the server from git and then compiled it, since the first time i opened it, it gives these warning how to fix it?
  8. how to prevent the player type only space?
  9. you are my savior! can you explain your code for me? so that i can learn how does the first part undestand that returning 1 or 0 must repeat the input or not is this boolean? callfunc returns 1 or 0, while true it pass, false it fall into condition, that's right?
  10. in this case, how to give 2 or more options for the item?
  11. while(input(.name$) == "" && (isdigit(.name$))){ input .name$; } I want the player to type only letters/words, if it contains any number he will have to type it again without numbers how can I do that?
  12. existe alguma traduçao mesmo que seja parcial do rathena? ou eu poderia usar a traduçao de outro servidor nele?
  13. I downloaded this site but birth date not apears in the registration area Every time I try to make an account, it error "incorrect date of birth" but there is no birth date field
  14. - script hourlypoints -1,{ OnPCLoginEvent: attachnpctimer(); startnpctimer(); end; OnTimer3600000: if( checkidle() < .max_idle && checkvending() != 2) { query_sql "UPDATE `login` SET `globalpoints`=`globalpoints`+"+.point_amt+" WHERE `account_id` = '"+ getcharid(3) +"'"; dispbottom "Voce Recebeu 1 Ponto M,M!RO Por Ficar Jogando Durante 1 hora"; } if( checkidle() > .max_idle){ dispbottom "Ganhar ponto M,M!RO ficando parado eh facil neh??"; dispbottom "mas pra seu azar voce nao ira ganhar..."; dispbottom "porque voce ficou 15 ou Mais AFK"; } if( checkvending() == 2){ dispbottom "Soh Para Informalo... Abrir Loja Ira Parar A contagem"; dispbottom "De Pontos Por Hora"; } attachnpctimer(); initnpctimer(); end; OnInit: set .point_amt, 1; //ponto ganho por hora set .max_idle = 15 * 30;//valor de 15 minutos } can some1 check this npc??
  15. skorm thx alot bro but i forget one detail... coud u edit this script to work with hourlypoints table on login db? and can you disable the "//Check for 3 hours consecutive" ?? skorm, if( checkidle() < 900 && !@autotrade ) <<<this part block @at too? or any command to open shop?
×
×
  • Create New...