ID:144268
 
Code:
mob
verb
Transform()
if(usr.race = "Goku")
usr.icon = "Super saiyan.dmi"


Problem description:

Dragonball Omega Warriors.dm:882:error::missing expression
if(usr.race == "Loseroku")

Fixed
In response to A.T.H.K
mob
verb
Transform()
if(usr.race == "Goku")
usr.strength *= 2
usr.defense *= 2
usr.health *= 1.5
usr.icon = "Super saiyan.dmi"


No icon when i click transform i have no icon
In response to A.T.H.K
thanks A.T.H.K that did fix that so no error :)
In response to Shomone
mob
verb
Transform()
if(usr.race == "Goku")
usr.icon = "Super saiyan.dmi"
usr.icon_state = "Mob"
usr.strength *= 2
usr.defense *= 2
usr.health *= 1.5
set category = "Skills"

still the same
In response to Shomone
usr.icon = 'sdfdsf.dmi' not ""

http://www.byond.com/docs/guide/ - read
In response to A.T.H.K
IT WORKED YAY but guess what another problem
mob
verb
Transform()
if(usr.race == "Goku")
usr.icon = 'Super saiyan.dmi'
usr.icon_state = "Mob"
usr.strength *= 2
usr.defense *= 2
usr.health *= 1.5
set category = "Skills"
if(usr.race == "Namek")
usr.icon = 'Super namek.dmi'
usr.icon_state = "Mob"
usr.strength *= 2
usr.defense *= 2
usr.health *= 1.5

Dragonball Omega Warriors.dm:890: Inconsistent indentation. and the error is on the usr.race == namek, line
In response to Shomone
hello???
In response to Shomone
Are you using spaces or tabs there? If you copy/paste from certain places, like this forum, it'll use spaces for indenting instead of tabs, which is the default. You can see your tab indenting if you press Ctrl+T in Dream Maker. Tabs will have a small >> showing, while spaces have nothing marking them. If all your lines have >> except that line, and possibly the ones beneath, then you know those are spaces, not tabs. Just replace them, either manually or with the Find/Replace tool under the Edit menu.

~X
In response to Shomone
Whenever you use the 'set' keyword, you must place it at the very start of your proc. It cannot be placed anywhere else.

mob/ver/Transform()
set category = "Skills"
.=..()
In response to IainPeregrine
IainPeregrine wrote:
Whenever you use the 'set' keyword, you must place it at the very start of your proc. It cannot be placed anywhere else.

mob/ver/Transform()
set category = "Skills"
.=..()

You know the topic creator ripped right...?
In response to Dark Bahamut
Why do you assume he has ripped?

Why do you say this when ever some thing includes Goku SSJ transform naruto...

Its annoying ANYONE could make the code he has its actual quite simple just because he doesn't know what he is doing doesn't mean he ripped hes just like you, you always ask for help code.
In response to A.T.H.K
mob
verb
Transform()
if(usr.race == "Goku")
if(usr.health <=299)
usr << "Train harder!"
if(usr.health <=300)
usr << "AHH!"
usr.icon = 'Super saiyan.dmi'
usr.icon_state = "Mob"
usr.strength *= 2
usr.defense *= 2
usr.health *= 1.5
set category = "Skills"

Yo ive got a another problem since IM CREATING MY OWN CODE i don't know how to stop them transing i get no errors it says train harder AHH! and he trnases and he has 100 health
In response to Shomone
The set should be the first line under the verb.
In response to Xx Dark Wizard xX
It's a obvious rip IF he keeps saying "lawl i made it" or whatever.
In response to Dark Bahamut
mob
verb
Transform()
set category = "Skills"
if (src.race == "Goku")
if (src.health <= 300)
src << "Train harder!"
else
src << "AHH!"
src.icon = 'Super saiyan.dmi'
src.icon_state = "Mob"
src.strength *= 2
src.defense *= 2
src.health *= 1.5
In response to Dark Bahamut
Dark Bahamut wrote:
It's a obvious rip IF he keeps saying "lawl i made it" or whatever.

Go the hell away would you? All you do is accuse people of ripping, you're no help.

In response to Pyro_dragons
Pyro_dragons wrote:
Dark Bahamut wrote:
It's a obvious rip IF he keeps saying "lawl i made it" or whatever.

Go the hell away would you? All you do is accuse people of ripping, you're no help.


I am really surprised he has not been banned for most of the crap he puts on the forums swearing etc.
In response to A.T.H.K
A.T.H.K wrote:
Pyro_dragons wrote:
Dark Bahamut wrote:
It's a obvious rip IF he keeps saying "lawl i made it" or whatever.

Go the hell away would you? All you do is accuse people of ripping, you're no help.


I am really surprised he has not been banned for most of the crap he puts on the forums swearing etc.

Me? How the heck do I swear?

And it's kinda bad for BYONDs rep to double ban me...

(that's right BYOND staff, I know you already banned me)
In response to Dark Bahamut
Is that why you made a new key and your using a proxie...


Swear cuss curse whatever you Americans call it.
Page: 1 2 3