Jump to content

CyanZoldyck

Members
  • Posts

    31
  • Joined

  • Last visited

Everything posted by CyanZoldyck

  1. The query worked thank you! Can you teach me how can I add it as WoE reward? set .@total,(.@total_silver_coined_farmed * 5) / 100;
  2. It is not actually included in the list by default. For some reasons, players is still able to use it so I tried to ass kill: false but players can still use it. am I missing something else or doing something wrong?
  3. Hi, Can someone help me with this? Here's the WOE rewards: // Rewards per castle. // setarray .reward_id[0], <itemID>{,<itemID>,...} // setarray .reward_amount[0], <amount>{,<amount>,...} setarray .reward_id[0],30202,12103; setarray .reward_amount[0],50,5; Here's my database table. I want to SUM the points column and then put that points added into WOE salary rewards into the ItemID 30202 in this computation. Total SUM of points * 5 / 100 Hi rAthena community, any luck with this?
  4. I would like to disable @die command for players. I already put kill: false in groups.conf but players is still able to use it. Am I doing something wrong? Anyone can help me on this? Thank you! id: 0 /* group 0 is the default group for every new account */ name: "Player" level: 0 inherit: ( /*empty list*/ ) commands: { /* informational commands */ commands: true rates: true showdelay: true exp: true mobinfo: true iteminfo: true whodrops: true time: true warp: true jump: true kill: false jailtime: true hominfo: true homstats: true showexp: true showzeny: true whereis: true refresh: true noask: true autoloot: true alootid: true autoloottype: true autotrade: true mobsearch: true resist: true request: true go: true duel: true accept: true reject: true invite: true who: true whogm: true storage: true guildstorage: true } permissions: { attendance: true can_trade: true can_party: true } },
  5. Hello! I need help. I am using Euphy's WOE Controller script. I have this customization on where I am counting total of Silver Coins farmed from my fishing system to be uploaded in database. Count total of silver coins got in fishing per week and upload it in database Now, I want this silver coins to be added in WoE salary in this computation: Total of Silver Coins farmed in the whole server*5/100 woe_controller.txt
  6. Hi! Is it possible to automatically add a 10 secs respawn time after player character has been killed? Is it possible to disable the "Return to last save point" and then just automatically respawn the player character to his savepoint after 10 seconds? Thank you!
  7. *bump* anyone can help me on this? I really appreciate it. Thanks so much!
  8. Hello! Anyone would be able to help me on this script? I would like to make a count on total of Silver Coins farmed/loot from fishing and then put in a NPC that will display the total of farmed silver coins. I also would like to reset the total count of farmed silver coins weekly every Friday. Here's my script for my fishing: brasilis,258,60,0 script Fishing Hole 1 723,{ //Fishing rod set .@Rod,2764; //Fishing Lure set .@Lure,2775; //Auto-Fish set .@Auto,1; //Auto-Fish on Fail set .@AutoFail,1; Fish: if (isequipped(.@Rod)) && (isequipped(.@Lure)){ specialeffect EF_BUBBLE,"Fishing Hole"; soundeffect "fishingrod.wav",0; dispbottom "[Fishing] Casting..."; set .@fcast,20; if (isequipped(2550)) { //Fisher's Muffler set .@fcast,.@fcast - 2; } if (isequipped(2443)) { //Fisher's Boots set .@fcast,.@fcast - 2; } if (isequipped(5317)) { //Fish_Hat set .@fcast,.@fcast - 2; } if (isequipped(2764)) { //Fishing Pole set .@fcast,.@fcast - 3; } if (isequipped(2775)) { //Fishing Lure set .@fcast,.@fcast - 1; } progressbar "ffffff",.@fcast; if (rand(1,20) == 2){ getitem 30203,2; //Fish with Blue Back specialeffect2 EF_TEMP_OK; mapannounce strcharinfo(3),strcharinfo(0)+" has caught a Silver Coin 2x!",bc_map,"0xff77ff"; if(.@Auto==1){ goto Fish;}else{ end;} } if (rand(1,6) == 1) ||(rand(1,6) == 3) || (rand(1,6) == 6){ setarray .@Catch[0],30203;// List of Junk/Other set .@CatchRand,.@Catch[rand(getarraysize(.@Catch))]; getitem .@CatchRand,1; } else { dispbottom "[Fishing] Nothing was caught..."; if(.@AutoFail == 1){ goto Fish;} else{ end;} } if(.@Auto == 1){ goto Fish;} else{ end;} } else { dispbottom "[Fishing] You need a Rod and Lure."; end; } }
  9. Sorry for the late response. It's working! Thanks so much!
  10. Hello! Anyone know how to change Ganba's AoE? I want to increase it from 3x3 to 10x10. Thanks in advance!
  11. Heya! Just wondering if somebody knows how to reduce the SP being drained on enemies of Pressure/Gloria Domini skill? I would like to make it 5% SP drained per hit. Thanks a bunch!
  12. Update: All good and working!!! I just modified this part since I am getting the buildin_getmapxy: Invalid type 0 error. - getmapxy(.@map$, .@npc_x, .@npc_y, 0); + getmapxy(.@map$, .@npc_x, .@npc_y, BL_NPC); I tested with skills like Close Confine and Spider Web and it's all working the way I wanted it to be. Thank you so much Sir @Tokei I really appreciate it! More power!!! I also want to give kudos to this very smart try and catch event here. It added more spice to my server since they both don't know who clicked the chest first XD // I presume you don't want multiple people to loot the same chest...? if (.npc_disabled[.@id]) { dispbottom "This chest has been looted by someone else!"; end; } This case is resolved!
  13. Hi script Godz! I would like to ask assistance regarding my issue. My problem is that I wanted to make the characters go beside the treasure chest first with at least 1x1 cell distance before the progress bar to open the treasure chest starts. 1st issue: Recently, I found out that players are able to cheat by doing Close Confine skill and then the looter will be able to loot the box bypassing the unitwalkto getcharid(3),getnpcid(0); that I set in my script as shown in the attached video below: 2nd issue: If you can notice, the progress bar to loot the treasure chest has started as soon as I clicked the chest. I wanted to make it that the character should go beside the chest first before the progress bar starts. My Test Server.mp4 Please help me. I have attached the script that I am currently using. I am still a newbie and I am very willing to learn. Thank you! wtreasure.txt
  14. Question: How can I populate the Treasure boxes? I would like it to be 3 or 4 treasure boxes and how can I make it spawn scattered on the area where the Boss dies instead of putting it in the exact cell location of the boss? Update: So once again, I was able to find answer/solution to my problem. We can consider this issue resolved.
  15. Anyone can help please please Hi @raccae thanks for responding! I am trying to study and apply the solution you provided but I am getting this error after compiling Here's the lines that I added as you advised after the World Boss Script I am checking my doc\script_commands.txt as @Emistry advised on this topic https://rathena.org/board/topic/129505-error-function-cloaknpc/ and everything seems to be fine on script commands Update: So I've been testing it here and there and finally able to make it work. I replace the line: cloakoffnpc; to this: cloakoffnpc "World Boss Treasure#wb"; Thank you Sir @Racaae This is what exactly what I'm looking for and it works like charm.
  16. Hi script Gods! I would like to ask assistance if my request is possible. I'd like to make it that Treasure Boxes will drop instead of items after MVP has been killed. And upon opening the treasure boxes, it will display a 10 seconds progress bar before you can open it and get the reward. I've been using and modified GM Poring King's script for my simple MVP Boss invasion. Hope you can help me on this //================================================Name====================================================== // Goblin Invasion NPC (Official Release Name) //===============================================Version==================================================== // 1.2 //===============================================Author===================================================== // ____ _____ ______ __ __ __ _______ __ _____ __ __ _______ // | __ \ _ \| __ \| | \ | |/ ___ \ | | / / | \ | |/ ___ \ // | |__| | \ \ |__| | | \| | | _\_/ | |/ /| | \| | | _\_/ // | __/ | | /| | | | |_ \ | | | | | | | |_ \ // | |\ \_/ / |\ \| | |\ | \_/ | | |\ \| | |\ | \_/ | // |__| \_____/|__| \__\__|__| \__|\______/ |__| \__\__|__| \__|\______/ //----------------------------------------Script Last Update 2020------------------------------------------- //==============================================Changelog=================================================== // 1.0 * // - Initial Release // 1.1 // - Added Host Event by GMAccess // 1.2 // - Remove all error from Latest rAthena // - Maximize script // - Fix some dialog of NPC // - Added Mapflag for the Event Map //========================================================================================================== firstcity,211,121,4 script Invasion NPC 459,{ set .gm,50;//GM Level to access the GM Menu. Default: 50 // GM menu //It allows GMs Level 50 or more to Start and Stop invasions. if (getgmlevel()>.gm) { if (.mobs_left) { mes "[Invasion]"; mes "An invasion is in progress.."; mes "Location: " + .Map$; mes "^FF0000"+.mobs_left+"^000000 Goblins left"; mes " "; mes "Stop invasion?"; if(select("No:Yes")==1) close; donpcevent "Invasion NPC::OnTimer1805000"; mes "Invasion stopped"; announce "The Invasion has been stopped by "+strcharinfo(0),bc_all; close; } mes "[Invasion]"; mes "Please customize the Invasion event before starting it."; mes "Note - The Goblin Leader drops x5 of the prize."; Main: next; mes "[Invasion]"; switch(select("Item [" + getitemname(.ItemID) + "]:Start Event")) { case 1: mes "Which item would you like the World Boss to drop?"; mes "Please input the item ID:"; input .ItemID; goto Main; case 2: mes "Starting the event now..."; close2; goto OnStart; } // If a player clicks the NPC, it displays: mes "[Invasion]"; mes .mobs_left+" have invaded "+.Map$[.rand_map]+"!"; close; ///////////////////////// //The actual NPC Script// ///////////////////////// OnClock2200: OnStart: set .mobs_left, 1; sleep 1000; set $@ran, rand(1,6); if ($@ran == 6) set .Map$,"1@def02"; if ($@ran == 5) set .Map$,"1@def02"; if ($@ran == 4) set .Map$,"1@def02"; if ($@ran == 3) set .Map$,"1@def02"; if ($@ran == 2) set .Map$,"1@def02"; if ($@ran == 1) set .Map$,"1@def02"; sleep 1000; announce "[ Rune-Midgard Guard ]: We have trouble here in the World Boss town " + .Map$ + "!", bc_all; sleep 5000; announce "[ Rune-Midgard Guard ]: Everyone, we need your help to get rid of World Boss! Please join!", bc_all; monster .Map$,0,0,"Bakonawa",2320,1,"Invasion NPC::OnMyMobDead"; set .mobs_left, 1; initnpctimer; end; OnTimer10800000: // 3 hours later, kills all the mobs. killmonster .Map$,"Invasion NPC::OnMyMobDead"; set .mobs_left, 0; goto OnStop; stopnpctimer; OnStop://When the event is stopped by a GM, or all monsters dead. killmonster .Map$,"Invasion NPC::OnMyMobDead"; killmonster .Map$,"Invasion NPC::OnSpecialMobDead"; announce "World Boss has ended.",bc_all; end; OnMyMobDead: //When a World Boss is killed set .mobs_left, .mobs_left-1; if (.mobs_left==0) { announce "[ Rune-Midgard Guard ]: Everyone, thankyou for helping to get rid of the World Boss!", bc_all; getitem .ItemID,1; //Change the [5] to the amount you wish to hand out. donpcevent "Invasion NPC::OnStop"; } else { //announce "["+.mobs_left+"/200] mobs left.",bc_map; } end; } end; }
  17. I already tried to use this but sadly, it gives me error ? This is the exact line of codes that I've been using Before: if ((sc->data[SC_PNEUMA] && (flag&(BF_MAGIC | BF_LONG)) == BF_LONG) || Now: (but gives me error) if ((sc->data[SC_PNEUMA] && (flag&(BF_MAGIC | BF_LONG)) == BF_LONG) { d->dmg_lv = ATK_BLOCK; skill_blown(src, bl, skill_get_blewcount(skill_id, skill_lv), -1, BLOWN_NONE); return false; }
  18. I have tried the suggestion in this topic Pneuma vs Charge&phantasmic arrow but gives me error when compiling it. if( sc->data[SC_PNEUMA] && (flag&(BF_MAGIC|BF_LONG)) == BF_LONG ) { d->dmg_lv = ATK_BLOCK; skill_blown(src,bl,skill_get_blewcount(skill_id,skill_lv),-1,0); return 0; }
  19. Hello! I'm in need of help. I already searched and browsed the forums but can't seem to find a solution for this. In the server that I am running, Charge Attack, Arrow Repel, and Arrow Shower skill is always missing when casted on a player inside Pneuma. As far as I know, the damage should miss but it should knockback or pushback player out of Pneuma. I've been testing around a lot and can't seem to make it work. Anyone able to help me or guide me with this please? Thanks so much rAthena community and more power! This is the current line of code that I've been trying to modify but can't seem to make it work: if ((sc->data[SC_PNEUMA] && (flag&(BF_MAGIC | BF_LONG)) == BF_LONG) ||
  20. I got the same issue as well. When I make a new character novice, all the basic skills are automatically levelled up to 9. And when i change job, i cannot level up my skills. Every skills is grayed out.
  21. Could you perhaps show me a demonstration or some sample codes perhaps? I'm not really familiar specially in modifying src ?
×
×
  • Create New...