ID:726620
 
Code:
Load()
if(SaveSlot1)
if(fexists("Saves/[key]/[key]_savefile_1.sav"))
var/savefile/F = new("Saves/[key]/[key]_savefile_1.sav")
Read(F)
for(var/stuff in V)
verbs += stuff
var/itemlist[]=new
var/usable[]=new
var/jutsus[]=new
var/equippable[]=new
for(var/obj/equippable/o in src.contents)equippable+=o
for(var/obj/items/o in src.contents)itemlist+=o
for(var/obj/usable/o in src.contents)usable+=o
for(var/obj/jutsu/o in src.contents)jutsus+=o
F["jutsus"]>>jutsus
F["usable"]>>usable
F["itemlist"]>>itemlist
F["equippable"]>>equippable
F["staffrank"]>>staffrank
F["double exp time"]>>src.exptime
loc=locate(xco,yco,zco)
Afker()
AutoSave()
Save()
CheckGlobalBan()
subexpdown()
timer()
ExpTimer()
StaffIcon()
overlay()
Players:Add(usr)
client.screenobj()//<- Load up the screen objs
world<<"<font size=1><font color=red><B>Info: <font color=white>[src]([key]) Logged In!"

CharacterFinish()
if(!clanselect || !clanselected)
alert("You Need To Pick A Village & Clan Before Proceeding!")
return
if(clanselect&&clanselected)
world<<"<font color=yellow>[src] Of The [clan] Clan Has Login For The First Time!"
VillageSelectSpawn()
client.screenobj()//<-Load Up the screen obj
VillageClanClothes()
subexpdown()
Players:Add(usr)
BornTalent()
Save()
AutoSave()
timer()
Afker()

client/proc
screenobj()
screen+=new/obj/hubicons/skilltree
screen+=new/obj/hubicons/distribute
screen+=new/obj/hubicons/serverupdates
screen+=new/obj/hudMeters/health_01
screen+=new/obj/hudMeters/health_02
usr.updateHealth()
screen+=new/obj/hubMeter2/chakra_01
screen+=new/obj/hubMeter2/chakra_02
usr.updateChakra()

Problem description:
I created a code to load up the certain objects that I want to appear on the users client(Update button, points distribute skill points button, etc). It loads up when they first create there char. But it doesn't reappear when they login with there person. Its only on the screen when you just create the char. I have it set in the Complete() & the LoadSave() so I don't understand why the objects wont reappear. Any solutions?


Unfortunately, one can only make assumptions if you do not provide any code snippets. Try providing the code to Complete() and LoadSave().
Updated with the codes just now