Jump to content
  • 0

Battleground Medals for Cash ( Request Script )


Asverick

Question


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  15
  • Reputation:   1
  • Joined:  02/26/13
  • Last Seen:  

I Need a script that exchanges the battleground medals in to cash points, please

-War Badges (7773) - 15 Cash Points

-Valor Badges (7829) - 10 Cash Points

-Bravery Badges (7828) - 10 Cash Points

 

Or just the Script and i edit the prize for each medals

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

	setarray .@Badges[0],7773,7829,7828;

setarray .@Points[0], 15, 10, 10;

mes "[Badge Trader]";

for(set .@i,0; .@i<getarraysize(.@Badges); set .@i,.@i+1) {

set .@count[.@i],countitem(.@Badges[.@i]);

if (.@count[.@i]) {

delitem .@Badges[.@i],.@count[.@i];

set #CASHPOINTS,#CASHPOINTS+(.@count[.@i]*.@Points[.@i]);

mes "Traded "+.@count[.@i]+" "+getitemname(.@Badges[.@i])+" for "+(.@count[.@i]*.@Points[.@i])+" Cash Points.";

}

}

if (!getarraysize(.@count))

mes "You have no badges.";

close;

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  403
  • Reputation:   89
  • Joined:  02/07/13
  • Last Seen:  

What do you mean by cash point ?

It's an item ? Point on your website ?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  15
  • Reputation:   1
  • Joined:  02/26/13
  • Last Seen:  

Thx a lot Euphy *0*

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...