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
Więc tak w configt.lau mam tal;
a w RME mam ustawione też na 1000 ,1000,7 Egima City
a W grze pisze tak ;
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;
Daje Teraz POT do Voollocation ;
Proszę o Szybką POMOC z góry THX
Mam Swojego Ots-a i się dzieje tak jak ktoś padnie to wtedy wyskakuje mu błąd
Mi się wydaje ,że to coś z temple .Temple Points Wrong.Contact the Administrator.
Więc tak w configt.lau mam tal;
Mam nadzieję ,że o to chodzi .-- Account Manager
accountManager = "yes"
newPlayerChooseVoc = "yes"
newPlayerSpawnPosX = 1000
newPlayerSpawnPosY = 1000
newPlayerSpawnPosZ = 7
newPlayerTownId = 8
newPlayerLevel = 8
newPlayerMagicLevel = 1
generateAccountNumber = "no"
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