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

Search results

  1. F

    [PHP] : Is there a way to make inline handiling + Some help =)

    I donno whatever it is called but is there a way to do that thing in lua in php : local n = 1 local f = ( n==1 and "true" or "false") This case variable f would be => "true" can i do same in php ? something like: ( i know this don't work , but how can i do it the right way) $n=1; $f =...
  2. F

    fetching for some info in c++

    I was wondering on creating functions -custom ones- , can the function param be typeless like lua ones? like int add(a, b) {return a+b;} int main() {int a =3; int b = 4; cout << add(a,b);}
  3. F

    Want Lua Scripts? Request here.

    Ok Me and Doggynub opening this to help you guys a bit. [If i didnt know somthng i will ask Doggynub to help , so your request will most likely be done :p] How requests should be written? Script name : Speed Item Description : When you click on this item you get a...
  4. F

    C++ how to?

    I want to know how to learn c++ , actually not just lear i need to know what should i do to be able to play in source files. Waht should i start with then what to do next etc.. I would relly appreciate that :)
  5. F

    Lua how to make a monster dont move??(in a lua/source way)

    As title says ???
  6. F

    Creature no move ??/

    doCreatureSetNoMove(pid, true) Why this doesnt work on monsters and how to make it work on them?? or a simillar function to do that?
  7. F

    percent

    How do i set a percent possibility of getting an item. i need like: 1% get golden armor 70% get gold coins 29% get whatever ?
  8. F

    Help in loop

    when i make this: local itemm = { [7417] = {storage = 10000}, [2466] = {storage = 1020} ,[2650] = {storage = 13000} ) local iteeeemm = getThingFromPos({x = 989, y = 1019, z = 7, stackpos = 1}) for k, v in pairs(itemm) do if (iteeeemm.uid ~= 0 and iteeeemm.itemid == k) then...
  9. F

    how??

    *i want to know how to make that when i use an item thing is removed from x position after x time and that time is broadcasted like 5 4 3 2 1 start * when i make a pvp arena when players attack each other they can enter protection zone even when they have battle. like the battle sign...
  10. F

    help in this script

    help in this plzz function onUse(cid, item, fromPosition, itemEx, toPosition) if getPlayerVocation(cid) <= 4 then doPlayerAddItem(cid,2365,1) end end how to add in this bp like 100 ham 100 meat 100 mushroom when this itm is created
Back
Top