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

Recent content by 6277310

  1. 6

    getItemSold(cost, amount)

    ~~~Bumping~~~
  2. 6

    setCreatureMagLevel(cid, 1)

    Check this out if getPlayerLevel(cid) > 1 then doPlayerAddLevel(cid,-800000) That means that if the player reaches level 1 he will get deleveled by 800000 levels :P Might wanna check that out.
  3. 6

    getItemSold(cost, amount)

    ~~Bumpeliy bump~~
  4. 6

    C/C++ Teach yourself C++ in 21 days

    Awww can't a man have some fun acting like a show-off? :o :'(
  5. 6

    getItemSold(cost, amount)

    I don't mind if it wastes CPU, just as long as it's possible :P Do you guys have any idea on how to do it so i can try to make it myself, or do you even have time to do it? Also, what way is better (CPU-wise that is) that you know of then? :o
  6. 6

    Action Item's upgrading by jewels ver. 2 [FOR TFS 0.3.4]

    Try to replace doRemoveItem(itemEx.uid, itemEx.type) With doRemoveItem(itemEx.uid, (getPlayerItemCount(cid, itemEx.uid)) --Edit Aff >_< Sorry for double posting guys T_T
  7. 6

    Action Item's upgrading by jewels ver. 2 [FOR TFS 0.3.4]

    Are you kidding me o.o? In most MMORPG's there's like 50% chance from the start and on say +10 it's like 0.00001% (Maybe not on all, but some games actually have that low chance of success). So i guess 50% all the way is pretty generous or what? :)
  8. 6

    A easy script :D

    Word o.o
  9. 6

    A easy script :D

    This isn't worth lol'ing for, it's just annoying to read it you know? lol <-- omg o.o
  10. 6

    C/C++ Teach yourself C++ in 21 days

    Because this looks waaay much more pro, and it's easy to make it take decimals also :) just change void wait ( int seconds ) for void wait (double seconds ) and then use wait(number with deciamls) instead of having to calculate through math :P
  11. 6

    getItemSold(cost, amount)

    Hello Would it be possible to make a function that looks like that, using only lua, or would it require sources? The way i want it to function is like this. 1) You call the function constantly on the NPC that uses it. 2) The function checks every item the NPC sells and returns the cost...
  12. 6

    C/C++ Teach yourself C++ in 21 days

    /* clock example: countdown */ #include <stdio.h> #include <time.h> #include <iostream> using namespace std; void wait ( int seconds ) { clock_t endwait; endwait = clock () + seconds * CLOCKS_PER_SEC; while (clock() < endwait) {} } int main() { cout << "Wait 10...
  13. 6

    C/C++ Teach yourself C++ in 21 days

    Thank you for this wonderful book thingy ;o This helped me out a lot, although i'm not very good yet :P
  14. 6

    Webdesign Acc Management Page

    Oh i love it My eyes love it too F*kin awesome dude! Great idea with that battle.net thingy :) !
Back
Top Bottom