Jump to content

CyanZoldyck

Members
  • Posts

    31
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

CyanZoldyck's Achievements

Poporing

Poporing (4/15)

  • Collaborator
  • First Post
  • Conversation Starter
  • One Year In
  • Week One Done

Recent Badges

0

Reputation

  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!
×
×
  • Create New...