- On [Working with Xasu - Initialization - Using the scripting API](https://github.com/e-ucm/xasu/wiki/Working-with-Xasu#using-the-scripting-api), initializing Xasu also requires an ```IHttpRequestHandler``` to be passed as a parameter ([XasuTracker.cs](https://github.com/e-ucm/xasu/blob/1cb775765886642ba71f5e12b3326fe65faef996/Runtime/XasuTracker.cs#L140)). - On [Sending xAPI Traces - Using the High Level API - High-Level architecture](https://github.com/e-ucm/xasu/wiki/Sending-xAPI-Traces#high-level-architecture) and [Sending xAPI Traces - Serious Games APIs from the xAPI for SGs profile - Serious Games APIs from the xAPI for SGs profile](https://github.com/e-ucm/xasu/wiki/Sending-xAPI-Traces#completable-api), sending the score using ```WithScore``` requires a ```Dictionary<string, double>``` to be passed as a parameter ([StatementPromise.cs](https://github.com/e-ucm/xasu/blob/main/Runtime/HighLevel/StatementPromise.cs#L152)). The equivalent method would be ```WithScoreScaled```.
On Working with Xasu - Initialization - Using the scripting API, initializing Xasu also requires an
IHttpRequestHandlerto be passed as a parameter (XasuTracker.cs).On Sending xAPI Traces - Using the High Level API - High-Level architecture and Sending xAPI Traces - Serious Games APIs from the xAPI for SGs profile - Serious Games APIs from the xAPI for SGs profile, sending the score using
WithScorerequires aDictionary<string, double>to be passed as a parameter (StatementPromise.cs). The equivalent method would beWithScoreScaled.