• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Promotion Por Cklick (Statua)

leonard12

New Member
Joined
Aug 16, 2010
Messages
3
Reaction score
0
Miren Tengo El Siguiente Scrip Pero Tiene Algunos Errores... Cuando Uno Le Da Cklick a La Statua Te Quita 2cc Pero No Te Da La Promotion... aki esta el scsrip

PHP:
function onUse(cid, item, frompos, item2, topos)
   
       	if  item.actionid == 3769 then
 			if getPlayerVocation(cid) > 4 then
           doPlayerSendCancel(cid, 'Perdon, Tu ya tienes promotion.')
 				
 			elseif getPlayerLevel(cid) < 20 then
           doPlayerSendCancel(cid, 'Perdon, tu necesitas lvl 20+ para la promotion.')

	 elseif doPlayerRemoveMoney(cid, 20000) == 1 then
           doPlayerSetVocation(cid, getPlayerVocation(cid)+4) -- Promote
         doSendMagicEffect(topos,12)
       else
           doPlayerSendCancel(cid, "Perdon, Tu necesitas 20.000gps (20k) para la promotion.")
       end



       	elseif  item.actionid == 3770 then
	if doPlayerRemoveMoney(cid, 10000) == 1 then
           buyPrem(cid, 10) -- Prremmy
         doSendMagicEffect(topos,12)
       else
           doPlayerSendCancel(cid, "Sorry, for buy 10 days of premmium account you need 10.000gps (10k).")
       end

       end
	return 1
   end

Espero Que ME Ayuden
 
Back
Top