Jump to content

  •  

penwilders

Member Since 22 Nov 2013
Offline Last Active Dec 27 2013 01:09 PM
-----

Topics I've Started

need help about emistry's currency shop (hercules emulator)

18 December 2013 - 05:36 PM

so im using this http://rathena.org/b...-currency-shop/

 

can someone help me with the script that announces/broadcasts when someone buys from the shop ""(player's name) has bought (item) from the (currency shop)""like from the quest shop of euphy. (player's name) has created a/an (item)

 

thanks in advance :)


custom aura NPC

07 December 2013 - 07:15 AM

[color=rgb(78,78,78);font-family:DroidSansRegular, Arial, Verdana, Helvetica, sans-serif;font-size:13.63636302947998px;background-color:rgb(249,249,249);]i have a bunch of custom auras and i want the NPC Aura to be a npc that can change your aura with a list of custom auras you have and requires an item like 10 proof of donation per custom aura you choose.[/color]

and if you want to change another 10 proof of donation is required.

[color=rgb(78,78,78);font-family:DroidSansRegular, Arial, Verdana, Helvetica, sans-serif;font-size:13.63636302947998px;background-color:rgb(249,249,249);]i have an example of a custom aura[/color]

 


help with custom auras

07 December 2013 - 04:46 AM

[color=rgb(78,78,78);font-family:DroidSansRegular, Arial, Verdana, Helvetica, sans-serif;font-size:13.63636302947998px;background-color:rgb(249,249,249);]i have a bunch of custom auras and i want the NPC Aura to be a npc that can change your aura with a list of custom auras you have and requires an item like 10 proof of donation per custom aura you choose.[/color]

 

[color=rgb(78,78,78);font-family:DroidSansRegular, Arial, Verdana, Helvetica, sans-serif;font-size:13.63636302947998px;background-color:rgb(249,249,249);]i have an example of a custom aura[/color]


help with broadcaster npc

07 December 2013 - 01:43 AM

this is my script of my broadcaster npc

 

 
prontera,146,169,5 script Broadcaster 114,{
//what's the npc name to show in messages?
set @npcname$, "Broadcaster";
//NPC Headers Name:
set @header$,"[^0000ff" + @npcname$ + "^000000]";
//NPC COST PER Broadcast:
set @broadcastfee, 5000000;
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
mes @header$;
mes "Hi, I'm the Broadcaster";
mes "I can Broadcast a message for you";
next;
mes @header$;
mes "It costs 5 Million Zeny ";
next;
mes @header$;
mes "Would you like to Broadcast?";
switch (select("Yes","No")){
case 1:
if(@Broadcast> gettimetick(2)) {
next;
mes @header$;
mes "Sorry you have to wait for 3 minutes.";
close;
}
next;
mes @header$;
if(Zeny<5000000) goto noZenybc;
set Zeny, Zeny - @broadcastfee;
mes "Please input your message.";
next;
input @broadcast$;
announce "Message from "+strcharinfo(0)+": "+@broadcast$+"",0,0x00FFFF;
close2;
set @Broadcast, gettimetick(2)+180;
dispbottom "Broadcaster: Please wait for 3 minutes until next broadcast to avoid flooding.";
end;
case 2:
mes "Suit yourself";
close;
}
noZenybc:
mes "I have to check that you have";
mes "enough money";
next;
mes @header$;
mes "Im sorry but you don't have enough Zeny";
mes "Go get it if you want to Broadcast";
close;
}
 
 
 
but once you relog you can broadcast again. i want 1 char/account/ only to broadcast for every 3 mins to avoid flooding/spamming
 
thanks in advance