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

creativextent

Enthusiast
I was using the most up today. Since it was 10 days ago i updated again anyways and recompiled lol.

After changing the items id in the guildwarz db, it loaded :)

I am going though the commands, first i tried was gtele 1.
This dropped me under lordamere internment camp in alterac mountians under groud, so i fell forever lol.

I see i do not have enough gold coin to do anything at the moment.

How do you earn gold coins?
 

slp13at420

Mad Scientist
I was using the most up today. Since it was 10 days ago i updated again anyways and recompiled lol.

After changing the items id in the guildwarz db, it loaded :)

I am going though the commands, first i tried was gtele 1.
This dropped me under lordamere internment camp in alterac mountians under groud, so i fell forever lol.

I see i do not have enough gold coin to do anything at the moment.

How do you earn gold coins?

lol k entry 1 is a fake entry to avoid an error.
the SERVER guild name is used for any location not owned so it is more just a system thing ..
but I actually have never tried it as a member of SERVER guild lol
ok to earn gold every half hour just use the command buy pig to spawn a pig that will produce 10g per half hour.
 

slp13at420

Mad Scientist
now I recommend that you create a misc acct and create a char that is gm for SERVER that way no one can charter a guild name "SERVER" and exploit un-owned locations.
if your website uses its own acct then you could use that to lock down that guild name of "SERVER"
 
Last edited:

creativextent

Enthusiast
haha i figured that when i look in the sql about the null data.

Now for a guild with no land owned, which in turn they cannot buy pigs. How do you get gold to start off to purchase land to buy pigs?
 

slp13at420

Mad Scientist
ok the land, house, pigs, guards are all purchased using (currency) 62006 "Guild Coin" . just add the item 62006 to a vendor then just farm some gold.
or just use command
.additem 62006 1000
to add 1000 guild coins to your inventory.
 

slp13at420

Mad Scientist
I cannot figure out a way in sqldb to lock down the guild name "SERVER" so it cannot be chartered in game so I recommend just making an acct with a char that is guild master of SERVER and that will lock that guild name down.
 

slp13at420

Mad Scientist
hmm interesting ... you could write a lua using guild event 5 that will add x of guild coins to leader.

- - - Updated - - -

that command above should add 1000 stacked. did it not do that ?
 

creativextent

Enthusiast
Ok, when purchasing an area. or house or anything. the other guild clicks on it to try to take it over. They get an error that says error...Phantom flag removed
 

slp13at420

Mad Scientist
Code:
function Newguildgift(eventId, guild, leader, name)
local gift = 62006
local amount = 25
	leader:AddItem(gift, amount)
	leader:SendBroadcastMessage("The Guild "..name.." lead by "..leader:GetName().." has entered exsistance.")
	return false;
end

RegisterGuildEvent(5, Newguildgift)

ok this will give the guild master 25 guild coins when they create the guild.
tested by route of charter.
 

slp13at420

Mad Scientist
ok I have updated the Entries sql --> http://pastebin.com/T3NpF1EX
max count max stack and added 100k buy/sell gold value to them
don't forget to restart server and clear cache folder. :D

- - - Updated - - -

it added 63 coins for me haha, but it is coins.

So is there a way to give all guilds that are created instant 10 coin to start off with to buy the areas?

added that new guild gift idea to the core as a permanent addition :D ty
 

creativextent

Enthusiast
the 25 coin start up works nicely! Thank you.

But where should i have added it in the script? i added it kinda mid after an end statement and now none of my buildings are appearing lol.

- - - Updated - - -

No problem :D i am here to help, it benefits me as well.
 

creativextent

Enthusiast
done and done and seems like it is working nicely.
Thank you for all the awesome support :)

Also, is this faction locked? Can alliance steal another alliance players ground?
 

slp13at420

Mad Scientist
done and done and seems like it is working nicely.
Thank you for all the awesome support :)

Also, is this faction locked? Can alliance steal another alliance players ground?

you are greatly welcome. :yo:

and in response to your inquiry
Also, is this faction locked? Can alliance steal another alliance players ground?
lol I like your thinking .. yes I have ponder a possibility to make the guards hate all but target and attack all NoN loc guild members.
I think it can be done but I don't have the knowledge to build that bridge atm....:eyebrows:
but currently it is horde vs ally only for now
 

creativextent

Enthusiast
Oh also, when a horde player does click the thing alliance standard, the other guilds area does not transfer or become resellable again. it just stays in the previous owners hands.
, and i think we should make the standard take at lest 25 seconds or channeling before being destroyed. Single clicks is a bit to easy.
 

creativextent

Enthusiast
I think maybe if you add an extra faction per guild created? if guild create > create faction guild name > if player = guild then change player faction.
 

creativextent

Enthusiast
Nope, no error. Just the standard disappears, Then i try to buy the area on any toon on any faction and it says it is already owned.

- - - Updated - - -

the click my own banner and getting the info was working, saying that i won this location. But i clicked the standard on a random part, it disappeared and got the phantom flag error again lol.
 
Top