• 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. dunnish

    [HELP] How do I fix this?

    Use all querys and your guild war will work i think :P INSERT INTO `guilds` VALUES `guild_war`; 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...
  2. Znote

    [Znote AAC] Most powerful guilds (TFS 0.3/4 and 1.0)

    Created 2 versions, with table design and without, just remove the one that does not fit your layout. In index.php, before: $cache = new Cache('engine/cache/news'); Add this code: // Most powerful guilds for TFS 0.3/4 and 1.0 //////////////////////// // Create a cache file to avoid high SQL...
  3. Loney

    Lua Need help with war.lua

    Isn't script problem, your database is just missing guild_wars table. Execute this query on PMA: CREATE TABLE `guilds` ( `id` INT NOT NULL AUTO_INCREMENT, `world_id` TINYINT(2) UNSIGNED NOT NULL DEFAULT 0, `name` VARCHAR(255) NOT NULL, `ownerid` INT NOT NULL, `creationdata` INT NOT NULL...
  4. Pedrook

    top guild request

    thank you very much, it worked.
  5. slaw

    top guild request

    I'm not sure if that is what you meant, but try this: <div class="well"> <h2><font color="black">Top 5 Guilds</font></h2> <table class="table table-condensed table-content table-striped"> <tbody> <?php $guildsPower = $SQL->query('SELECT `g`.`id` AS `id`, `g`.`name` AS...
  6. cocacola13

    War System Problem "Talkaction" tfs 0.4

    I was able to get an error 1590757383 My War.lua function onSay(cid, words, param, channel) local guild = getPlayerGuildId(cid) if(not guild or getPlayerGuildLevel(cid) < GUILDLEVEL_LEADER) then doPlayerSendChannelMessage(cid, ""...
  7. J

    Windows [8.6] War system

    Here's my talkaction/script/war.lua 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...
  8. T

    Lua war.lua error

    u use tfs 04 64 bit war.lua local guild = getPlayerGuildId(cid) function onSay(cid, words, param, channel) if(not guild or getPlayerGuildLevel(cid) < GUILDLEVEL_LEADER) then doPlayerSendChannelMessage(cid, "", "You cannot execute this talkaction.", TALKTYPE_CHANNEL_W, 0) return true end...
  9. Tarek

    WAR SYSTEM PROBLEM!

    Test this: local guild = getPlayerGuildId(cid) function onSay(cid, words, param, channel) 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 =...
  10. WibbenZ

    Windows Players Can't die in war.

    That is not the correct script tho.
  11. Enkiie

    War System!

    Hello, today I tried to compile trunk.r3777, and tried to add war system with it, changed the " OPTIONAL_FLAGS="" " to " OPTIONAL_FLAGS="-D__WAR_SYSTEM__" " and started the compiler and added all these scripts [WAR-file]
  12. Tarek

    Guild war command doesnt work version 8.6 and 0.3.6

    This is war.lua in talkactions 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."...
  13. K

    Guild War system problem

    data/talkactions/scripts/war.lua 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...
  14. naod123456

    Need help with guild war

    where shuld i put 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...
  15. megazx

    Help Please war accept Not work

    Help Please war invite Not work idk Why 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)...
  16. P

    Fast Help

    This caused by the function getPlayerGuildName(cid) that you are using in your broadcast messages. Try this: local guild = getPlayerGuildId(cid) local playerGuildName = nil function onSay(cid, words, param, channel) if(not guild or getPlayerGuildLevel(cid) < GUILDLEVEL_LEADER) then...
  17. C

    Lua War system Problem

    oh aright, so what rev you use ?
  18. Rossii

    Lua War.lua help not a major error sure sum1 can fix

    war.lua 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 =...
  19. V

    War system error help how to fix

    Error talkactions interface data/talkactions/scripts/war.lua description (internalHetPlayerInfo) Player not found when requesting player info #11 Anyone can help me on this? local guild = getPlayerGuildId(cid) function onSay(cid, words, param, channel) if(not guild or...
Back
Top