Postado Julho 17, 2012 12 anos GOSTARIA DE UM VIP TILE QUE AO INVES DE VERIFICAR A STORAGE DO PLAYER ELE VERIFICASSE SE ELE ESTA PREMIUM ACCOUNT ASSIM EU PODERIA FASER UM SISTEMA VIP PELO !BUYPREMIUM OU ATÉ VENDER NO DONATE DO SITE. AJUDEM
Postado Julho 17, 2012 12 anos eu fiz aqui, mas não testei .. se tiver errado .. alguem me corrija .. function onStepIn(cid, fromPosition) local config = { msgFail = "CASO ELE NAO FOR PREMIUM", msgAccept = "CASO ELE FOR PREMIUM.", premium = isPremium(cid) } if (config.premium == TRUE) then doPlayerSendTextMessage(cid, 21, config.msgWelcome) else doPlayerSendTextMessage(cid, 21, config.msgFail) doTeleportThing(cid, fromPosition, true) return TRUE end end http://baiakuza.com/IP: baiakuza.com TIBIA: 10.96 Baiak Custom [ High Exp Rate ]
Postado Julho 17, 2012 12 anos Autor passa normal no tile e aparece a mensagem de negação mais ele entra normal na area
Postado Julho 17, 2012 12 anos Autor -- Vip System by Zero function onStepIn(cid, item, position, fromPosition) local config = { msgDenied = "Only donators Can Pass this Door.", msgWelcome = "Wellcome Vip Player!" } if getPlayerPremiumDays(cid) <= 0 then doTeleportThing(cid, fromPosition, true) doPlayerSendTextMessage(cid,22, config.msgDenied) doSendMagicEffect(getThingPos(cid), CONST_ME_MAGIC_BLUE) return true end doPlayerSendTextMessage(cid,22, config.msgWelcome) return true end
Participe da conversa
Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.