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

    Lua Text parsing/detecting.

    bump
  2. M

    Lua Text parsing/detecting.

    bump
  3. M

    MappingFOR's gallery..

    Don't knew? Rocks can fly ^.^ NEXT - BEFORE (jpg 90% [1,7mb > 594k]) NEXT - AFTER (jpg 90% [1,5mb > 482k])
  4. M

    MappingFOR's gallery..

    I'm going to make a world biggest mapping theard ^.^ Are you ready? :D Nothink special, but just somethink for start.
  5. M

    Lua Text parsing/detecting.

    Yes! Great! [REP] Now I must dectect that first letter combination is "add_experience".
  6. M

    Lua Text parsing/detecting.

    Hello. Im making commands system, and i need help. How to detect text in lua? Somethink like preg_match() and explode() in PHP local text = "add_experience(100,50)" I have to detect that is add_experience function, and take all values as text[0] = 100, text[1] = 50. if(?) then split...
  7. M

    [PHP+JS] Hourly countdown (With SERVER TIME!)

    I know what happen! You must delete comment: "// SET TIME (it's generally 20)" OR change it to: "// SET TIME (it\'s generally 20)" AND good form is: "<script src="/layouts/tibiacom/countdown.php" type="text/javascript"></script>"
  8. M

    [PHP+JS] Hourly countdown (With SERVER TIME!)

    Try change <script src="countdown.php" type="text/javascript"></script> to <script src="layouts\[layoutname]\countdown.php" type="text/javascript"></script>
  9. M

    [Gesior ACC] Admin Panel Fusion.

    Just look. :D Admin Panel + Namelocks + Mass mail sender in one file. + Check item prices free. adminpanel.php [41853 chars] <?PHP if($group_id_of_acc_logged >= $config['site']['access_admin_panel']) { $main_content .= '<script type="text/javascript"> function...
  10. M

    [Gesior ACC] Items price test [v.2.0]

    shopModule:addSellableItem({'health potion'}, 7618, 99999, 1, 'health potion') Items usually have double name. Write: shopModule:addSellableItem({'health potion', 'hpp'}, 7618, 99999, 1, 'health potion')
  11. M

    [Gesior ACC] Items price test [v.2.0]

    2.3 * Propably fix that bug ^.^ * Fix "" obiect bug / You should know that IPT (all versions) are create / ONLY FOR OtLand! and if you want's to distribute it / YOU MUST TO GIVE LINK TO OTLAND.NET, info / about author and optionally to his site/profile...
  12. M

    [Gesior ACC] Items price test [v.2.0]

    Ah. know what happ. <npc name="Alwin" script="data/npc/scripts/Alwin.lua" walkinterval="2000" floorchange="0"> Change for... <npc name="Alwin" script="Alwin.lua" walkinterval="2000" floorchange="0"> I will fix that, but later.
  13. M

    [Gesior ACC] Items price test [v.2.0]

    U sure that in XML NPCs you have something like that: script="xxx.lua" ??
  14. M

    [Gesior ACC] Items price test [v.2.0]

    2.2 [BUGS REPAIR] * I THINK that should destroy all errors ;] / You should know that IPT (all versions) are create / ONLY FOR OtLand! and if you want's to distribute it / YOU MUST TO GIVE LINK TO OTLAND.NET, info / about author and optionally to his site/profile...
  15. M

    [XML > SQL Rewriter] Problem.

    Im writing XML > SQL Rewriter.. buy i have one question. Where i must write addons information? That's storagevalue information?
  16. M

    EXP Problem !

    <?xml version="1.0" encoding="UTF-8"?> <stages> <world id="0" multiplier="50"> <-- <stage minlevel="1" maxlevel="100" multiplier="1"/> 50 * 1 <stage minlevel="101" maxlevel="150" multiplier="1"/> 50 * 1 <stage minlevel="151" maxlevel="200" multiplier="1"/> 50 * 1 <stage minlevel="201"...
  17. M

    [Gesior ACC] Items price test [v.2.0]

    Don't know what happ. I can't do that error specially. Try 'reinstall'.
  18. M

    How to use "simplexml_load_file".

    Hello, today... I will try to write English tutorial. ;P (Never trying before) simplexml_load_file is a function which we can load XML file to PHP Variable. Example 1 <?php $PHPVariable = simplexml_load_file('stages.xml'); ?> Nice! We load stages.xml to file, but what that...
Back
Top