Advertisement
johnlol

Update All Items To 0 Weight

Aug 9th, 2023
1,508
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VeriLog 0.41 KB | Gaming | 0 0
  1. -   script  0 weight    -1,{
  2. OnInit:
  3. initnpctimer;
  4. set .@i,501;
  5. while( .@i < 32767 ){
  6.     if( getitemname( .@i ) != "null" )
  7.         if( setiteminfo( .@i,6,0 ) != -1 )
  8.             set .@update,.@update + 1;
  9.     set .@i,.@i + 1;
  10.     if( .@i % 500 == 0 ) sleep 1;
  11. }
  12. debugmes "Consumed "+( getnpctimer(0) / 1000 )+" seconds to set "+.@update+" items to 0 weight..";
  13. stopnpctimer;
  14. // relog is required for other online characters.
  15. end;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement