• 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!

Search results for query: guild with id 0

  1. Nux

    Text in The Middle

    Not working =/, I think its impossible? or?
  2. Archez

    Text in The Middle

    Yup, that's wrong. Try this: $main_content .= '<div class="NewsHeadline"> <div class="NewsHeadlineBackground" style="background-image:url(' . $layout_name . '/images/news/newsheadline_background.gif)"> <table border="0" cellpadding="4" width="100%"> <tr><td...
  3. Archez

    Most powerfull guild, please read it! you can help

    Works for me. Archez - Test for wizzar Using the 'whole thing' that you posted. <?php $main_content .= '<div class="NewsHeadline"> <div class="NewsHeadlineBackground" style="background-image:url(' . $layout_name . '/images/news/newsheadline_background.gif)"> <table border="0"> <tr>...
  4. V

    Bug With Guild Logo

    thanks it works :)
  5. C

    Lua Error war script

    function onSay(cid, words, param, channel) local guild = getPlayerGuildId(cid) if(not guild or getPlayerGuildLevel(cid) < GUILDLEVEL_LEADER) then doPlayerSendChannelMessage(cid, "", "You cannot execute this talkaction.", TALKTYPE_CHANNEL_W, 0) return true end local t =...
  6. Snavy

    TFS 1.X+ DATABASE erro

    try: UPDATE guilds SET `balance` = 0, `level` = 1, `experience` = 0 WHERE id = 1
  7. S

    Code for guild war/Help

    Guild war < have Error in mysql When i use /war invite, mysql_real_query(): INSERT INTO guild_wars (guild_id, enemy_id, begin, end, frags, payment) VALUES (2, 3, 1590884298, 0, 100, 0); - MYSQL ERROR: Cannot add or update a child row: a foreign key constraint fails (otserv.guild_wars...
  8. D

    WAR SYSTEM PROBLEM!

    k there is a problem when i try to say anything 09:51 You cannot execute this talkaction.
  9. W

    Fixed Guild War System for Website [include all]-[will not count frags] (TFS 0.3+)

    The Following Errors Have Occurred: # Guild with ID 0 doesn't exist. HELP please ;/
  10. kennyubuntu

    AAC Error leave guild Znote AAC

    When i try to leave guild show me this: string(75) "UPDATE `players` SET `rank_id`='0', `guildnick`= NULL WHERE `id`=5 LIMIT 1;" (query - SQL error) Type: voidQuery (voidQuery is used for update, insert or delete from database) Column 'guildnick' cannot be null And i cant leave on znote... Why?
  11. kennyubuntu

    AAC Error leave guild Znote AAC

    When i try to leave guild show me this: string(75) "UPDATE `players` SET `rank_id`='0', `guildnick`= NULL WHERE `id`=5 LIMIT 1;" (query - SQL error) Type: voidQuery (voidQuery is used for update, insert or delete from database) Column 'guildnick' cannot be null And i cant leave on znote...
  12. Owner Maydel

    Windows [8.6] War system

    function onSay(cid, words, param, channel) local guild = getPlayerGuildId(cid) if(not guild or getPlayerGuildLevel(cid) < GUILDLEVEL_LEADER) then doPlayerSendChannelMessage(cid, "", "You cannot execute this talkaction.", TALKTYPE_CHANNEL_W, 0) return true end local t =...
  13. D

    war system

    Alright,everyone i have an script but when i invite a guild to war it sends it but when i try to accept it says no pending invitation for guild ..... script function onSay(cid, words, param, channel) local guild = getPlayerGuildId(cid) if(not guild or getPlayerGuildLevel(cid) <...
  14. Danger II

    War System!

    Do you have the tables in your database? CREATE TABLE IF NOT EXISTS `guild_wars` ( `id` INT NOT NULL AUTO_INCREMENT, `guild_id` INT NOT NULL, `enemy_id` INT NOT NULL, `begin` BIGINT NOT NULL DEFAULT '0', `end` BIGINT NOT NULL DEFAULT '0', `frags` INT UNSIGNED NOT NULL DEFAULT '0', `payment`...
  15. Ninja

    Solved Tables for my Castle War i don't have

    Try with something like this CREATE TABLE IF NOT EXISTS `castle_fighters` ( `id` int(11) NOT NULL AUTO_INCREMENT, `guild` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `guild` (`guild`) ) ENGINE=InnoDB; ALTER TABLE `castle` ADD `guild_name` VARCHAR(255) NOT NULL;
  16. Zuma Master

    Lua War system. Money disappear and days stays at 3.

    function getPayment(t) local payment = tonumber(t[4]) if(payment ~= nil) then payment = math.max(1, math.min(1000000000, payment)) else payment = 0 end return payment end function onSay(cid, words, param, channel) local guild = getPlayerGuildId(cid) if(not guild or...
  17. rafaeru

    PHP ZnoteACC - Maximum guild members

    Hello, I want to add maximum number of members in guild in ZnoteACC but I'm not good in php. Can someone help in this if statment ? if (!empty($_POST['invite'])) { if (user_character_exist($_POST['invite'])) { // Make sure they are not in another guild // HERE...
  18. Alyhide

    Windows Some Console Error

    For the Guild Wars CREATE TABLE IF NOT EXISTS `guild_wars` ( `id` INT NOT NULL AUTO_INCREMENT, `guild_id` INT NOT NULL, `enemy_id` INT NOT NULL, `begin` BIGINT NOT NULL DEFAULT '0', `end` BIGINT NOT NULL DEFAULT '0', `frags` INT UNSIGNED NOT NULL DEFAULT '0', `payment` BIGINT...
  19. soul4soul

    [Request] Modern AAC help please!

    name it as injection.php put it in injections/home/guilds <?php //Script created by Elf //Changed by Paxton to work with Modern AAC $ots = POT::getInstance(); $ots->connect(POT::DB_MYSQL, connection()); $SQL = $ots->getDBHandle(); echo' <div class="message"><div class="title">Most powerful...
  20. Summ

    CreatureEvent Guild Extra Experience Time [by Summ]

    Hey guys. I thought this script deserves his own thread since it's kinda cool. You can reward guilds with extra experience for a certain time. Every guild can have different experience and time set. Requested here...
Back
Top