Jump to content

Gerome

Members
  • Posts

    185
  • Joined

  • Last visited

Community Answers

  1. Gerome's post in How to change the prize ? was marked as the answer   
    find
    set #CASHPOINTS, #CASHPOINTS + 50; // Change This item id to what ever you want . item id,amount
    replace it withgetitem 7179,1;
    *getitem <item id>,<amount>{,<account ID>}; *getitem "<item name>",<amount>{,<account ID>};
    This command will give a specific amount of specified items to the target
    character. If the character is not online, nothing will happen.
    If <account ID> is not specified, items will be created in the invoking
    character inventory instead.

  2. Gerome's post in Freebies Scripts [ +7 items ] was marked as the answer   
    Try this one..
    free.txt
  3. Gerome's post in Voting Script? was marked as the answer   
    i Think Jaypees Vote4Points have that one..http://rathena.org/board/files/file/2344-fluxcp-addon-vote-for-points/
  4. Gerome's post in Solved... was marked as the answer   
    Try this one..
    when using a Custom Headger (ItemID 25234 ) get 10 Siver Coin in 1 minute & 100 Silver Coin in 1 hour,
    when not to use custom headger only get a silver coin every minute.

    - script minutepoints -1,{ //--Start of the Script OnPCLoginEvent: attachnpctimer ""+strcharinfo(0)+""; initnpctimer; end; OnTimer30000: //Check if Vending (normal or @at) if(checkvending() >= 1 || checkchatting() == 1) { dispbottom "The minute points event stopped because you were vending / chatting. Please relog if you wish to start again."; stopnpctimer; end; } //Check if Idle getmapxy( .@map$, .@x, .@y, 0 ); if(@map$ == .@map$ && @x == .@x && @y == .@y) { set @afk, @afk + 1; } //If move timer resets else { set @afk, 0; } set @map$, .@map$; set @x, .@x; set @y, .@y; //Idle Check for 5 Minutes if(@afk == 5) { dispbottom "The minute points event stopped because you were idle for 5 minutes. Please relog if you wish to start again."; stopnpctimer; end; } end; OnTimer60000: set @minute, @minute + 1; //Check for 1 Minute dispbottom "Total Minute's Played: " + @minute; if( @minute == 1 ) // 10 Minutes { if(getequipid(EQI_HEAD_TOP)==25234) { // Received 10 Silver COin set .@point_amt, 10; getitem 675,.@point_amt; dispbottom "You received "+.@point_amt+" Silver Coin by staying ingame for 1 minute"; } else{ // Received only 1 Silver Coin when 25234 is not Equip. set .@point_amt, 1; getitem 675,.@point_amt; dispbottom "You received "+.@point_amt+" Silver Coin by staying ingame for 1 minute"; } } if( @minute == 60 ) { // 1 Hour set @minute,0; set @consecutive_hour, @consecutive_hour + 1; if(getequipid(EQI_HEAD_TOP)==25234) { set .@point_amt, 100; getitem 675,.@point_amt; } else{ //set .@point_amt, 50; //getitem 675,.@point_amt; } } // Check for 1 hours consecutive // Received More Rewards if(@consecutive_hour == 2) { // Set Rewards Here.. set @consecutive_hour, 0; } stopnpctimer; initnpctimer; end; }
    Make a Random Color.

    12221,Megaphone_,Megaphone,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ setarray .@Rand$[0], "0x51FF00", "0x0D00FF", "0x00FFD5", "0xDD00F", "0xFF8C00", "0xD5FF00", "0xFF00F7", "0xFFFFFF", "0x000000"; input @Megaphone$; announce strcharinfo (0) + ":" + @Megaphone$, bc_all, .@Rand$[rand(9)]; end; },{},{}
×
×
  • Create New...