• 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. W

    Chat msgs related (C++ advanced)

    Hi, I have an otserver in wich players can reset their chars. Here is my request, I would like some help/directions on how to add some info on players msg. 14:00 Example[100]: <msg> I would like to make it like this 14:00 Example[100,X]: <msg> where X is the resets number of that...
  2. W

    Ultra Vip System [for real!]

    I'm back, soon this system will be improoved and up to date. Thx.:thumbup:
  3. W

    Ultra Vip System [for real!]

    Yeah, this system works just like premmy acc system
  4. W

    setPlayerLootRate/SetPlayerRegeneration

    It just came to me, i could ADD in //doPlayerSetRate(cid, type, value), a type named "lootrate" or something like that, would make it a lot shorter i guess.
  5. W

    setPlayerLootRate/SetPlayerRegeneration

    static int32_t luaDoCreatureSetExtraLootRate(lua_State* L); added to luascript.h //doCreatureSetExtraLootRate(cid, value) lua_register(m_luaState, "doCreatureSetExtraLootRate", LuaScriptInterface::luaDoCreatureSetExtraLootRate); luascript.cpp
  6. W

    setPlayerLootRate/SetPlayerRegeneration

    Any help? Cmon Im trying but Im not that good in sources, please? uint16_t Monsters::getLootRandom() { return (uint16_t)std::ceil(((double)random_range(0, MAX_LOOTCHANCE) / g_config.getDouble(ConfigManager::RATE_LOOT) * lootExtraRate); } I added lootExtraRate here, I think that here is where...
  7. W

    shoottype="crystalarrow"

    well, the spirte is already created, i would use the arrow going up-right for all directions but in the source, there's something like SHOOT_EFFECT_CAKE = 0x29 this 0x29 defines what sprite will be used, how can i know wich is crystal arrow
  8. W

    shoottype="crystalarrow"

    I want to use crystal arrow, is it possible? I tryed to add in-source but the client gets a crytical error =/
  9. W

    setPlayerLootRate/SetPlayerRegeneration

    I really need help developing these codes: -A code setPlayerLootRate(cid,rate) setPlayerRegeneration(cid,hpticks,hpamount,manaticks,manaamount) I really need it for VIP accounts, if it is impossible to make, just tell me. Thx!
  10. W

    Compiling Help Compiling TFS 0.3.6

    ...
  11. W

    Compiling Help Compiling TFS 0.3.6

    I got error with this "boost". and others... Can someone tell me how do I configure [b]Library Directories, Include Directories and Resource Directories. I downloaded Stian Repack Dev-Cpp, supposed to compile it. Help please, really urgent!
  12. W

    Ultra Vip System [for real!]

    ? I didnt get it :s I checked here, I would need to change EVERY -isSilverVip(accountName) -isGoldVip(accountName) -getSilverVipTime(accountName) -getGoldTime(accountName) -doAddSilverVipTime(accountName,silverVipTime) -doAddGoldVipTime(accountName,goldVipTime) in the script, a hell of work...
  13. W

    Ultra Vip System [for real!]

    Im thankfull, cuz im noob in lua, but still I made a nice script, for me, maybe when I have some freetime I will change. You wouldnt have to edited database, I didnt see a detail. test
  14. W

    Ultra Vip System [for real!]

    I bet a hundred dollars that if I just replace the codes you've post, there will be errors. You would need to change all the database and the php part, I would do that if it would make some difference.
  15. W

    Ultra Vip System [for real!]

    Thank you, already edited.
  16. W

    Ultra Vip System [for real!]

    @up -> ? It's all separeted to make it easier to configure as you want to. If you like it together, edit the whole script and post it properly.
  17. W

    Ultra Vip System [for real!]

    I should or I must? I downloaded tons of scripts in polish here x.x ~Anyways, I will put up a translation below images, as subtitle.
  18. W

    Ultra Vip System [for real!]

    Hi, I'm here to present you my Vip System, finished seconds ago. I spent days looking for a Vip System good enough to provide me what I wanted, I decided to edit+make my own, for real, Complet system. Well, the modifications are HUGE, I spent a lot of time, so be patient. Features...
  19. W

    Lua 2 functions script

    I dont want to do a /vipgold and /vipsilver to check =/
  20. W

    Lua 2 functions script

    function onSay(cid, words, param) if(words == "/vip")then accountName = getPlayerAccount(cid) if(isSilverVip(accountName))then time1 = getSilverVipTime(accountName) if(time1 > 0)then doPlayerSendTextMessage(cid, 19, "Sua conta tem...
Back
Top