ID:157683
 
Hey guys i need some help from you!

I m Gokussj22 and i would like to know how to make guild houses and guild ranks other then co-leader member and custom...

Any kind of help would be appreciated..
In response to Moonlight Memento
pls can i have a link to guild ranking code or pls help me making it
In response to Gokussj22
In response to Jp
Guys pls only this is left and my game would be complete
In response to Gokussj22
Yeah um, if you programmed a full game this'd be easy. Obviously, you downloaded a source.
In response to Moonlight Memento
i cant figure out how to do so!
In response to Gokussj22
http://www.byond.com/ members/?command=search&text=guild&type=resources

search for guild or party in Resources. @ top right search on this page. should get loads of demos'

or you could simply go here:

http://www.byond.com/developer/articles/start

and learn some DM programming.
Well Gokuussj24523334, you could learn to program instead of ripping and copy and pasting lines of code. If this causes too many headaches you can read LummoxJR's datums article, and list article. Who knows you might even learn something, but by judging the posts from you in this thread I doubt it.
In response to Jarquille
turf
Passages

MA_Guild_Hall

Enter_Hall
density = 1

Enter(mob/PC/M)
if(M.in_guild)
if(usr.guild_name == {"Mystic"})//put here the name of the guild
for(var/obj/O in M.contents)
if(istype(O,/obj/Dragonballs)||istype(O,/obj/Namek_Dragonballs))
M << "You cannot enter with a dragonball!"
return
if(M.fused)
M << "You cannot enter whilst fused"
M.loc = locate(89,143,11)
M.density = 1
M.it_blocked = 1
M.it_lock = 1
else
M << "You aren't in the Guild \white <u><I>«Ê£Î†ÊŠ»</I></u>"
else
M << "You must be in a Guild to enter the Guild Hall"

Exit_Hall
density = 1

Enter(mob/PC/M)
M.loc = locate(211,213,1)
M.density = 1
M.it_blocked = 0
M.it_lock = 0

Here is my GH code and when i enter it doesnt allow me to go in..
In response to Gokussj22
Well then. Possible reasons would be:

1. You are not in a guild. M.in_guild returns FALSE;
2. Your guild name is not "Mystic". usr.guild_name == {"Mystic"} returns FALSE.

Now get off your lazy 10 year old bum and learn either DM programming or how to spot errors in your own(=ripped) code.

<rant>
No one wants to play your ripped game. You think you're cool and 1337 and a programmer but all you're doing is giving us headaches.
You are not making a game.
You are stealing.
You are just an *annoying child*.
You refuse to learn.
You annoy us all.
LRN2READ; Learn 2 Read; Learn to read!
</rant>
In response to Gokussj22
http://www.byond.com/developer/forum/?id=749385#749385

Please keep same-topic posts by the same poster, in 1 Post.
_>
In response to Maximus_Alex2003
Use Datums..
In response to Soul Sign
Soul Sign wrote:
Use Datums..

I know how to use Datums, thank you.

Reply to the correct post.
In response to Soul Sign
Guild
var/name
var/members
var/list/online_members
var/guild_symbol
New()
....
//do wat ever
verb
Guild_Say(m as text)
for(var/mob/M in online_members) M<<m
proc
Login(mob/L)
online_members+=L
for(var/mob/M in online_members) M<<"[L] has arrived!"
Logout(mob/L)
...//reverse the Login()

enough Spoon feeding ; so thats the idea go and get it!
In response to Maximus_Alex2003
whoops sorry, I just press the nearest reply button.
In response to Iuss
Iuss wrote:
Now get off your lazy 10 year old bum and learn either DM programming or how to spot errors in your own(=ripped) code.

codes can't be ripped, unless and until some dumb person gives it away.
In response to Gokussj22
switch usr with M in if(usr.guild_name...)

so it's if(M.guild_name...)
In response to Soul Sign
DUDE....

i tried every damn possible ways and get what to do????

if u guys want u can take my source and add it :)
i will give u all credit.........................
In response to Gokussj22
http://www.byond.com/docs/guide/
http://www.byond.com/docs/ref/

http://www.byond.com/developer/Dantom/YourFirstWorld
http://www.byond.com/games/Deadron.StepBYOND
http://www.byond.com/members/ DreamMakers?command=view_post&post=91907

Start slowly, Divide and Conquer. Reduce your problems to fragments that you can understand.

Atleast get to the point where you can read code like it's english. You aren't even trying. Staring at the code in confusion isn't going to fix it.

<leetspeak>
we want u to learn to code and kno what ur doin. pls understand. jus do it plz
</leetspeak>
Page: 1 2