prontera,150,150,5 script YouTubeReward 123,{
goto Main;
// Configuration
OnInit:
// YouTube video link
set .video_link$, "https://www.youtube.com/your_video_link";
// Code to be entered by the player
set .correct_code$, "your_code_here";
// Cash points reward
set .cash_points_reward, 100;
end;
// Main script
Main:
mes "[YouTube Reward NPC]";
if (youtube_reward == 1) {
mes "You have already received your reward for watching the video.";
close;
}
mes "Hello, adventurer!";
mes "Watch the following YouTube video and find the hidden code to receive a reward.";
mes "<URL>Video link<INFO>" + .video_link$ + "</INFO></URL>";
next;
if (select("I watched the video.", "Cancel") == 2)
close;
mes "[YouTube Reward NPC]";
mes "Enter the code you found in the video:";
input @code$;
clear;
if (@code$ == .correct_code$) {
mes "[YouTube Reward NPC]";
mes "Congratulations! You have entered the correct code.";
mes "Here is your reward.";
// Give the player cash points
set #CASHPOINTS, #CASHPOINTS + .cash_points_reward;
set youtube_reward, 1; // Mark the player as having received the reward
close;
} else {
mes "[YouTube Reward NPC]";
mes "Sorry, that code is incorrect. Please watch the video and try again.";
close;
}
}