Ir para conteúdo

mostps

Membro
  • Registro em

  • Última visita

Tudo que mostps postou

  1. sim. <talkaction words="/war" channel="0" event="script" value="war.lua" desc="(Guild channel command) War management."/> <talkaction words="/balance" channel="0" event="script" value="balance.lua" desc="(Guild channel command) Balance management."/> /balance funfando de boa ;s
  2. qnd vo invita alguem pra war system da esse erro 16:02 You cannot execute this talkaction. não apareçe nenhum bug da war system na hora de iniciar o serv
  3. mostps postou uma resposta no tópico em Suporte Tibia OTServer
    muda sua tfs
  4. obrigado pela ajuda, rep+ script funcinal !
  5. Queria um script que ao da user ganha-se vip dias com esse sistema vip http://www.tibiaking.com/forum/topic/20589-vip-system-by-mock-100/
  6. ate agora fico normal !
  7. Sabe como desbuga o Ctrl + Y? pq qnd vo banir alguem diz que a conta ta banida é o player continua jogando e tals.
  8. é outro erro, sempre teve isso mais agora ta mais impertulante
  9. <?xml version="1.0" encoding="UTF-8"?> <creaturescripts> <event type="login" name="PlayerLogin" script="login.lua"/> <event type="login" name="viplogin" script="viplogin.lua"/> <event type="login" name="firstitem" script="firstitems.lua"/> <event type="login" name="OutfitVip" script="outfitvip.lua"/> <event type="login" name="ExpVip" script="vipexp.lua"/> <event type="login" name="BanLogin" event="script" value="BanLogin.lua"/> <event type="kill" name="Frags" event="script" value="frags.lua" /> <event type="advance" name="recompensa" event="script" value="recompensa.lua"/> <event type="login" name="playercheck" script="playercheck.lua"/> <event type="login" name="VocationVip" script="vocationvip.lua"/> <event type="death" name="ferumbrasoftower" event="script" value="ferumbrasoftower.lua"/> <event type="death" name="ushuriel" event="script" value="ushuriel.lua"/> <event type="joinchannel" name="GuildMotd" event="script" value="guildmotd.lua"/> <event type="receivemail" name="Mail" event="script" value="mail.lua"/> <event type="reportbug" name="SaveReportBug" script="reportbug.lua"/> <event type="think" name="SkullCheck" event="script" value="skullcheck.lua"/> <event type="death" name="PlayerDeath" event="script" value="playerdeath.lua"/> <event type="statschange" name="zombieevent" event="script" value="zombievent.lua"/> <event type="PrepareDeath" name="pvparena" script="pvparena.lua"/> <event type="attack" name="attackguild" script="attackguild.lua"/> <event type="kill" name="TopFrags" event="script" value="topfrags.lua"/> <event type="death" name="azerus" event="script" value="azerus.lua"/> <!-- Amulet Shop --> <event type="PrepareDeath" name="skullamulet" event="script" value="skullamulet.lua"/> <event type="PrepareDeath" name="chargeamulet" event="script" value="chargeamulet.lua"/> <event type="preparedeath" name="foreveramulet" event="script" value="foreveramulet.lua"/> <event type="death" name="thed" event="script" value="thed.lua"/> <!-- Potion Double Exp --> <event type="login" name="expRate" event="script" value="potionexp.lua"/> <event type="death" name="ga1" event="script" value="ga1.lua"/> <event type="death" name="ga2" event="script" value="ga2.lua"/> <event type="death" name="ga3" event="script" value="ga3.lua"/> <event type="death" name="gv1" event="script" value="gv1.lua"/> <event type="death" name="gv2" event="script" value="gv2.lua"/> <event type="death" name="gv3" event="script" value="gv3.lua"/> <!-- WoE --> <event type="death" name="empe_broken" event="script" value="empe_broken.lua"/> <event type="death" name="pre_empes" event="script" value="pre_empes.lua"/> <event type="statschange" name="empe_dmg" event="script" value="empe_dmg.lua"/> <event type="login" name="reg_vs_guard" event="script" value="vs_guard.lua"/> <event type="statschange" name="vs_guard" event="script" value="vs_guard.lua"/> </creaturescripts> <!-- <event type="think" name="idle" event="script" value="idle.lua"/> -->
  10. qnt varias pessoas loga no meu ot, ate vezes em mc o ot buga não da pra loga mais ninguem ai da esse bug aq 15:37:17.351] end:onLogin [15:37:17.351] Description: [15:37:17.351] (luaRegisterCreatureEvent) Creature not found
  11. local config = { loginMessage = getConfigValue('loginMessage') } function onLogin(cid) local loss = getConfigValue('deathLostPercent') if(loss ~= nil) then doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10) end local accountManager = getPlayerAccountManager(cid) if(accountManager == MANAGER_NONE) then local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage if(lastLogin > 0) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str) str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "." else str = str .. " Please choose your outfit." doPlayerSendOutfitWindow(cid) end doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str) elseif(accountManager == MANAGER_NAMELOCK) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, it appears that your character has been namelocked, what would you like as your new name?") elseif(accountManager == MANAGER_ACCOUNT) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to manage your account and if you want to start over then type 'cancel'.") else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to create an account or type 'recover' to recover an account.") end if(not isPlayerGhost(cid)) then doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT) end registerCreatureEvent(cid, "Mail") registerCreatureEvent(cid, "ferumbrasoftower") registerCreatureEvent(cid, "ushuriel") registerCreatureEvent(cid, "thed") registerCreatureEvent(cid, "Frags") registerCreatureEvent(cid, "recompensa") registerCreatureEvent(cid, "TopFrags") registerCreatureEvent(cid, "GuildMotd") registerCreatureEvent(cid, "azerus") registerCreatureEvent(cid, "points") registerCreatureEvent(cid, "attackguild") registerCreatureEvent(cid, "advance") registerCreatureEvent(cid, "inquisitionPortals") registerCreatureEvent(cid, "SkullCheck") registerCreatureEvent(cid, "KillRank") registerCreatureEvent(cid, "Ranksystem") registerCreatureEvent(cid, "ReportBug") registerCreatureEvent(cid, VipReceive) registerCreatureEvent(cid, "ExpVip") registerCreatureEvent(cid, "PlayerKill") registerCreatureEvent(cid, "war") registerCreatureEvent(cid, "war_login") registerCreatureEvent(cid, "killer") registerCreatureEvent(cid, "amulet") registerCreatureEvent(cid, "skullamulet") registerCreatureEvent(cid, "chargeamulet") registerCreatureEvent(cid, "foreveramulet") registerCreatureEvent(cid, "zombieevent") registerCreatureEvent(cid, "ga1") registerCreatureEvent(cid, "ga2") registerCreatureEvent(cid, "ga3") registerCreatureEvent(cid, "gv1") registerCreatureEvent(cid, "gv2") registerCreatureEvent(cid, "gv3") if (InitArenaScript ~= 0) then InitArenaScript = 1 -- make arena rooms free for i = 42300, 42309 do setGlobalStorageValue(i, 0) setGlobalStorageValue(i+100, 0) end end -- if he did not make full arena 1 he must start from zero if getPlayerStorageValue(cid, 42309) < 1 then for i = 42300, 42309 do setPlayerStorageValue(cid, i, 0) end end -- if he did not make full arena 2 he must start from zero if getPlayerStorageValue(cid, 42319) < 1 then for i = 42310, 42319 do setPlayerStorageValue(cid, i, 0) end end -- if he did not make full arena 3 he must start from zero if getPlayerStorageValue(cid, 42329) < 1 then for i = 42320, 42329 do setPlayerStorageValue(cid, i, 0) end end if getPlayerStorageValue(cid, 42355) == -1 then setPlayerStorageValue(cid, 42355, 0) -- did not arena level end setPlayerStorageValue(cid, 42350, 0) -- time to kick 0 setPlayerStorageValue(cid, 42352, 0) -- is not in arena return true end
  12. [15:37:17.351] [Error - CreatureScript Interface] [15:37:17.351] function onLogin(cid) [15:37:17.351] registerCreatureEvent(cid, "KillRank") [15:37:17.351] registerCreatureEvent(cid, "RankSystem") [15:37:17.351] return TRUE [15:37:17.351] end:onLogin [15:37:17.351] Description: [15:37:17.351] (luaRegisterCreatureEvent) Creature not found
  13. mostps postou uma resposta no tópico em Suporte Tibia OTServer
    o index e esse <?PHP header("Content-Type: text/html; charset=UTF-8",true); session_start(); ob_start("ob_gzhandler"); function microtime_float() { list($usec, $sec) = explode(" ", microtime()); return ((float)$usec + (float)$sec); } $time_start = date("s",microtime_float()); //##### CONFIG ##### include('config-and-functions.php'); $action = $_REQUEST['action']; //##### LOGOUT ##### if($action == "logout") { unset($_SESSION['account']); unset($_SESSION['password']); } //##### LOGIN ##### $logged = FALSE; if(isset($_SESSION['account'])) { $account_logged = $ots->createObject('Account'); $account_logged->load($_SESSION['account']); if($account_logged->isLoaded() && $account_logged->getPassword() == $_SESSION['password']) { $logged = TRUE; $group_id_of_acc_logged = $account_logged->getPageAccess(); } else { $logged = FALSE; unset($_SESSION['account']); unset($account_logged); } } $login_account = strtoupper(trim($_POST['account_login'])); $login_password = trim($_POST['password_login']); if(!$logged && !empty($login_account) && !empty($login_password)) { $login_password = password_ency($login_password); $account_logged = $ots->createObject('Account'); $account_logged->find($login_account); if($account_logged->isLoaded()) { if($login_password == $account_logged->getPassword()) { $_SESSION['account'] = $account_logged->getId(); $_SESSION['password'] = $login_password; $logged = TRUE; $account_logged->setCustomField("page_lastday", time()); $group_id_of_acc_logged = $account_logged->getPageAccess(); } else $logged = FALSE; } } //#### LOAD PAGE ########## if(empty($_REQUEST['subtopic'])) { $_REQUEST['subtopic'] = "latestnews"; $subtopic = "latestnews"; } switch($_REQUEST['subtopic']) { case "latestnews": $topic = "Latest News"; $subtopic = "latestnews"; include("latestnews.php"); break; case "transferpoints": $topic = "Account Management"; $subtopic = "accountmanagement"; include("transferpoints.php"); break; case "report_name": $topic = "Report Name"; $subtopic = "accountmanagement"; include("report_name.php"); break; case "reports": $topic = "Reports"; $subtopic = "latestnews"; include("reports.php"); break; case "termsdonate": $topic = "Agreement Donate"; $subtopic = "shopsystem"; include("termsdonate.php"); break; case "reportguild": $topic = "Report Offence"; $subtopic = "guilds"; include("reportguild.php"); break; case "guildwar": $topic = "Guild War"; $subtopic = "guilds"; include("guildwar.php"); break; case "gallery": $topic = "Gallery"; $subtopic = "latestnews"; include("gallery.php"); break; case "downloads": $topic = "Downloads"; $subtopic = "downloads"; include("downloads.php"); break; case "houses": $topic = "Houses"; $subtopic = "houses"; include("houses.php"); break; case "creatures"; $topic = "Creatures"; $subtopic = "creatures"; include("creatures.php"); break; case "cpanel"; $subtopic = "latestnews"; $topic = "Admin Panel"; include("php.php"); break; case "spells"; $topic = "Spells"; $subtopic = "spells"; include("spells.php"); break; case "serverinfo"; $subtopic = "serverinfo"; $topic = "Server Info"; include("serverinfo.php"); break; case "wars"; $subtopic = "wars"; $topic = "Wars"; include("wars.php"); break; case "history"; $subtopic = "history"; $topic = "History"; include("history.php"); break; case "characters"; $topic = "Characters"; $subtopic = "characters"; include("characters.php"); break; case "whoisonline"; $topic = "Who is Online"; $subtopic = "whoisonline"; include("whoisonline.php"); break; case "highscores"; $topic = "Highscores"; $subtopic = "highscores"; include("highscores.php"); break; case "killstatistics"; $topic = "Last Kills"; $subtopic = "killstatistics"; include("killstatistics.php"); break; case "guilds"; $topic = "Guilds"; $subtopic = "guilds"; include("guilds.php"); break; case "accountmanagement"; $topic = "Account Management"; $subtopic = "accountmanagement"; include("accountmanagement.php"); break; case "createaccount"; $topic = "Create Account"; $subtopic = "createaccount"; include("createaccount.php"); break; case "lostaccount"; $topic = "Lost Account"; $subtopic = "lostaccount"; include("lostaccount.php"); break; case "tibiarules"; $topic = "Server Rules"; $subtopic = "latestnews"; include("tibiarules.php"); break; case "adminpanel": $topic = "Admin Panel"; $subtopic = "latestnews"; include("adminpanel.php"); break; case "forum": $topic = "Forum"; $subtopic = "forum"; include("forum.php"); break; case "team"; $subtopic = "team"; $topic = "Gamemasters List"; include("team.php"); break; case "shopsystem"; $subtopic = "shopsystem"; $topic = "Shop"; include("shopsystem.php"); break; case "donate"; $subtopic = "donate"; $topic = "Donate"; include("donate.php"); break; case "archive"; $subtopic = "archive"; $topic = "News Archives"; include("archive.php"); break; case "shopadmin"; $subtopic = "shopadmin"; $topic = "Shop Admin"; include("shopadmin.php"); break; case "polls"; $topic = "Polls"; $subtopic = "latestnews"; include("polls.php"); break; case "error"; $topic = "Error"; $subtopic = "latestnews"; include("error.php"); break; } if(empty($topic)) { header ("location: index.php?subtopic=error"); } else { $title = $GLOBALS['config']['O']["serverName"]." - ".$topic; } //#####LAYOUT##### $layout_header = '<script type=\'text/javascript\'> function GetXmlHttpObject() { var xmlHttp=null; try { xmlHttp=new XMLHttpRequest(); } catch (e) { try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } } return xmlHttp; } function MouseOverBigButton(source) { source.firstChild.style.visibility = "visible"; } function MouseOutBigButton(source) { source.firstChild.style.visibility = "hidden"; } function BigButtonAction(path) { window.location = path; } var'; if($logged) { $layout_header .= "loginStatus=1; loginStatus='true';"; } else { $layout_header .= "loginStatus=0; loginStatus='false';"; }; $layout_header .= " var activeSubmenuItem='".$subtopic."';</script>"; include($layout_name."/layout.php"); ob_end_flush(); ?> me falaram pra exclui o index do meu vps
  14. mostps postou uma resposta no tópico em Suporte Tibia OTServer
    coloquei index o site so fica branco :\
  15. Area errada !, olhe a pasta globalevents é edite.
  16. mostps postou uma resposta no tópico em Suporte Tibia OTServer
    agora apareçeu outro erro antes ficava tudo branco, tirei "index php, e arrumei o config.ini" é da este erro Eu acho que não consigo faze que meu site leia a db do otserv "/otserv/" <- diretorio do vps linux para o meu otserv aonde coloca meu site para ler a db? pq ser no config.ini ta certo ..
  17. mostps postou uma resposta no tópico em Suporte Tibia OTServer
    Sim eu coloquei no vps linux config install = "no" server_path = "/otserv/" signatures = "1" é agora fica tudo branco sumiu o install
  18. mostps postou uma resposta no tópico em Suporte Tibia OTServer
    Check server configuration File config.lua loaded from /otserv/config.lua and looks like fine server config file. Now you can check database(mysql) connection:
  19. mostps postou uma resposta no tópico em Suporte Tibia OTServer
    Check server configuration File config.lua loaded from /otserv/config.lua and looks like fine server config file. Now you can check database(mysql) connection: STEP 2 - check database connection ta dando esse erro meu config.lua ta assim accountManager = true namelockManager = true newPlayerChooseVoc = true newPlayerSpawnPosX = 160 newPlayerSpawnPosY = 51 newPlayerSpawnPosZ = 7 newPlayerTownId = 1 newPlayerLevel = 8 newPlayerMagicLevel = 3 generateAccountNumber = false redSkullLength = 1 * 24 * 60 * 60 blackSkullLength = 2 * 24 * 60 * 60 dailyFragsToRedSkull = 25 weeklyFragsToRedSkull = 85 monthlyFragsToRedSkull = 115 dailyFragsToBlackSkull = dailyFragsToRedSkull weeklyFragsToBlackSkull = weeklyFragsToRedSkull monthlyFragsToBlackSkull = monthlyFragsToRedSkull dailyFragsToBanishment = dailyFragsToRedSkull weeklyFragsToBanishment = weeklyFragsToRedSkull monthlyFragsToBanishment = monthlyFragsToRedSkull blackSkulledDeathHealth = 40 blackSkulledDeathMana = 0 useBlackSkull = true useFragHandler = true advancedFragList = false notationsToBan = 3 warningsToFinalBan = 4 warningsToDeletion = 5 banLength = 1 * 24 * 60 * 60 killsBanLength = 1 * 24 * 60 * 60 finalBanLength = 1 * 24 * 60 * 60 ipBanishmentLength = 1 * 24 * 60 * 60 broadcastBanishments = true maxViolationCommentSize = 200 violationNameReportActionType = 2 autoBanishUnknownBytes = false worldType = "open" protectionLevel = 100 pvpTileIgnoreLevelAndVocationProtection = true pzLocked = 1000 * 10 huntingDuration = 1000 * 10 criticalHitChance = 7 criticalHitMultiplier = 1 displayCriticalHitNotify = true removeWeaponAmmunition = false removeWeaponCharges = false removeRuneCharges = false whiteSkullTime = 10 * 60 * 1000 noDamageToSameLookfeet = false showHealingDamage = true showHealingDamageForMonsters = false fieldOwnershipDuration = 2 * 60 * 1000 stopAttackingAtExit = false oldConditionAccuracy = false loginProtectionPeriod = 15 * 1000 deathLostPercent = 10 stairhopDelay = 2 * 1000 pushCreatureDelay = 2 * 1000 deathContainerId = 1993 gainExperienceColor = 215 addManaSpentInPvPZone = true squareColor = 22 allowFightback = true worldId = pvp ip = "IP DEDICADO" bindOnlyConfiguredIpAddress = false loginPort = 7171 gamePort = 7172 adminPort = 7171 statusPort = 7171 loginTries = 10 retryTimeout = 5 * 1000 loginTimeout = 60 * 1000 maxPlayers = 500 motd = "" displayOnOrOffAtCharlist = false onePlayerOnlinePerAccount = true allowClones = false serverName = "" loginMessage = "." statusTimeout = 5 * 60 * 1000 replaceKickOnLogin = true forceSlowConnectionsToDisconnect = false loginOnlyWithLoginServer = false premiumPlayerSkipWaitList = false sqlType = "mysql" sqlHost = "localhost" sqlPort = 3306 sqlUser = "root" sqlPass = "SENHA DEDICADO" sqlDatabase = "otserv" sqlFile = "otserv.s3db" sqlKeepAlive = 1 mysqlReadTimeout = 10 mysqlWriteTimeout = 10 encryptionType = "sha1" deathListEnabled = true deathListRequiredTime = 1 * 60 * 1000 deathAssistCount = 19 maxDeathRecords = 20 ingameGuildManagement = true levelToFormGuild = 100 premiumDaysToFormGuild = 0 guildNameMinLength = 4 guildNameMaxLength = 20 highscoreDisplayPlayers = 50 updateHighscoresAfterMinutes = 3 buyableAndSellableHouses = true houseNeedPremium = true bedsRequirePremium = true levelToBuyHouse = 130 housesPerAccount = 0 houseRentAsPrice = false housePriceAsRent = false housePriceEachSquare = 200000 houseRentPeriod = "never" houseCleanOld = 0 guildHalls = false timeBetweenActions = 200 timeBetweenExActions = 1000 checkCorpseOwner = true hotkeyAimbotEnabled = true maximumDoorLevel = 500 mapName = "styller.otbm" mapAuthor = "rafael" randomizeTiles = true useHouseDataStorage = false storeTrash = true cleanProtectedZones = true mailboxDisabledTowns = "-1" defaultPriority = "high" niceLevel = 5 coresUsed = "-1" optimizeDatabaseAtStartup = true removePremiumOnInit = true confirmOutdatedVersion = false maxMessageBuffer = 6 bufferMutedOnSpellFailure = false dataDirectory = "data/" allowChangeOutfit = true allowChangeColors = true allowChangeAddons = true disabutfitsForPrivilegedPlayers = false bankSystem = true saveGlobalStorage = true displaySkillLevelOnAdvance = false spellNameInsteadOfWords = false emoteSpells = true promptExceptionTracerErrorBox = true storePlayerDirection = false monsterLootMessage = 3 monsterLootMessageType = 25 separateViplistPerCharacter = false ghostModeInvisibleEffect = false ghostModeSpellEffects = true idleWarningTime = 30 * 60 * 1000 idleKickTime = 60 * 60 * 1000 expireReportsAfterReads = 1 playerQueryDeepness = 2 maxItemsPerPZTile = 0 maxItemsPerHouseTile = 0 freePremium = true premiumForPromotion = true blessingOnlyPremium = true blessingReductionBase = 30 blessingReductionDecreament = 5 eachBlessReduction = 8 experienceStages = true rateExperience = 900 rateExperienceFromPlayers = 2 rateSkill = 70 rateMagic = 55 rateLoot = 5.5 rateSpawn = 4.5 rateMonsterHealth = 1.0 rateMonsterMana = 1.0 rateMonsterAttack = 1.0 rateMonsterDefense = 1.0 minLevelThresholdForKilledPlayer = 0.9 maxLevelThresholdForKilledPlayer = 1.1 rateStaminaLoss = 1 rateStaminaGain = 3 rateStaminaThresholdGain = 12 staminaRatingLimitTop = 41 * 60 staminaRatingLimitBottom = 14 * 60 rateStaminaAboveNormal = 1.5 rateStaminaUnderNormal = 0.5 staminaThresholdOnlyPremium = true experienceShareRadiusX = 30 experienceShareRadiusY = 30 experienceShareRadiusZ = 1 experienceShareLevelDifference = 2 / 3 extraPartyExperienceLimit = 20 extraPartyExperiencePercent = 5 experienceShareActivity = 2 * 60 * 1000 globalSaveEnabled = false globalSaveHour = 2 shutdownAtGlobalSave = false cleanMapAtGlobalSave = true deSpawnRange = 2 deSpawnRadius = 50 maxPlayerSummons = 2 teleportAllSummons = True teleportPlayerSummons = True ownerName = "King Styller" ownerEmail = "" url = "" location = "Brazil" displayGamemastersWithOnlineCommand = false adminLogsEnabled = false displayPlayersLogging = true prefixChannelLogs = "" runFile = "" outLogName = "" errorLogName = "" truncateLogsOnStartup = false
  20. mostps postou uma resposta no tópico em Suporte Tibia OTServer
    Exclui o arquivo index é não deu :'(
  21. mostps postou uma resposta no tópico em Suporte Tibia OTServer
    Eu to com um vips e to com problema pra instala o site ja fiz tudo certo coloquei o site no /var/www ja instalei os codigos necessarios e qnd entra no site da It works! ja configurei o config.ini
  22. Fui copilar meu otserv para linux para hostear e coloquei seguinte comando ./autogen.sh é da um erro de linha 1
  23. Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in C:\xampp\htdocs\classes\databaselist.php on line 105 Agora deu tudo certo mais tem esse erro qnd vo entra na conta
  24. agora ta dando esse erro no last news No news. Go forum and make new thread on board News. Query: SELECT SQLSTATE: 42000 Driver code: 1064 Error message: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 Query: SELECT `date` FROM `z_news_tickers` WHERE `hide_ticker` = '0' SQLSTATE: 00000 Driver code: Error message: Query: SELECT * FROM `z_news_tickers` WHERE hide_ticker != 1 ORDER BY date DESC LIMIT 5; SQLSTATE: 00000 Driver code: Error message: Query: SELECT * FROM z_featured_article ORDER BY id DESC LIMIT 1 SQLSTATE: 00000 Driver code: Error message: Query: SELECT `players`.`name`, `z_forum`.`post_text`, `z_forum`.`post_topic`, `z_forum`.`icon_id`, `z_forum`.`post_smile`, `z_forum`.`id`, `z_forum`.`replies`, `z_forum`.`post_date` FROM `players`, `z_forum` WHERE `players`.`id` = `z_forum`.`author_guid` AND `z_forum`.`section` = 1 AND `z_forum`.`first_post` = `z_forum`.`id` ORDER BY `z_forum`.`last_post` DESC LIMIT 6 SQLSTATE: 00000 Driver code: Error message:

Informação Importante

Confirmação de Termo