Hallo Zusammen
Ich habe eine frage zu:
PHP
class fractions{ function ReadOrg() { while($user = readdir(opendir("$GameDir/scriptfiles/"))) { if(substr($user, -3) == 'ini') { $file = fopen("$GameDir/scriptfiles/$user","r"); $user = substr($user,0,-4); $functions = new functions(); $PlayerInfo = $functions->GetPlayerInfo($user); if($PlayerInfo['Leader'] > 0) return $PlayerOrg[$user][true][$PlayerInfo['Leader']]; else if($PlayerInfo['Member'] > 0) return $PlayerOrg[$user][false][$PlayerInfo['Member']]; } } closedir($dir_handle); }}?>
Ich versuche, grade das UCP auf dini umzuschreiben.
Leider kenne ich mich mit dem UCP nicht aus & Wollte wissen, wofür diese Funktion gut is?
Ich weiß, das z.b:
Die Enum daten Abgelesen werden.
Z.b hier Der Enum:
enum pInfo
{
if(pInfo[playerid[Leader] == 0)
Nur leider, verstehe ich nicht wie ich Das hinbekomme das z.b Die Skin ID gespeichert wird.
Habe es momentan so:
Desweiteren habe ich Folgende Funktionen Entfern:
PHP
function GetPlayerBizzInfo($user) { require "config.php"; if(!$file=fopen("$GameDir/scriptfiles/bizz.cfg","r")) die("Error reading bizzfile"); while (($data=fgetcsv($file,1024, "|")) !== FALSE) { if($data[1] == $user) { $datanew = array( "Owned" => $data[0], "Owner" => $data[1], "Message" => $data[2], "Extortion" => $data[3], "EntranceX" => $data[4], "EntranceY" => $data[5], "EntranceZ" => $data[6], "ExitX" => $data[7], "ExitY" => $data[8], "ExitZ" => $data[9], "LevelNeeded" => $data[10], "BuyPrice" => $data[11], "EntranceCost" => $data[12], "Till" => $data[13], "Locked" => $data[14], "Interior" => $data[15], "Products" => $data[16], "MaxProducts" => $data[17], "PriceProd" => $data[18] ); return $datanew; } } } // Read out the sbizzinformations function GetPlayerSBizzInfo($user) { require "config.php"; if(!$file=fopen("$GameDir/scriptfiles/sbizz.cfg","r")) die("Error reading bizzfile"); while (($data=fgetcsv($file,1024, "|")) !== FALSE) { if($data[1] == $user) { $datanew = array( "Owned" => $data[0], "Owner" => $data[1], "Message" => $data[2], "Extortion" => $data[3], "EntranceX" => $data[4], "EntranceY" => $data[5], "EntranceZ" => $data[6], "LevelNeeded" => $data[7], "BuyPrice" => $data[8], "EntranceCost" => $data[9], "Till" => $data[10], "Locked" => $data[11], "Interior" => $data[12], "Products" => $data[13], "MaxProducts" => $data[14], "PriceProd" => $data[15] ); return $datanew; } } } function GetPlayerHouseInfo($user) { require "config.php"; if(!$file=fopen("$GameDir/scriptfiles/property.cfg","r")) die("Error reading bizzfile"); while (($data=fgetcsv($file,1024, ",")) !== FALSE) { if($data[12] == $user) { $datanew = array( "Entrancex" => $data[0], "Entrancey" => $data[1], "Entrancez" => $data[2], "Exitx" => $data[3], "Exity" => $data[4], "Exitz" => $data[5], "Healthx" => $data[6], "Healthy" => $data[7], "Healthz" => $data[8], "Armourx" => $data[9], "Armoury" => $data[10], "Armourz" => $data[11], "Owner" => $data[12], "Discription" => $data[13], "Value" => $data[14], "Hel" => $data[15], "Arm" => $data[16], "Int" => $data[17], "Lock" => $data[18], "Owned" => $data[19], "Rooms" => $data[20], "Rent" => $data[21], "Rentabil" => $data[22], "Takings" => $data[23], "Vec" => $data[24], "Vcol1" => $data[25], "Vcol2" => $data[26], "Date" => $data[27], "Level" => $data[28] ); return $datanew; } } }
Da diese nicht in meinem Script Enhalten Sind..
Hoffe mir, kann da Jemand eventuell weiterhelfen..
Mit Freundlichen Grüßen
Dome331