The telnet system

..................WTF?! YOU DONT KNOW WHAT IS "XRUMER"?!

Moderator: Quantum P.

Locked
136
What can be said now?
Posts: 0
Joined: Thu Apr 03, 2003 2:10 am

The telnet system

Post by 136 »

Telnet to mi computer and find the game calld Snowboll Game and also the uther game is calld Solter Solitare. I also made Solter Solitare on mi TI-92 calculater, with a slitly difrint rules.

I turnd of the telnet for now, I will turn it back on wen I fix the sorting on the mesige bord.
Last edited by 136 on Tue Dec 23, 2003 6:23 pm, edited 2 times in total.
99
What can be said now?
Posts: 0
Joined: Tue May 20, 2003 1:12 am

Post by 99 »

BACK WHEN I WAS A YOUNG LAD WE DIDN'T HAVE ANY CALCULATORS AND HAD TO DO MATH BY COUNTING GRAINS OF SAND, YOU UNGRATEFUL MAGGOT.
136
What can be said now?
Posts: 0
Joined: Thu Apr 03, 2003 2:10 am

Post by 136 »

Or use abacus insted, but mi topic is not rely about math! I just made it on the calculater becuse is a programable calculater
518
What can be said now?
Posts: 0
Joined: Tue Dec 09, 2003 2:04 am

Post by 518 »

I want that calculator.

Can you program Quake II?
User avatar
Stak
Watching you post
Posts: 373
Joined: Mon Nov 17, 2003 2:38 am

Post by Stak »

DO YOU HAVE ANY GAMES FOR MY ABACUS?
518
What can be said now?
Posts: 0
Joined: Tue Dec 09, 2003 2:04 am

Post by 518 »

Stak wrote:DO YOU HAVE ANY GAMES FOR MY ABACUS?
My ex-girlfriend does =(
97
What can be said now?
Posts: 0
Joined: Tue May 13, 2003 10:00 pm

Post by 97 »

Can you use these games for the TI-83+?

That's all the heat I'm packing for now =(
136
What can be said now?
Posts: 0
Joined: Thu Apr 03, 2003 2:10 am

Post by 136 »

Guy wrote:I want that calculator.

Can you program Quake II?
It is slow, it is black-and-wite, and no sound, and it is not rely ment for games, but ther is a programing langwige bilt in so I desided to make a few games in it.
136
What can be said now?
Posts: 0
Joined: Thu Apr 03, 2003 2:10 am

Post by 136 »

demascota wrote:Can you use these games for the TI-83+?

That's all the heat I'm packing for now =(
I dont hav a TI-83+, but I ges if you no how to program it you can make the same program in TI-83+
136
What can be said now?
Posts: 0
Joined: Thu Apr 03, 2003 2:10 am

Post by 136 »

I will put mi telnet system work agen wen I fix the sort threds on mesige bord. If you no about BYOND then maybe you can help me to fix it. I used ShellSort(l) and procs override Compare(item1,item2) but it not call compared and is not sorted!

Code: Select all

Compare(item1,item2)
 // +1 is item1 before item2
 // -1 is item1 after item2
 // 0 is both same place in list
 if(istype(item1,/obj/thred))
  if(item1:sticky!=item2:sticky)
   return ..(item2:sticky,item1:sticky)
  return ..(item2:time,item1:time)
 if(istype(item1,/obj/mesige))
  return ..(item1:time,item2:time)
 if(istype(item1,/obj/secsen))
  return ..(item1:num,item2:num)
 return ..(item1,item2)



  var/list/l=list()
   var/n=0-mob.p
   var/s=0
   for(var/obj/thred/O in mob.s:contents)
    l+=O
   ShellSort(l)
   for(var/i in 1 to length(l))
    var/obj/thred/O=l[i]
    n+=1
    if(n>mob.terminalrows-6) goto endfor1
    if(n>0)
     if(O.sticky<s) mob << "-----------"
     mob << "[O.num] / [O.title] / [O.owner.loginname] \
      / [length(O.contents)] / [time2text(O.time)]"
    s=O.sticky
   endfor1
   command_prompt="(number/neW/Back/Previus/Next)"
   return 0
Its not sorting it! It makes a list uv the items, but is not sorted items.
136
What can be said now?
Posts: 0
Joined: Thu Apr 03, 2003 2:10 am

Post by 136 »

Now I fix the telnet! The mesige bord is sorting corectly now
518
What can be said now?
Posts: 0
Joined: Tue Dec 09, 2003 2:04 am

Post by 518 »

Is it Basic?
Locked