Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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!
Hi,
What's the purpose of this?
Getting attention and "likeability"?
Havn't you made a couple of threads very similar to this? (or am I just speaking (writing ;d) nonesense..)
getPlayerItemCount will return a number.
if (getPlayerItemCount(cid,2470) >= 1) >= 1
Means (lets suppose you have 1 item)
if (1 >= 1) >= 1
Now this expression will return a boolean, true or false:
if (TRUE) >= 1
And then that doesn't make any sense does it?
local keywordHandler =...
Army is back from west (Wasn't there because of this concflict IIRC..), and Putin said he is not moving any troops unless he feels it is really neccessary.
?? Aprende a argumentar como primer punto.
Segundo, estoy totalmente de acuerdo con el thread (recien lo leo), solo digo que "patria" es un concepto sin valor alguno, solo una adoctrinacion para usarte, un mejor termino seria "el petroleo no se vende" o "el petroleo es nacional".
The value is stored in the database, so don't worry it will reload everytime your restart your server.
To make a player vip for a certain ammount of time you might use a globalevent to set the storage back to -1 (none), or you could make the storage value 30 (In case you want 30 days) and then...
vipstatus is not stored anywhere, it is a variable used as a condition
local storageValue = 21444
vipstatus = getPlayerStorageValue(cid,storageValue)
if vipstatus == 1 then
or:
vipstatus = getPlayerStorageValue(cid,21444)
if vipstatus == 1 then
or:
if getPlayerStorageValue(cid,21444) ==...
function onUse(cid, item, itemEx)
if(getPlayerFood(cid) + 18) then
return doPlayerSendCancel(cid, "You are full.")
end
doPlayerFeed(cid, 18)
doCreatureSay(cid, "Yummie.", TALKTYPE_MONSTER)
return true
end