CREATE YOUR WORLD
Economy

Earning Money by Adding Ads within the World

11min
you can add advertisements within zepeto world you can place two types of ads in zepeto world interstitial ads and immersive ads immersive ads appear on digital billboards within the world ads display only on mobile environments use qr mobile testing instead of unity editor scene play for accurate previews this feature requires zepeto app version 3 37 000 or higher for ad key issuance and revenue inquiries, contact the zepeto staff installation of zepeto advertisement package 1\) open package manager by clicking the window → package manager button 2\) click the advanced button in the top right of the package manager window, then select advanced project settings 3\) in the package manager section of project settings, click the (+) button at the bottom right of scope 4\) in the new input field, type 'media' and click apply 5\) in your unity project folder > packages, open manifest json and add the following content "dependencies" { "media advertisement" "0 1 1" } 6\) then install the zepeto advertisement package from the package manager applying interstitial ads writing the script import { button } from 'unityengine ui'; import { adshowresult, worldadvertisement } from 'zepeto advertisement general'; import { zepetoscriptbehaviour } from 'zepeto script' const ad key string = "monetize template"; export default class advertisementsample extends zepetoscriptbehaviour { public button button; start() { this button onclick addlistener(() => { this showad(); }); } showad() { worldadvertisement show( ad key, result => this onadshowresult(result) ); } onadshowresult(result adshowresult) { if (result == adshowresult finished) { console log("ad show successful; finished "); return; } let failmessage string; switch (result) { case adshowresult failed failmessage = "failed"; break; case adshowresult skipped failmessage = "skipped"; break; case adshowresult notready failmessage = "notready"; break; default failmessage = "unknown result"; break; } console log(`ad show failed; ${failmessage} `); } } adshowresult (enum) value description failed 0 ad sdk initialization failed skipped 1 ad skipped finished 2 ad viewing completed notready 3 ad not ready 👍 ad key default ad key monetize template ❗️ caution when calling the worldadvertisement show function, pass the callback as a closure for the second argument to prevent crashes on ios instead of writing like this showad() { worldadvertisement show( ad key, this onadshowresult ); } write like this showad() { worldadvertisement show( ad key, result => this onadshowresult(result) ); } run the qr mobile test to ensure the ad displays correctly withdrawing advertising revenue in world advertising revenue within zepeto, creators can generate revenue by embedding advertisements their worlds in world advertising pays out zems based on the number of user views your ads receive the amount of zems awarded is determined by how successfully your ads are displayed within the world (ads that are neither under nor over viewed will earn more zem) 👍 conditions for generating advertising revenue currently, only worlds developed using the monetization template are eligible for ad insertion creators can obtain an advertisement key for worlds developed using the monetization template once they reach a unique visitor count of 20,000 the advertisement key issuance process is carried through email communication with a designated manager from naver z, so please make sure to check your email once you achieve 20,000 unique visitors to facilitate smooth communication, please make sure that your zepeto account is linked to an email address revenue generation begins once a separate ad key has been issued after contacting the manager information on payments payments are made quarterly q1 → paid on april 15th q2 → paid on july 15th q3 → paid on october 15th q4 → paid on january 15th payments of 5000 zems or less are provided in zem, which can be withdrawn but cannot be used within the app amounts exceeding 5000 zems are paid out in cash following direct contact with the creator advertising incentive program (pilot) additional incentives are paid based on the number of ad views this program is naver z's pilot program and is subject to changes or discontinuation number of ad views incentive amount (zem) 30,000 5,000 50,000 9,000 100,000 15,000 300,000 25,000 500,000 40,000 1,000,000 150,000 3,000,000 250,000 5,000,000 400,000 10,000,000 1,500,000 30,000,000 2,500,000 50,000,000 4,000,000