Skip to main content

Contribute Points

Contributes points to the joined guild.

Source Code

playNANOOHandlers.guildPersonalPoint = function(args) {
var result = plugin['v20230101'].guild.personalPoint({
parameters: {
tableCode: args.tableCode,
point: args.point,
extraData: args.extraData,
}
});

if(result.statusCode == 200) {
log.debug(result.body.toString());
return true;
} else {
return false;
}
}

Request Parameter

ParameterDescriptionType
tableCodeTable codestring
pointContribution pointsinteger
extraDataAdditional datastring

Response

HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
{
"Status" : "String"
}