• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Problem 2 Rzeczy ;)

god maximus

New Member
Joined
May 8, 2009
Messages
139
Reaction score
0
[Witam
Mam Swojego Ots-a i się dzieje tak jak ktoś padnie to wtedy wyskakuje mu błąd
Temple Points Wrong.Contact the Administrator.
Mi się wydaje ,że to coś z temple .
Więc tak w configt.lau mam tal;
-- Account Manager
accountManager = "yes"
newPlayerChooseVoc = "yes"
newPlayerSpawnPosX = 1000
newPlayerSpawnPosY = 1000
newPlayerSpawnPosZ = 7
newPlayerTownId = 8
newPlayerLevel = 8
newPlayerMagicLevel = 1
generateAccountNumber = "no"
Mam nadzieję ,że o to chodzi .
a w RME mam ustawione też na 1000 ,1000,7 Egima City
a W grze pisze tak ;
Position: [X: 1000] [Y: 1000] [Z: 7].

Więc Proszę szybko o odp.
I z góry dziękuję .


Dróga Sprawa Toczy się o Acc Makera ;

Więc ,Jak player chce sobie zrobić posatć na Stronie ,nie może wybrać profesi .
Jest to Acc;
HTML:
Gesior acc. maker 0.3.0 for TFS 0.2.x

Daje Teraz POT do Voollocation ;
HTML:
<?php

/**#@+
 * @version 0.1.0
 * @since 0.1.0
 */

/**
 * @package POT
 * @author Wrzasq <[email protected]>
 * @copyright 2007 (C) by Wrzasq
 * @license http://www.gnu.org/licenses/lgpl-3.0.txt GNU Lesser General Public License, Version 3
 */

/**
 * Wrapper for vocations.xml file.
 * 
 * @package POT
 */
class OTS_VocationsList implements IteratorAggregate, Countable, ArrayAccess
{
/**
 * List of vocations.
 * 
 * @var array
 */
    private $vocations = array();

/**
 * Loads vocations list.
 * 
 * Loads vocations list from given file.
 * 
 * @param string $file vocations.xml file location.
 */
    public function __construct($file)
    {
        // loads DOM document
        $vocations = new DOMDocument();
        $vocations->load($file);

        // loads vocations
        foreach( $vocations->getElementsByTagName('vocation') as $vocation)
        {
            $this->vocations[ (int) $vocation->getAttribute('id') ] = $vocation->getAttribute('name');
        }
    }

/**
 * Magic PHP5 method.
 * 
 * Allows object importing from {@link http://www.php.net/manual/en/function.var-export.php var_export()}.
 * 
 * @internal Magic PHP5 method.
 * @param array $properties List of object properties.
 */
    public function __set_state($properties)
    {
        $object = new self();

        // loads properties
        foreach($properties as $name => $value)
        {
            $object->$name = $value;
        }

        return $object;
    }

/**
 * Returns vocation's ID.
 * 
 * @param string $name Vocation.
 * @return int|bool ID (false if not found).
 */
    public function getVocationId($name)
    {
        return array_search($name, $this->vocations);
    }

/**
 * Returns name of given vocation's ID.
 * 
 * @param int $id Vocation ID.
 * @return string|bool Name (false if not found).
 */
    public function getVocationName($id)
    {
        if( isset($this->vocations[$id]) )
        {
            return $this->vocations[$id];
        }
        else
        {
            return false;
        }
    }

/**
 * Returns amount of vocations loaded.
 * 
 * @return int Count of vocations.
 */
    public function count()
    {
        return count($this->vocations);
    }

/**
 * Returns iterator handle for loops.
 * 
 * @return ArrayIterator Vocations list iterator.
 */
    public function getIterator()
    {
        return new ArrayIterator($this->vocations);
    }

/**
 * Checks if given element exists.
 * 
 * @param string|int $offset Array key.
 * @return bool True if it's set.
 */
    public function offsetExists($offset)
    {
        // integer key
        if( is_int($offset) )
        {
            return isset($this->vocations[$offset]);
        }
        // vocation name
        else
        {
            return array_search($offset, $this->vocations) !== false;
        }
    }

/**
 * Returns item from given position.
 * 
 * @param string|int $offset Array key.
 * @return mixed If key is an integer (type-sensitive!) then returns vocation name. If it's a string then return associated ID. False if offset is not set.
 */
    public function offsetGet($offset)
    {
        // integer key
        if( is_int($offset) )
        {
            if( isset($this->vocations[$offset]) )
            {
                return $this->vocations[$offset];
            }
            // keys is not set
            else
            {
                return false;
            }
        }
        // vocations name
        else
        {
            return array_search($offset, $this->vocations);
        }
    }

/**
 * This method is implemented for ArrayAccess interface. In fact you can't write/append to vocations list. Any call to this method will cause E_OTS_ReadOnly raise.
 * 
 * @param string|int $offset Array key.
 * @param mixed $value Field value.
 * @throws E_OTS_ReadOnly Always - this class is read-only.
 */
    public function offsetSet($offset, $value)
    {
        throw new E_OTS_ReadOnly();
    }

/**
 * This method is implemented for ArrayAccess interface. In fact you can't write/append to vocations list. Any call to this method will cause E_OTS_ReadOnly raise.
 * 
 * @param string|int $offset Array key.
 * @throws E_OTS_ReadOnly Always - this class is read-only.
 */
    public function offsetUnset($offset)
    {
        throw new E_OTS_ReadOnly();
    }
}

/**#@-*/

?>

Proszę o Szybką POMOC z góry THX
 
LoL i lost my 5,5 kk 2 demon helmet amazonm shield because gm must restart items OMG gm plz help me
 
Dziewięciu latek pragnący mieć goda na ots, dawać free items + jego cudowna mapa. Stanowisz konkurencje dla Cip Softu. ahh naucz się pisać to po 1, po 2 od puszcz se mapping po 3 nie rób ots'ów bo ci nie wychodzi.
Mam nadzieje że nie będziesz płakał :(. Takie jest moje zdanie.
 
Last edited:
Szmaty jebane nie potrafią udzielic odpowiedzi tylko kogos obrazac.....
 
Mi się wydaje ,że to coś z temple .
Więc tak w configt.lau mam tal;
Powiesz mi co to za plik ?

Ja już kurwa nie mogę co z niektórymi.
Jak oglądam Polish Board to nie wiem czy się śmiać czy płakać.
Potem powstają tematy, że inni nie chcą pomagać i się tylko nabijają.
Pokażcie mi chociaż jeden normalny temat w którym wyśmiali gościa.
Jakoś nie wydaje mi się żeby ktoś kto piszę poprawną polszczyzną i potrafi korzystać z google nie dostał tu pomocy.
Tak więc co niektórzy niech nie trują za dużo, że tu nie chcą pomagać tylko chwycą za słownik lub chociaż zainstalują sobie wtyczkę do przeglądarki i częściej zaglądali na stronę google.pl a na pewno dalej zajdą.

Odnośnie tematu to złe townid jak Rudolf powiedział.
Odpal map editor i zobacz jakie townid ma Enigma.
 
Tak dokładnie złe townid, kiedyś też miałem podobny problem,
ponieważ sobie zepsułem mapę i musiałem od nowa dodawać all
city.
 
Back
Top