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

[10.77][TFS 1.2] ORTS, a real map project

Inquisition quest 're giving level for players a lower level, one quest at level 100 clicks and goes to 230!!!!
You can edit the exp in:
actions/scripts/inquisition/inquisitionQuestRewards and find the line:
Code:
doPlayerAddExp(cid, 1000000, true, true)

and edit the value.
 
I got three questions.
1. Are you going to fix War Against The Hive quest?
2. Are you going to fix the Umbral items creation?
3. Is it possible to get a list of all quest that is fully working?
Nice work btw, I have never seen something like this before! :D
 
Have as you make a list of quest that the level??? to modify and not have surprises!!!
I would like to have the full map if you like with rookgaard and slands + additionals!!
if you can post in the forum on the first page I'm very grateful!!!

Thank you for your attention!! Lov You
 
You mean quests which is giving exp?
 
Been reading the scripts and still couldn't figure out how to get addons. Can someone tell me what I have to do in game?
thanks in advance.
 
Been reading the scripts and still couldn't figure out how to get addons. Can someone tell me what I have to do in game?
thanks in advance.
!addon "first addon

you need the " after addon, also with the required addon items in your inventroy, you can see what you need in the script.
 
tried
!addon "first addon
!addon "first addon brotherhood
!addon "first

still nothing
 
Found an interesting problem, when i use potions or food on my server it crashs the client and de-bugs it, on multiple computers as-well.

Ninjas post earlier in the thread

http://pastebin.com/sCk400pv << That one fixed the client crashing on potion use but i still have the client crashing on food use.

@Printer @Ninja

EDIT:
Below script fixed the issue
Code:
local food =
{
    [2362] = {8, "Crunch."},
    [2666] = {15, "Munch."},
    [2667] = {12, "Munch."},
    [2668] = {10, "Mmmm."},
    [2669] = {17, "Munch."},
    [2670] = {4, "Gulp."},
    [2671] = {30, "Chomp."},
    [2672] = {60, "Chomp."},
    [2673] = {5, "Yum."},
    [2674] = {6, "Yum."},
    [2675] = {13, "Yum."},
    [2676] = {8, "Yum."},
    [2677] = {1, "Yum."},
    [2678] = {18, "Slurp."},
    [2679] = {1, "Yum."},
    [2680] = {2, "Yum."},
    [2681] = {9, "Yum."},
    [2682] = {20, "Yum."},
    [2683] = {17, "Munch."},
    [2684] = {8, "Crunch."},
    [2685] = {6, "Munch."},
    [2686] = {9, "Crunch."},
    [2687] = {2, "Crunch."},
    [2688] = {9, "Munch."},
    [2689] = {10, "Crunch."},
    [2690] = {3, "Crunch."},
    [2691] = {8, "Crunch."},
    [2792] = {6, "Munch."},
    [2793] = {9, "Munch."},
    [2695] = {6, "Gulp."},
    [2696] = {9, "Smack."},
    [2787] = {9, "Munch."},
    [2788] = {4, "Munch."},
    [2789] = {22, "Munch."},
    [2790] = {30, "Munch."},
    [2791] = {30, "Munch."},
    [2792] = {6, "Munch."},
    [2794] = {3, "Munch."},
    [2795] = {36, "Munch."},
    [2796] = {5, "Munch."},
    [2793] = {9, "Munch."},
    [5097] = {4, "Yum."},
    [6125] = {8, "Gulp."},
    [6278] = {10, "Mmmm."},
    [6279] = {15, "Mmmm."},
    [6393] = {12, "Mmmm."},
    [6394] = {15, "Mmmm."},
    [6501] = {20, "Mmmm."},
    [6541] = {6, "Gulp."},
    [6542] = {6, "Gulp."},
    [6543] = {6, "Gulp."},
    [6544] = {6, "Gulp."},
    [6545] = {6, "Gulp."},
    [6569] = {1, "Mmmm."},
    [6574] = {4, "Mmmm."},
    [7158] = {15, "Munch."},
    [7159] = {13, "Munch."},
    [7372] = {7, "Yum."},
    [7373] = {7, "Yum."},
    [7374] = {7, "Yum."},
    [7375] = {7, "Yum."},
    [7376] = {7, "Yum."},
    [7377] = {7, "Yum."}
}
function onUse(cid, item, frompos, item2, topos)
    if(food[item.itemid] ~= nil) then
        if (getPlayerFood(cid) + food[item.itemid][1]) >= 400 then
            doPlayerSendCancel(cid, "You are full.")
        else
            doPlayerFeed(cid, food[item.itemid][1] * 4)
            doCreatureSay(cid, food[item.itemid][2], TALKTYPE_ORANGE_1)
            doRemoveItem(item.uid, 1)
        end
        return TRUE
    end
    return FALSE
end
 
Last edited:
Found an interesting problem, when i use potions or food on my server it crashs the client and de-bugs it, on multiple computers as-well.

Ninjas post earlier in the thread

http://pastebin.com/sCk400pv << That one fixed the client crashing on potion use but i still have the client crashing on food use.

@Printer @Ninja

EDIT:
Below script fixed the issue
it is because you don't use tfs 1.0 or your engine is pretty outdated, that has nothing to do with this datapack. we currently use TALKTYPE_MONSTER_SAY and your script uses TALKTYPE_ORANGE_1, that is why.
 
it is because you don't use tfs 1.0 or your engine is pretty outdated, that has nothing to do with this datapack. we currently use TALKTYPE_MONSTER_SAY and your script uses TALKTYPE_ORANGE_1, that is why.
Im using sources compiled 8 days ago so not entirly sure, just saying if people are experincing what i am thats the fix.
 
I know its a stupid question, but where can i download this server? I played otserv some years ago, but i dont remember how the things go

thx
 
Back
Top