Jump to content

Deleted User

Members
  • Posts

    235
  • Joined

  • Days Won

    6

Everything posted by Deleted User

  1. You're missing Function "AddPoints" to your custom instance.

    1. Alayne

      Alayne

      Gonna release it today ^^

  2. If you want that every MvP get killed and obtain 5 x Poring Coin. Here's the simple script: - script F_TriggerMVVP -1,{ OnNPCKillEvent: if( getmonsterinfo(killedrid,22) ) announce "Congratulations! Player, "+ strcharinfo(0) +" has killed MVP "+ getmonsterinfo( killedrid, MOB_NAME ) +" and obtained 'Poring Coin' at "+ strcharinfo(3),0,0x00FF00; getitem 7539,5; end; }
  3. Ai4rei, I was wondering is there a way we can add additional buttons next to Lucky Roulette? I know this is more likely client side stuff and hexing.
    I wanted to add an additional button for another purpose.

    1. Ai4rei

      Ai4rei

      From your description, there probably is a way. I have not followed RO development for a while, so I cannot even estimate the difficulty of doing so, though.

  4. Thank you for your great contribution to Official Instance Scripts.
    I appreciate that It'll be my base for my other scripts./lv

    1. Alayne

      Alayne

      Your welcome ^^

    2. Huggies

      Huggies

      ignored this

    3. Alayne

      Alayne

      Hum I may have missed something I think...

  5. Everytime i checked this project it's even getting better and better. Looking forward on others feature of this Client.
  6. Please try this: prontera.gat, 155, 174, 5 script Freebies 4_F_KAFRA1,{ function LinkItem_; .@getID = getcharid( 3 ); if( !FlaxRO && .@getID >= 2000001 ) { //Only in that Specific Account ID. mes "[ Freebies ]"; mes "Congratulations! You've obtained a various Starter Freebies rewards."; next; mes "[ Freebies ]"; mes "^FF0000Information:^000000"; mes "^777777 -------------------- ^000000"; mes "Reward Items:"; for( .@i = 0; .@i < .size; .@i++ ) { mes .item_Amnt[.@i] +"x "+ LinkItem_( .item_ID[.@i]); getitem .item_ID[.@i], .item_Amnt[.@i]; FlaxRO = 1; emotion e_no1; } close; } else { mes "[ Freebies ]"; mes "Your not eligible for the Starter Freebies."; emotion e_sry; close; } function LinkItem_ { .@id = getarg(0); .@showslot = getarg(1,0); .@slot = getitemslots(.@id); return "<ITEM>"+(.@slot&&.@showslot?getitemname(.@id)+" ["+.@slot+"]":getitemname(.@id))+"<INFO>"+.@id+"</INFO></ITEM>"; } OnInit: setarray .item_ID[0], 13836, 13837, 13838, 13839, 13840, 13841, 29328; setarray .item_Amnt[0], 10, 10, 10, 10, 10, 10, 500; .size = getarraysize( .item_ID ); end; }
  7. You'll need to update your client I guess because of the new cursor. The newer client detects the pointer of the mouse with "unclickable cell". Unless if you know how to hexed your client you can resolve that. @Ai4rei any idea?
  8. I think it should be in skill_db.txt but just give a try.
  9. https://rathena.org/board/topic/107941-future-of-ra-rathena-c-migration/
  10. find "Scrolls" at data/msgstringtable.txt and changed it to your like.
  11. If you're using RagexeRE Cash Shop is being Disabled. and for Ragexe enable by Default.
  12. Ai4rei? any progress for the hexing? =)

     

  13. Fixed some typo. I'll rewrite a new one when i have time. Ranking with Division.
  14. I made you a handy version of the script. SpiritD Simple PvP
  15. I don't understand why you can't fix a simple typo from the script itself. Better don't build a server if you don't know how to do simple fixing stuff. - script F_PvPCounter -1,{ end; //define maps where script is actively checking $@pvpMaps$[0] = "enter map name"; //map #1 $@pvpMaps$[1] = "enter map name"; //map #2 //add more maps like above OnPCDieEvent: if(strcharinfo(3) == $@pvpMaps$[0] || strcharinfo(3) == $@pvpMaps$[1]){ pvpPoints--; message strcharinfo(0),"You have been killed and lost 1 point. "+pvpPoints+" total points."; end; } end; OnPCKillEvent: if(strcharinfo(3) == $@pvpMaps$[0] || strcharinfo(3) == $@pvpMaps$[1]){ pvpPoints++; message strcharinfo(0),"You have killed a player and gained 2 points. "+pvpPoints+" total points."; end; } end; } prontera.gat,156,180,4 script PvP Clerk 4_F_KAFRA7,{ if(pvpPoints <= 99) { pvpRank = 0; mes "Your PvP Rank is: "+pvpRank; close; } if(pvpPoints >= 100 && pvpPoints <= 199 && pvpRank == 0) { pvpRank = 1; mes "You have "+pvpPoints+" points."; mes "Your PvP Rank is: "+pvpRank; close; } if(pvpPoints >= 200 && pvpPoints <= 299 && pvpRank == 1) { pvpRank = 2; mes "You have "+pvpPoints+" points."; mes "Your PvP Rank is: "+pvpRank; close; } }
  16. Try this: - script F_Mob_Spawned -1,{ end; OnDeath: Announce "Player "+strcharinfo(0)+" just killed a Raposa Flamejante.",bc_yellow|bc_all; sleep 1 * 60 * 1000; // 1 minute interval to respawned OnInit: monster "prontera",155,186,"Raposa Flamejante",1002,1,strnpcinfo(1)+"::OnDeath"; end; }
  17. I just noticed that the price of this Source is keeping on increasing for the past days I noticed it costs 10$,15$,20$ and now 25$ Seriously man? When I had the chance I'll release a free source for this.
  18. If you have the .png type of the file it's easy to convert it to an NPC Sprite. But it would be great if you have more frames. Where did you get that or any link?
  19. 2015-09-15aRagexe and 2017-06-14bRagexeRE Thanks Ai4rei. Nope, everything will be in hexed. TRUST me i do that already ain't working. i wouldn't ask for hexed if it can be done on data XD.
  20. Hi, I was wondering if anybody knows how to remove the the 'View' Button for Card. I would be appreciated if someone knows how to find the hexed for this. Regards, Meroy
×
×
  • Create New...