Jump to content

deathscythe13

Members
  • Posts

    118
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by deathscythe13

  1. you only said if the map is a pvp, so this script only works when a map has a mapflag pvp not gvg
  2. - script pvppoint -1,{ OnInit: set .killaddpoint, 2; //points to add when kill set .diedeductpoint, 1; //points to deduct when died end; OnPCKillEvent: if(!getmapflag(strcharinfo(3),mf_pvp)) end; if(getcharid(3)==killedrid) end; set points, points+.killaddpoint; dispbottom "You killed "+rid2name(killedrid)+" you gained "+.killaddpoint+" points"; attachrid(killedrid); set points, points-.diedeductpoint; dispbottom "You are killed by "+rid2name(killerrid)+" you lost "+.diedeductpoint+" points"; end; }
  3. remove //Check to see if the items are bellow +10 (Double check?) if(getequiprefinerycnt(.@part) < 10) { mes "[" + getarg(0) + "]"; mes "I can't refine this."; mes "Talk to the normal blacksmith to"; mes "refine this up to +10 first."; close; } change if (.@refinecnt < 1 || .@refinecheck > 20) { to if (.@refinecnt < 1 || .@refinecheck > 10) {
  4. even though you got this to worked , a player can still use @battleignore again inside the coordinates thus making him turning off his pvp
  5. what's 'setscript'? i didn't know there are script commands like that.. care to explain what it does?
  6. 100,rent1,House Rent,Flag#rent1,1 is the npc to trigger onguildbreak and in your npc the name is Rent::Rent thats why it cant find the npc while rent1,100,100,0<tab>duplicate(Rent)<tab>Flag#rent1<tab>-1 is just an alias for the npc named Rent, you should changed main npc name to make it to work
  7. you need to have pcre installed in your computer to let deletepset work
  8. its because item_rate_card: 10000 = 10% item_rate_card_boss: 33333 = 33.33% your rate_drop_announce: 333 = 3.33% thats why it cant announce because 33% is not lower than 3%
  9. please check your mapserver if there are any errors and show it here
  10. prontera,156,182,4 script test 100,{ end; OnInit: waitingroom "HELLO WORLD!",0; end; }
  11. if(getrefine()) { bonus2 bSubRace,RC_DemiHuman,2*getrefine(); }
  12. if(getrefine()==4) { bonus bMatkRate,2; } if((getrefine()==5 && getrefine()<7)) { bonus bMatkRate,5; } if(getrefine()==7) { bonus bMatkRate, 8; }
  13. is this your script?? well if you cant still solve the problem try finding another that are working ones, there are alot of disguise event scripts out there, i think emistry has one xD.. If they are still not working maybe pset is not correctly working in your comp
  14. this needs source in order to hit or not hit a player. but if you want it to be achieved using script, a player can still kill the person, and check its palette, so if by script you can manipulate a points or something if he/she kill a player with the same palette as him
  15. and i think OnGuildBreak has no character attach because it is not invoke by a player so yeah
  16. You can't trigger guild break if your not adding the map to the castle database // Guild Castles Database // // Structure of Database: // CastleID,MapName,CastleName,OnGuildBreakEventName,Flag // // 01. CastleID Unique ID of the castle. Must remain unique across all map-servers. // 02. MapName Map name to be considered as the castle map. // 03. CastleName Name of the castle (used by scripts and guardian name tags). // 04. OnGuildBreakEventName NPC unique name to invoke ::OnGuildBreak on, when a occupied // castle is abandoned during guild break. // 05. Flag Switch flag (reserved as of athena-dev mod0796~0801, not used by server).
  17. prontera,156,180,4 script Max Leveler 100,{ set .maxlevel, 99; // set max level if(BaseLevel!=.maxlevel) set BaseLevel, .maxlevel; end; }
  18. try working around getcastledata and setcastledata make a guild or something then get the guild_id from your sql guild table add in db/castle_db.txt: 100,prontera,My House,test,1 - script test -1,{ OnInit: // just for testing initialize the owner of the house or something setcastledata ("prontera",1,<put guild_id here>); end; OnGuildBreak: set .@guildid, getcastledata("prontera",1); announce "Guild ID is : "+.@guildid,0; end; }
  19. Here try this just made it a while ago. //made by deathscythe13 - script Bounty -1,{ OnInit: set $wantedlistlength,10; // bounty length set .rewarditem, 7227; //reward item id set .killstreak, 10; // kill streak before gets to bounty end; OnPCKillEvent: getmapxy.@map$,.@x,.@y,0; if(getcharid(3)==killedrid) end; if(.@map$ != "guild_vs5") end; for(set .@i,0; .@i < $wantedlistlength && rid2name(killedrid)!=$wantedlist$[.@i]; set .@i, .@i+1); if(.@i < $wantedlistlength && rid2name(killedrid)==$wantedlist$[.@i]) { set .@price , 10 - (.@i); // amount of reward (i dunnoe the calc sorry) getitem .rewarditem,.@price; dispbottom "You have killed a bounty!"; for(set .@remove,.@i; .@remove < $wantedlistlength; set .@remove, .@remove+1) { set $wantedlist$[.@remove], $wantedlist$[.@remove+1]; set $wantedliststreak[.@remove], $wantedliststreak[.@remove+1]; } announce rid2name(killedrid)+" has been removed in the bounty list!",0; } else { set killerstreak, killerstreak+1; dispbottom "Kill Streak: "+killerstreak; } if(killerstreak >= .killstreak) { for(set .@i, 0; .@i < $wantedlistlength && $wantedliststreak[.@i] > killerstreak; set .@i, .@i+1); if(.@i < $wantedlistlength && killerstreak >= $wantedliststreak[.@i]) { for(set .@x ,0; .@x < $wantedlistlength && $wantedlist$[.@x]!=strcharinfo(0); set .@x, .@x+1); if(.@x < $wantedlistlength && $wantedlist$[.@x]==strcharinfo(0)) { for(set .@already, .@x; .@already < $wantedlistlength; set .@already, .@already+1) { set $wantedlist$[.@already], $wantedlist$[.@already+1]; set $wantedliststreak[.@already], $wantedliststreak[.@already+1]; } } for(set .@x, ($wantedlistlength-1); .@x > .@i ; set .@x, .@x-1) { set $wantedlist$[.@x], $wantedlist$[.@x-1]; set $wantedliststreak[.@x], $wantedliststreak[.@x-1]; } announce strcharinfo(0)+" is now in bounty list top "+(.@i+1)+"!",0; set $wantedlist$[.@i], strcharinfo(0); set $wantedliststreak[.@i], killerstreak; } } attachrid(killedrid); if(killerstreak) { set killerstreak, 0; dispbottom "Your streak has been reset because you died!"; } end; } prontera,156,180,4 script NPC WANTED LIST 100,{ mes "NPC WANTED LIST"; for (set .@i,0; .@i < $wantedlistlength; set .@i, .@i+1) { set .@no, .@i+1; mes .@no+".) "+$wantedlist$[.@i]+" Streak: "+$wantedliststreak[.@i]; } close; }
  20. yeah it seems you need to logout before it takes effect , how about this: http://www.eathena.ws/board/index.php?showtopic=257190
×
×
  • Create New...