ID:146574
 
Problem
mob
icon = 'mob.dmi'
icon_state = "main"
density = 1
Login()
loc = locate(/turf/start)
chakra = 5
src.maxexp = 4000
src.clan = Uchiha
src.mode = New

mob
Stat()
statpanel("[src]'s Information")
stat("--Character Information--")
stat("Country:","[Country]")
stat("Clan:","[clan]")
stat("Level:","[level]")
stat("Exp:","[exp]/[maxexp]")
stat("Ninja Rank:","[rank]")
stat("Yen:","[Yen]")
stat("")
stat("--Statistics--")
stat("Ninjutsu:","[ninjutsu]")
stat("Genjutsu:","[genjutsu]")
stat("Taijutsu:","[Taijutsu]")
stat("Stamina:","[Stamina]")
stat("Chakra","[Chakra]/[maxchakra]")
stat("Chakra Control:","[CControl]%")
statpanel("Inventory")
stat(usr.contents)

My uchiha text does not show up in the panel, how do I fix this

If you are talking about your Uchila icon, just add
stat(src) to the statpanel.
In response to CaptFalcon33035
CaptFalcon33035 wrote:
If you are talking about your Uchila icon, just add
stat(src) to the statpanel.

No, I mean the text uchiha will not show up.
In response to Broly103
Broly103 wrote:
CaptFalcon33035 wrote:
If you are talking about your Uchila icon, just add
stat(src) to the statpanel.

No, I mean the text uchiha will not show up.

"Uchicha" instead of Uchicha

try it like this ^^ or just add the ""
In response to Crzylme
Crzylme wrote:
Broly103 wrote:
CaptFalcon33035 wrote:
If you are talking about your Uchila icon, just add
stat(src) to the statpanel.

No, I mean the text uchiha will not show up.

"Uchicha" instead of Uchicha

try it like this ^^ or just add the ""

What happens if he did:
var
Uchicha="Uchicha"

Or...
Uchicha
parent_type=/clan


And stuff like that. He needs to post more code.
mob
icon = 'mob.dmi'
icon_state = "main"
density = 1
Login()
loc = locate(/turf/start)
chakra = 5
src.maxexp = 4000
src.clan = Uchiha //make it "Uchiha" (use quotes)
src.mode = New

mob
Stat()
statpanel("[src]'s Information")
stat("--Character Information--")
stat("Country:","[Country]")
stat("Clan:","[clan]")
stat("Level:","[level]")
stat("Exp:","[exp]/[maxexp]")
stat("Ninja Rank:","[rank]")
stat("Yen:","[Yen]")
stat("")
stat("--Statistics--")
stat("Ninjutsu:","[ninjutsu]")
stat("Genjutsu:","[genjutsu]")
stat("Taijutsu:","[Taijutsu]")
stat("Stamina:","[Stamina]")
stat("Chakra","[Chakra]/[maxchakra]")
stat("Chakra Control:","[CControl]%")
statpanel("Inventory")
stat(usr.contents) //and it should accutually be src.contents :/