Event id for changing carrying weight. Calls the OnRunWeightTransmitCallback.
-- Create a functionlocal runWeight = function(weight) osrs.printf("Players run weight: %i", weight)end-- Subscribe to the functionosrs.Events.subscribe(runWeight, osrs.Events.ON_RUN_WEIGHT_TRANSMIT) Copy
-- Create a functionlocal runWeight = function(weight) osrs.printf("Players run weight: %i", weight)end-- Subscribe to the functionosrs.Events.subscribe(runWeight, osrs.Events.ON_RUN_WEIGHT_TRANSMIT)
Event id for changing carrying weight. Calls the OnRunWeightTransmitCallback.
Example