• 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!

Plz bug fix

deamon123

New Member
Joined
Mar 9, 2008
Messages
38
Reaction score
0
I have 2 bug plz fix

first bug : data/npc/scripts/item/lua:129: unexpecten symbol "if"
this line : if getPlayerItemCount(cid,2462) >= 1 and if getPlayerItemCount(cid,3983) >= 3 then

second bug : data/movements/scripts/citizen.lua:1: unexpected symbol ","

this line : function onStepIn(cid, item, position, fromPosition)

thanks
 
this line : if getPlayerItemCount(cid,2462) >= 1 and if getPlayerItemCount(cid,3983) >= 3 then

change to
this line : if getPlayerItemCount(cid,2462) >= 1 and getPlayerItemCount(cid,3983) >= 3 then
 
Back
Top