Hi, i'd like to request a NPC that we can exchange like 15 Mythril Coins (674) for 1 selected bro headgear on npc.
And about this script below i wanted to know how to configure it to earn each Mythril coins for 60min playing. Thx
Hope you can help me!
And about this script below i wanted to know how to configure it to earn each Mythril coins for 60min playing. Thx
Hope you can help me!
Code:
- script Presenca -1,{OnPCLoginEvent: while ( !getstatus(SC_JAILED) ) { if ( checkvending() || checkchatting() || checkidle() >= .sleeploop / 1000 ) { .@afk++; if ( .@afk >= .afk && ( .@afk % .afk == 0 ) ) { dispbottom "[AccessRO]: Voce esta Ausente por "+( .@afk * .sleeploop / 1000 )+" segundos"; .@tick = 0; } } else { .@afk = 0; .@tick++; if ( .@tick >= .tick ) { dispbottom "Voce ganhou 1 Moeda Mythril por estar ativo por mais que "+( .@tick * .sleeploop / 1000 )+" seconds"; getitem 674,1; .@tick = 0; } } sleep2 .sleeploop; } end; // shouldn't reachOnInit: .sleeploop = 5000; // every 5 seconds .tick = 10; // loop 6 times of 5 seconds == 30 seconds .afk = 2; // loop 3 times of 5 seconds = 10 seconds end;}
Last edited by a moderator: