Jump to content

crazyarashi

Developer
  • Posts

    776
  • Joined

  • Last visited

  • Days Won

    22

Everything posted by crazyarashi

  1. use the rA version of the script :)) its in custom/quest/quest_shop.txt
  2. did you try do disable the doram creation in nemo?
  3. setarray .vip_day,7,14,31; // 7 days, 14 days, 31 days setarray .vip_item,33110,33111,33112; //item for 7 days is currently 33110, 14 days is 33111 = Change this line to edit the item needed
  4. .@npc$ = "^0055FF[ Premium Exchanger ]^000000"; //copy this and paste it on the script one missing sytnax
  5. prontera,255,55,5 script Premium Changer 456,{ mes "^0055FF[ Premium Exchanger ]^000000"; mes "Good day, Im Riza and I can make you a premium user"; mes "For a premium ticket"; next; mes "^0055FF[ Premium Exchanger ]^000000"; mes "A premium user will be able to use the premium buffs of the healer and other boosts"; mes "It includes Imposition Manus/Assumptio/+10 Food Buffs/Soul Link Buffs"; mes "and a boost of drop rate by 50%"; next; mes "^0055FF[ Premium Exchanger ]^000000"; mes "Do you want to be a premium user?"; switch(select("Yes!:No Im just looking around.")) { Case 1: goto Ontalk; close; Case 2: mes "^0055FF[ Premium Exchanger ]^000000"; mes "Okay, Have a nice day!"; close; } OnTalk: .@npc$ = "^0055FF[ Premium Exchanger ]^000000" if ( vip_status(0) ) { mes ".@npc$"; mes "You're already a [Premium User]"; next; mes ".@npc$"; mes "Come back when your Premium already expired!"; close; } else { .@i = select( .vip_day[0] + "Days", .vip_day[1] + "Days", .vip_day[2] + "Days" ) - 1; mes ".@npc$"; mes "Your account will be premium for "+.vip_day[.@i]+" Days"; mes "You will need a .vip_item[.@i] for that."; switch(select("Yes i want to exchange my ticket:No Im just looking around.")) { case 1: if (countitem(.vip_item) > 0) delitem .vip_item[.@i],1 vip_time ( .vip_day[.@i] * 1440 ); mes ".@npc$"; mes "You are now a Premium User for "+.vip_day[.@i]+" Days!"; end; case 2: mes ".@npc$"; mes "Okay, Have a nice day!"; close; } } OnCheck: if (vip_status(0)) { dispbottom "Expire Time : "+vip_status(3); } end; OnInit: setarray .vip_day,7,14,31; setarray .vip_item,33110,33111,33112; //Set The VIP Item here bindatcmd("vipstatus", strnpcinfo(3)+"::OnCheck"); end; } Use this one just add the items needed in the array Credits to Emistry for the script :))
  6. I believe you need to click it to the character as far as my knowledge goes.
  7. Did you recently did some changes in src? :))
  8. you need to add exp up to level 255 in exp table follow this guide https://gist.github.com/cydh/d82a06472f12c4ec7f38ab3de22fe86b
  9. src/map/map.h #define MAX_LEVEL 175 to #define MAX_LEVEL 255
  10. use a late 2016 client or 2017 client and it should solve your problem
  11. what is your problem by the way it doesnt show in skill bar? / unlearnable
  12. did you add it in your iteminfo.lua/lub? :))
  13. if the skills is not showing up on skill tab = use zackdreavers latest translation files else if it's unlearnable try getting latest rA
  14. use zackdreavers translation files to show it in skill tab. it is already added by default in rA database Note: This requires 2016-12-28 onwards based on my testing :))
  15. 2017-06-14 is good enough to use :)) but note 2017 client are not fully stable unlike the 2015 clients :))
  16. by timer do you mean cooldown? or the time inside the instance :))
  17. I believe you havent recompiled.
  18. 1. cd rathena //cd foldername 2. make clean 3. ./configure //Note : ./configure --disable-64bit <-- use it when youre running in 32-bit 4. make server
  19. may i ask what OS are you using :)) try make server
  20. OnInit: waitingroom "Warper",0; end; } Add this to the waiting room :))
×
×
  • Create New...