ID:264872
 
Code:
mob/proc/Update_Skill()
var/I = 0
for(var/obj/gui/jutsus/O in src.contents)
winset(src, "Skin NSD.info2", "current-cell=1,[++I]")
src << output(O, "Skin NSD.info2")
winset(src,"Skin NSD.info2", "cells=[I]")


Problem description:

Personally, to have a doubt

Next, trying to do here in the skin have 2 statpanel
I want separate tabs
panel1 to stay in one and the other two panel
how do I do? '-'
You could set categories for what you want to go in the panel.

Example:
mob/verb/Teleport()
set category= "Movement"
loc = locate(1,3,1)
<dm>

Setting things into categories places it in a separate panel.
This is a grid?
May you speak in complete sentances and tell us what your problem is, because I cannot figure out what you said, or what you want to happen..
Statpanel 1

mob
Stat()
statpanel("Principal")
stat("--------------------","-------------------------------")
stat("Social")
stat("--------------------","-------------------------------")
stat("Name:","[usr.nome]")
stat("Clan:","[usr.Clan]")
stat("Rank:","[rank]")
stat("Village:","[Vila]")
stat("Ryous:","[dinheiro]$")

Statpanel 2 is a grid

mob/proc/Update_Skill()
var/I = 0
for(var/obj/gui/jutsus/O in src.contents)
winset(src, "Skin NSD.info2", "current-cell=1,[++I]")
src << output(O, "Skin NSD.info2")
winset(src,"Skin NSD.info2", "cells=[I]"


If I make the second grid statpanel how it works normally?
In response to CopyNinja_Hell
I believe this is the way to create a seperate statpanel. (100% sure it won't have any errors! I just learned to make different statpanels myself. If there's any problem, it'll prob be indentations error. Didn't waste time testing it out myself.)

Statpanel 1

mob
Stat()
statpanel("Principal")
stat("--------------------","-------------------------------")
stat("Social")
stat("--------------------","-------------------------------")
stat("Name:","[usr.nome]")
stat("Clan:","[usr.Clan]")
stat("Rank:","[rank]")
stat("Village:","[Vila]")
stat("Ryous:","[dinheiro]$")
statpanel("Statistics")>DM<