Jump to content

Rynbef

Forum Moderator
  • Posts

    898
  • Joined

  • Last visited

  • Days Won

    20

Community Answers

  1. Rynbef's post in Failed to get .thor was marked as the answer   
    Und will need to change:
    file_url=http://MYIP/html/thor/patchs/
    To:
    file_url=http://MYIP:8080/thor/patchs/
     
    Rynbef~
  2. Rynbef's post in Change Thor Patcher Port was marked as the answer   
    U will need to change your Apache/Nginx Port(Web Port 80). As example u use Apache. U can change ur port at /etc/apache2/ports.conf. Change "Listen 80" to another port. As example "Listen 32147". Now u can access ur webpage or thor folder on "http://yourdomain.com:32147/patcher/".
     
    Rynbef~
  3. Rynbef's post in Allow use of specific atcommand when talking to NPC was marked as the answer   
    If u use message u will need to add the prefix. (@ or #) at the begin. Message also contains command args.
    //If cannot use atcomamnd while talking with NPC [Kichi] if (type == 1 && sd->npc_id && sd->state.disable_atcommand_on_npc && !strcmp(message,"@refresh2")) return false; And move it under:
    // skip 10/11-langtype's codepage indicator, if detected if ( message[0] == '|' && strlen(message) >= 4 && (message[3] == atcommand_symbol || message[3] == charcommand_symbol) ) message += 3; To skip |00 at the begin of the message.
     
    Rynbef~
  4. Rynbef's post in Ignore DEF was marked as the answer   
    Take a look at /doc/item_bonus.txt
     
    Rynbef~
  5. Rynbef's post in About Thor Patcher Notice. was marked as the answer   
    I've already solved the problem via Teamviewer. He forgot the "http://".
    URL='127.0.0.1/notice.html'
    URL='http://127.0.0.1/notice.html'
     
    Rynbef~
  6. Rynbef's post in Increase damage in emperiums, more damage in woe? was marked as the answer   
    I see sir. Im currently on mobile only.
    Use Bonus Script like this: bonus2 bAddEle,Ele_Holy,5;
    Rynbef~
  7. Rynbef's post in [Q] Floating Rates EDIT was marked as the answer   
    No. You Will need to remove these "3.". Like:
    announce "Current Earthfall rates are: "+($@brate-100)+"x "+($@jrate-100)+"x "+($@drate-100)+"x",bc_all,0xFF6060; Rynbef~
  8. Rynbef's post in Request simple script for using a pet was marked as the answer   
    I hope I`ve understand you correctly. If you are using a pet your not allowed to enter the map or else if you are not using a pet you are allowed to enter the map.
    map,x,y,4 script NoPetTeleport 411,{ set .@n$,"[^777777No Pet Teleport^000000]"; mes .@n$; mes "Do you want to enter the map?"; if (select("Yes:No")==1){ if(getpetinfo(1)){ next; mes .@n$; mes "You are no allowed to enter the map because you are using a pet."; close; } else { next; mes .@n$; mes "Have a nice day!"; close2; warp "map",x,y; end; } } close; } I hope it can help you a lot.
     
    Rynbef~
×
×
  • Create New...