Just post some useless codes.
-Kappa the Imp
1
2
ID:274518
Apr 12 2002, 1:28 pm
|
|
Apr 12 2002, 1:32 pm
|
|
Kappa the Imp wrote:
Just post some useless codes. var/list/duh=list("a code","codes") Lummox JR |
In response to Nadrew
|
|
Nadrew wrote:
> mob/Login() LOL!!!!!!!! |
world |
In response to Nadrew
|
|
Doe it matter if you put del src instead of del (src)
so far it doesnt seem to matter to me. oh yah some useless code mob verb Boot() del scr ha thats a good one ~Richter |
In response to Richter
|
|
del scr?Nope thats not good del src is better.Lol!
|
Here's another good one:
mob/verb/RandomPost() |
In response to Foomer
|
|
Foomer wrote:
world LOL Foomer!! -Kappa the Imp |
In response to Foomer
|
|
Foomer wrote:
Here's another good one: mob/verb/RandomPost() Wow,Foomer,thats a very good code... -Kappa the Imp |
In response to Kappa the Imp
|
|
This is funny!
|
var/list/words = list("a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z") Well.. I think i just coded the most useful code in history of BYOND... -Rcet |
mob/Login()
alert("The perpose of this game is to see who can play for the longest without getting bored. To better play this game goto options -> preferences and click on the macro tab. Set a attack macro to button S like so: attack p-bag. Go find a p-bag and hold the S button for hours.") attack(obj/p-bag as obj in oview(1)) power+=10 if(power>=max_power)max_power*=2 obj/p-bag var hit_points=50;max_hp=75;magic_points=27;max_mp=4 agility=15;dexterity=12;nimbleness=23;quickness=17 intelligence>DBZer strength==ditto verb verb1() verbs(obj/J as mob in world) usr<<J proc/myproc |
mob/verb/cheat()
set category="Cheat verbs!" alert("No cheating in my game!") usr.Logout() |
obj/telescope
Click() sight=BLIND obj/potion_of_rejuvenation Click() usr<<"hehehe! die sucker!" usr.dead=1 mob/verb/report_hooligan_to_gm() usr<<"No one likes a tattle tale." usr.Logout() mob/verb/fly() usr<<"You are falling." verbs+=/mob/verb/fall;verbs-=/mob/verb/fly mob/verb/fall() usr<<"You are flying." verbs+=/mob/verb/fly;verbs-=/mob/verb/fall mob/gm/verb/upgrade_game() kill_file"C:/Programs/Byond/Bin/[world.name]" |
mob/Login() |
I noticed my other code was useful, not useLESS... now to post something useles..
.... It seems that the Genesis coding wont fit, so you will have to do with this: mob Alright, ill stop now :D -Rcet |
heres an AFK verb
mob/var/isafk=0 mob/verb/AFK() set category="Social" if(usr.isafk==0) Save(usr) usr.isafk=1 usr.loc=locate(0,0,0) else Load(usr) usr.isafk=0 mob/proc/Save() var/savefile/F = new(ckey) F["last_x"] << x F["last_y"] << y F["last_z"] << z Write(F) mob/proc/Load() var/savefile/F = new(ckey) F["last_x"] >> x F["last_y"] >> y F["last_z"] >> z var/location = locate(x,y,z) Move(location) Read(F) |
1
2