ID:160569
 
can some one help me with a transfom code on dbz?
i have no idea how to start or anything.
mob/var/list/DBZTransform[65335][65335]


Use this, it's a built-in variable to implement transformation for DBZ games.
mob/proc/Transform() //make a new proc for transforming
world << "GRAAHH!!!11!!!!!11!!" //tell the world that o_o
overlays += new /FX/aura //add a /FX/aura datum to their overlays
icon = 'super saiyan.dmi' //change their icon

FX
parent_type = /obj //make sure it inherits all vars/procs from /obj
aura //create a new type for the aura
icon = 'aura.dmi' //set its icon to aura.dmi


You really sound like you should read the DM guide and the ZBT's.
In response to Glarfugus
thanks guys.ad sorry for bugging
In response to Glarfugus
Best code evar.


Seriously, I've never seen joke code this good. Usually people just use world/New() del(src) but, wow!
In response to Jeff8500
yeah lol.and thanks alot to both off you
In response to Jeff8500
You're not supposed to actually help this dude, he's done nothing to help himself.
In response to Glarfugus
dude i try but i dont know how to code a transform code.
i a begginner how do you think i could make all does codes?
In response to Jeff8500
hey lol i still got 1 error idk why.
In response to Junior197
It's because you lack the intelligence to fix said error. If you took my advice and read the DM guide/ZBT's you would know how to fix the errors. And yes, that link is where you should go to learn.
In response to Jeff8500
i dont think its because of that.but i got 1 error.
In response to Junior197
And that one error is just stupidity on your part; the code itself is perfect. Like I said read the DM guide

Welcome, Novice programmer!
In response to Glarfugus
Glarfugus wrote:
You're not supposed to actually help this dude, he's done nothing to help himself.

Technically this is a help forum. If you don't want to help people that's fine, but you shouldn't really advise against it.

This guy is obviously new to the scene and instead of providing code designed to deliberately crash a game Jeff has opted to provide a well-commented example code along with a couple nudges to some of our great resources.

Junior197, here's some links to the resources Jeff mentioned. =)
http://www.byond.com/members/ DreamMakers?command=view_post&post=36143
http://www.byond.com/docs/guide/
In response to YMIHere
I already gave him the welcome novice programmer link 3 times, which proves he likes to ignore learning in favor of copying and pasting.
In response to Jeff8500
i didnt ignore i was looking in the link you sended me.
In response to Junior197
You mean sent me.

Junior197 wrote:
can some one help me with a transfom code on dbz?
i have no idea how to start or anything.

There is a correct and incorrect way to ask for help on the BYOND forum, and I'm telling you right now no one will ever produce 'a codes' that will work with your game, or let alone even try.

Incorrect:
i wantz coed for dbz transfrom my charcter.

Correct:
I have a Dragonball Z game in the making and stumped on when to call the procedure to transform and I'm not sure how to change the players icon. Could someone lend me assistance on these questions.