Jump to content

Craves

Members
  • Posts

    19
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling
  • Location
    Malaysia

Recent Profile Visitors

1580 profile views

Craves's Achievements

Poring

Poring (1/15)

0

Reputation

  1. I saw this in some servers, but I can't seem to find it in rA, eA or even google... This command is an autoloot command, but it's somehow better.. Firstly, players can type @aloot help, to view the options of @aloot available, such as "@aloot item", "@aloot rate", "@aloot info", "@aloot clear". @aloot item allows you to autoloot the items you typed.. it can be more than one.. for example, you type @aloot item apple, then type @aloot item orange, you can autoloot that 2 items only.. @aloot rate is like @autoloot.. @aloot rate 50 = autoloot items 50% or below.. @aloot info shows you what you are currently autolooting.. @aloot clear, clears all your current autoloots.. Can anyone share this? Thanks in advance..
  2. I'm sorry for reviving this topic, but I still can't make it done.. The thing I've tried is to make @go and @warp having 5 second delay after being hit, and change the item script of Fly Wing to " warp "Random",0,0;" , but it doesn't have delay too.. Any optional way of doing this thing?
  3. What I meant is that, every time you get hit, you have to wait few second before you are able to use Fly Wing or Wing of Butterfly..
  4. That was what I was saying... That only gives delay for item use. What I want is delay after being hit..
  5. Can someone help me with this? I want to make Fly Wing and Wing of Butterfly have delay after being hit. I found @go/@warp delay, but I can't seem to find the delay for items... changing it in db doesn't help much as pplayers can still use them after being hit..
  6. - script KillAnnounce -1,{ OnPCKillEvent: if(getgmlevel() >= 50) end; if( killedrid == getcharid(3) ) end; set @killstreak, @killstreak+1; if (@killstreak == 1){ announce ""+strcharinfo(0)+" had just killed "+rid2name(killedrid)+" at "+strcharinfo(3)+".",bc_all; } else { announce ""+strcharinfo(0)+" had just killed "+rid2name(killedrid)+" at "+strcharinfo(3)+".["+@killstreak+"]",bc_all; } attachrid killedrid; if (@killstreak >= 2){ announce ""+rid2name(killedrid)+" had ended "+strcharinfo(0)+"'s ["+@killstreak+"] streak at "+strcharinfo(3)+".",bc_all; set @killstreak,0; } if (@killstreak < 2){ set @killstreak,0; } end; } The problem with this is that, if A hit B but didn't kill him, then C killed B, the announcement would announce that A killed B instead of C killing B.. Anyone have any idea where did I did wrong? I'm quite new to scripting
  7. Erm..the one i gave is KvM ones, I'm not sure if there's one for flavius/tierra.. anyways, does it goes like.. bg_get_data(&@FlaviusBG1_id1) ?
  8. I'm not sure if it's called scripting commands, or whatever..anyways, straight to the point.. I'm trying to make a randomizer that could randomly assign players to random team balance-ly. Which means, if there's 5 players in Red, and 6 players in blue, the next player that goes in using the randomizer would go to the red team. But when there's equal players on both team, the next player using the randomizer would randomly assign the player to 1 of the team. ( Red and Blue are reffering to Croix and Guillaume) But here's the problem I faced.. I can't seem to find a "scripting command" that could trace how many players which is in that team.. (for Flavius, and Tierra.) For example, there's "bg_get_data($@KvM03BG_id1) for Kvm. My question is, is there any "scripting command" to trace how many players for Flavius/Tierra BG like the one from the example above? If no, anyway that I could possibly make the npc that I wanted? Thanks in advance.
  9. Erm...Is there anything wrong with the Woe Prize giver? I tried it on a test server, and it seems like.. for example, I'm holding prtg_cas02, but I need to choose the prtg_cas01 castle name to get the reward, same for the others, need to choose 1 castle before, then only can obtain the reward.. Is there anyway to fix that?
  10. Hello.. Basically I'm thinking if it's possible for the NPC to allow only 1 account per IP to enter the map. For example, after your first account's character entered the room and is still in that room, the second account from the same IP can't enter the NPC.. Hope someone could help me out here. Thanks in advance.
  11. I'm thinking of making only 1 map that can use dead branch and bloody branch... and what I've found on google is this..I'm curious if this still works because that post was made on 2006.. http://www.eathena.ws/board/index.php?showtopic=120709
  12. @Emistry , I only have 1 script for this pvp announcer.. what do you mean by loaded it several times? Sorry, I'm quite new on these stuffs.. @Aerie , Erm..it doesn't fix it..it still announces 3 times when I only kill the opponent once.. This is the edited script.. - script C_login -1,{ OnInit: setarray $pvpmap$[0],"izlude"; OnPCKillEvent: getmapxy .@map$, .@x, .@y, 0; for( set .@i, 0; .@i < getarraysize($pvpmap$); set .@i, .@i +1 ) if (@map$ == $pvpmap$[.@]) { set @killstreak, @killstreak + 1; if (@killstreak <= 3) {announce ""+strcharinfo(0)+" had just killed "+rid2name(killedrid)+" at "+strcharinfo(3)+".",bc_map;} if (@killstreak >= 3) {announce ""+strcharinfo(0)+" had just killed "+rid2name(killedrid)+" at "+strcharinfo(3)+".["+@killstreak+"]",bc_all;} } OnPCDieEvent: getmapxy @map$,@x,@y,0; for( set .@i, 0; .@i < getarraysize($pvpmap$); set .@i, .@i +1 ) if (@map$ == $pvpmap$[.@i]) { if (@killstreak >= 3) {announce ""+rid2name(killedrid)+" had just ended "+strcharinfo(0)+"'s ["+@killstreak+"] streak at "+strcharinfo(3)+".",bc_all;} set @killstreak,0; } } Any idea what seems to be the problem? Thank you for you helps I found out a way to make it work..as simple as i wanted Thanks guys..
×
×
  • Create New...