• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

[Eluna] Grumbo`z Guild Warz 'Tides of Desolation'

slp13at420

Mad Scientist
added nice video clip of an invasion. has couple good shots of guards in combat and announcing combat.
a couple good shots of the flag changing teams back n forth.

[SUB]"cant think of anything for that pvp girl who has everything.... how about her enemies head on a pike"[/SUB]
 
Last edited:

slp13at420

Mad Scientist
fixed guard faction settings plus a few touch ups - 1-15-2014
fixed Guarddied function 1-15-2014 :nod:
fixed issue with guild chat. 1-15-2014
fixed .txt file missing. dunno how it got screwed up but fixed now. 1-17-2014
 
Last edited:

slp13at420

Mad Scientist
I got it installed.
i got the sql installed.

How do i proceed after that? i tried the commands but could get nothing from it.

ok first you must join a guild . use .guild create "blah blah"
then switch to guild chat channel. use /g to change to guild chat.
type commands in guild chat and you should see a list of commands up to guildmaster level . if you acct is admin then gm commands will show also.
I am also assuming that it loaded in the eluna engine without any errors and produced a group of responses to the world console.

I also have a simple video showing basic command use .. altho it is for the arcemu version the basics are the same.
 
Last edited:

DêuZZ

Enthusiast
Hey,
when Eluna loads the script it shows the error

"Eluna Nova::Error loading `scripts\guildwarz.lua`.
scripts\guildwarz.lua:99: attempt to index local 'Currencynamedb' <a nil value>"

Hopefully you can help me ;-;
 

Foereaper

Founder
Hey,
when Eluna loads the script it shows the error

"Eluna Nova::Error loading `scripts\guildwarz.lua`.
scripts\guildwarz.lua:99: attempt to index local 'Currencynamedb' <a nil value>"

Hopefully you can help me ;-;

Just from looking at that error message, your eluna version must be quite old :p

And the error itself means you don't have the currency item in your database
 
Last edited:

slp13at420

Mad Scientist
as stated above the currencynamedb error is infact due to the item id it is looking for does not exsist in the db. there are 2 sql file you need to run.
1 the db -- REQUIRED
2. the npc's and items. -- REQUIRED
the txt file is just notes and info.
or you can edit the currency entry in the guild_warz.commands table to an exsisting in game item id.
 
Last edited:

creativextent

Enthusiast
ah i found this while looking in logs.

Eluna: error loading file 'lua_scripts\guildwarz.lua' guildwarz.lua:99: attempt to index local "Currencynamedb' <a nil value>

any idea?

Btw thanks for the support. It is hard to find good people these days :)


EDIT: just read above info posted. i will try that :)
 

slp13at420

Mad Scientist
default item id is 62006 for currency. can you add that item to your inventory?

Code:
local Currencynamedb = WorldDBQuery("SELECT `name` FROM `item_template` WHERE `entry` = '"..GWCOMM["SERVER"].currency.."';");
local Currencyname = Currencynamedb:GetString(0)
 
Last edited:

slp13at420

Mad Scientist
When I try to add the item it says "Invalid item id: 44209"

lol k I may see the problem , go into guild_warz.commands and check that currency is set to 62006 . if not then change it to 62006 and save.
sorry the default item id for currency should be 62006 "guild coin"
 
Last edited:

DêuZZ

Enthusiast
Now the console says:
"Error loading `scripts\guildwarz.lua`.
scripts\guildwarz.lua:525: attempt to call global 'RegisterPlayerEvent' <a nil value>"
Code:
RegisterPlayerEvent(21, GWcommands)

And ID 62006 works
 
Last edited:

slp13at420

Mad Scientist
Now the console says:
"Error loading `scripts\guildwarz.lua`.
scripts\guildwarz.lua:525: attempt to call global 'RegisterPlayerEvent' <a nil value>"
Code:
RegisterPlayerEvent(21, GWcommands)

And ID 62006 works

Code:
RegisterPlayerEvent(EventId, function)
Code:
PLAYER_EVENT_ON_GUILD_CHAT              =     21,       // (event, player, msg, Type, lang, guild)

line 525 :
Code:
RegisterPlayerEvent(21, GWcommands)

how old is your eluna core?
I did have chat hook issues in previous versions
 

DêuZZ

Enthusiast
I don't know how old it is, because a friend compiled the server for me.
But I found out what I can do at the weekend now (compiling server)^^
 
Top