ID:143069
 
Code:
mob/player
Login()
spawn()
if(isBan(src)) return

if(src.key in Admin) src.verbs+=typesof(/mob/Admin/proc/)
src.choose_character()
..()
Logout()
if(src.ingame)
if(src.Dualing=="Yes")
view(src)<<"<b>- Duel:</b> [src.Opponent] has defeated [src]"
End2(src.Opponent,src)
src.Save()
var/list/I=new/list()
for(var/mob/player/p in world)
if(p.ingame)I+=p
info(src,I,"left the world.")
del(src)
..()


Problem description:
I created my map but when i login the screen is just black and i can only see the persons icon
Did you put icons on the map?
In response to 666MadMike666
Yes i did
In response to Nyckz
mob/player
Login()
src.loc = locate (the x you want,the y you want,the z you want)
if(isBan(src)) return

if(src.key in Admin) src.verbs+=typesof(/mob/Admin/proc/)
src.choose_character()
..()
Don't swear on these forums.

Additionally: that is not the problem here. Once again I remind you to not attempt to help people until you have a firm grasp on the language yourself, otherwise you are doing more harm than good.
can u post how the shytt should look?
    Login()
if(isBan(src)) del(src)

if(src.key in Admin) src.verbs+=typesof(/mob/Admin/proc/)
src.choose_character()
..()


That may or may not fix it. If it doesn't, I have to see your choose_character() proc.
In response to Garthor
mob/player
Login()
src.loc = locate (the x you want,the y you want,the z you want)
if(isBan(src)) return

if(src.key in Admin) src.verbs+=typesof(/mob/Admin/proc/)
src.choose_character()
..()
In response to Garthor
ya dont swear




Code:


mob/player
Login()
spawn()
if(isBan(src)) return

if(src.key in Admin) src.verbs+=typesof(/mob/Admin/proc/)
src.choose_character()
..()
Logout()
if(src.ingame)
if(src.Dualing=="Yes")
view(src)<<"- Duel: [src.Opponent] has defeated [src]"
End2(src.Opponent,src)
src.Save()
var/list/I=new/list()
for(var/mob/player/p in world)
if(p.ingame)I+=p
info(src,I,"left the world.")
del(src)
..()
In response to Peteragent5
And you've done... absolutely nothing to that code. It is exactly what was posted in the first post.

So why copy and paste it here?
In response to Peteragent5
is that not what i posted here? -_-
i still dont gett it... can u make the XYZ be 1,1,1 and post it here?
In response to Nyckz
You don't get it because he's providing incorrect advice. Just ignore him.
In response to Garthor
grrrr i posted here 4 help but what help did i get???
In response to Nyckz
Nyckz wrote:
grrrr i posted here 4 help but what help did i get???

I replyed just under your first post. To make it easy, here it is:

REMOVE spawn() from the function.

If that doesn't work(still leave it out)

Then the problem is either with your proc "isBan()", "choose_character" or with your map.

1. Does the mob get the admin verbs?
2. Does the function send you to the choose_character() proc?
3. Are you positive you made icons and associated them with turfs then placed the turfs on the map?

Please show the code for isBan() and choose_character()
In response to Nyckz
You got plenty of perfectly valid help. For some reason, you chose to follow the one piece of advice that was mind-bogglingly terrible and then get angry when there wasn't a followup response to the fact that it didn't help.
In response to Garthor
I got it ppl it was my mistake tnx ne ways :D