Random Jibber Jabber Thread

tiny roach

Active Member
Remember my hand burn pics from last summer? Here's a secret: The burny part didn't hurt. It really didn't hurt through the whole thing, except when it got bumped.

I do, indeed need a heating blanket.
Wait............we talking celsius here, no way it's ferinhiet, or I'm really worried about you, here.................(nevermind the miss spells, btw.......ok? )
 

lahadaextranjera

Well-Known Member
I went into my friends new weed club the other day and they had RIU up on the screen. I asked what they're doing ? More like "what are you doing on RIU ? They said they were finding out how to make amber glass. I denied having an account !! Lol
 

Bakatare666

Well-Known Member
I went into my friends new weed club the other day and they had RIU up on the screen. I asked what they're doing ? More like "what are you doing on RIU ? They said they were finding out how to make amber glass. I denied having an account !! Lol
How ya been?
Doing well, I hope.
I've seen ya around a couple times, but never while I was on.
 

lahadaextranjera

Well-Known Member
How ya been?
Doing well, I hope.
I've seen ya around a couple times, but never while I was on.
Hey! I'm good thanks. Still busy with the clubs. I've been given a new puppy dog so thats kept me busy. Also very well exercised. Try keeping up with a 10 mth old puppy in your thirties. As for growing, I switched to NFT hydro 9 mths ago and that's going well. Where have you been hiding? :)
 

Bakatare666

Well-Known Member
Hey! I'm good thanks. Still busy with the clubs. I've been given a new puppy dog so thats kept me busy. Also very well exercised. Try keeping up with a 10 mth old puppy in your thirties. As for growing, I switched to NFT hydro 9 mths ago and that's going well. Where have you been hiding? :)
Glad to hear!
Ya, puppies are fun but tiring.
I remember when we got ours from the animal shelter, he was almost a year old, but already trained VERY well.
Somebody had to give him up when they moved, so their loss was our gain!

Oh, I took a couple months off, just needed a break even though I was still growing.
I have 5 plants going right now, thankfully they seem like all will be done at different times..........
IDK what I'd do if I had to trim 5 plants at once!
 

hexthat

Well-Known Member


Making fire red meomon, and adding content so after you beat the islands there will be more islands =]
Anyone have any suggestions?

Pokemon scripts are fun here is a script I wrote for a NPC to sell Master Balls, I have renamed in-game item MASTER BALL to MAGIC BALL and changed the price from 0 to 6000 each prior to writing script.

Code:
#org @START
lock
faceplayer
checkmoney 0x2710 0x0
compare LASTRESULT 0x0
if 0x1 goto @GIVE
msgbox @MSG7
callstd 0x5
compare LASTRESULT 0x0
if 0x1 goto @ASK
special 0x187
compare LASTRESULT 0x2
if 0x1 goto @END
msgbox2 @MSG5
waitmsgbox
pokemart @values
msgbox @MSG6
callstd 0x3
release
end

#org @GIVE
msgbox @MSG8
callstd 0x3
givemoney 0x2710 0x00
updatemoney 0x0 0x0 0x0
return

#org @ASK
msgbox @MSG9
callstd 0x5
compare LASTRESULT 0x0
if 0x1 goto @ASKED
setvar 0x8008 0x0
call @CST0
checkflag 0x248
if 0x1 goto @CST1
msgbox @MSG0
callstd 0x5
compare LASTRESULT 0x0
if 0x1 goto @CST2
call @CST3
compare 0x8004 0x6
if 0x4 goto @CST2
call @CST4
comparevars2 LASTRESULT 0x8009
if 0x5 goto @CST5
call @CST6
msgbox @MSG1
callstd 0x3
setflag 0x248
release
end

#org @ASKED
msgbox @MSG10
callstd 0x4
release
end

#org @CST0
copyvar 0x8004 0x8008
special2 LASTRESULT 0xFC
copyvar 0x8009 LASTRESULT
return

#org @CST1
msgbox @MSG2
callstd 0x3
release
end

#org @CST2
msgbox @MSG4
callstd 0x3
release
end

#org @CST3
special 0x9F
waitstate
lock
faceplayer
copyvar 0x800A 0x8004
return

#org @CST4
copyvar 0x8005 0x800A
special2 LASTRESULT 0xFF
copyvar 0x800B LASTRESULT
return

#org @CST5
bufferpokemon 0x0 0x8009
msgbox @MSG4
callstd 0x3
release
end

#org @CST6
copyvar 0x8004 0x8008
copyvar 0x8005 0x800A
special 0xFD
special 0xFE
waitstate
lock
faceplayer
return

#org @END
release
end

#org @values
#raw word 4
#raw word 1
#raw word D
#raw word E
#raw word 12
#raw word 11
#raw word F
#raw word 55
#raw word 56
#raw word 0

#org @MSG0
= I've always wanted a [buffer1]!\pI'd trade one for my\n[buffer2]?

#org @MSG1
= OMG, thank you!

#org @MSG2
= Do you like my old [buffer2]?

#org @MSG3
= Awww!\nMaybe next time[.]

#org @MSG4
= What?\nThat's no [buffer1]!

#org @MSG5
= I Have Silph Co. secret\nprototype MAGIC BALLS\lfor sell?

#org @MSG6
= You may come back any time!

#org @MSG7
= Are you looking to\nbuy?

#org @MSG8
= You dont seem to have much\nhere take \hB710,000!

#org @MSG9
= Trade?

#org @MSG10
= Leave me alone then!
if talk to person with less then 10k they will give you 10k, person asks you if your here for magic ball if yes takes you to shop, if no it asks if your here for a trade, if yes then takes you to trade1, if no person tells you to leave them alone
 

curious2garden

Well-Known Mod
Staff member
Anyone have any suggestions?

Pokemon scripts are fun here is a script I wrote for a NPC to sell Master Balls, I have renamed in-game item MASTER BALL to MAGIC BALL and changed the price from 0 to 6000 each prior to writing script.

Code:
#org @START
lock
faceplayer
checkmoney 0x2710 0x0
compare LASTRESULT 0x0
if 0x1 goto @GIVE
msgbox @MSG7
callstd 0x5
compare LASTRESULT 0x0
if 0x1 goto @ASK
special 0x187
compare LASTRESULT 0x2
if 0x1 goto @END
msgbox2 @MSG5
waitmsgbox
pokemart @values
msgbox @MSG6
callstd 0x3
release
end

#org @GIVE
msgbox @MSG8
callstd 0x3
givemoney 0x2710 0x00
updatemoney 0x0 0x0 0x0
return

#org @ASK
msgbox @MSG9
callstd 0x5
compare LASTRESULT 0x0
if 0x1 goto @ASKED
setvar 0x8008 0x0
call @CST0
checkflag 0x248
if 0x1 goto @CST1
msgbox @MSG0
callstd 0x5
compare LASTRESULT 0x0
if 0x1 goto @CST2
call @CST3
compare 0x8004 0x6
if 0x4 goto @CST2
call @CST4
comparevars2 LASTRESULT 0x8009
if 0x5 goto @CST5
call @CST6
msgbox @MSG1
callstd 0x3
setflag 0x248
release
end

#org @ASKED
msgbox @MSG10
callstd 0x4
release
end

#org @CST0
copyvar 0x8004 0x8008
special2 LASTRESULT 0xFC
copyvar 0x8009 LASTRESULT
return

#org @CST1
msgbox @MSG2
callstd 0x3
release
end

#org @CST2
msgbox @MSG4
callstd 0x3
release
end

#org @CST3
special 0x9F
waitstate
lock
faceplayer
copyvar 0x800A 0x8004
return

#org @CST4
copyvar 0x8005 0x800A
special2 LASTRESULT 0xFF
copyvar 0x800B LASTRESULT
return

#org @CST5
bufferpokemon 0x0 0x8009
msgbox @MSG4
callstd 0x3
release
end

#org @CST6
copyvar 0x8004 0x8008
copyvar 0x8005 0x800A
special 0xFD
special 0xFE
waitstate
lock
faceplayer
return

#org @END
release
end

#org @values
#raw word 4
#raw word 1
#raw word D
#raw word E
#raw word 12
#raw word 11
#raw word F
#raw word 55
#raw word 56
#raw word 0

#org @MSG0
= I've always wanted a [buffer1]!\pI'd trade one for my\n[buffer2]?

#org @MSG1
= OMG, thank you!

#org @MSG2
= Do you like my old [buffer2]?

#org @MSG3
= Awww!\nMaybe next time[.]

#org @MSG4
= What?\nThat's no [buffer1]!

#org @MSG5
= I Have Silph Co. secret\nprototype MAGIC BALLS\lfor sell?

#org @MSG6
= You may come back any time!

#org @MSG7
= Are you looking to\nbuy?

#org @MSG8
= You dont seem to have much\nhere take \hB710,000!

#org @MSG9
= Trade?

#org @MSG10
= Leave me alone then!
if talk to person with less then 10k they will give you 10k, person asks you if your here for magic ball if yes takes you to shop, if no it asks if your here for a trade, if yes then takes you to trade1, if no person tells you to leave them alone
:shock: yes I remember this kind of code! Quick run, do not stop, until you reach an object oriented frame of mind. ;D
 

gR33nDav3l0l

Well-Known Member
Anyone have any suggestions?

Pokemon scripts are fun here is a script I wrote for a NPC to sell Master Balls, I have renamed in-game item MASTER BALL to MAGIC BALL and changed the price from 0 to 6000 each prior to writing script.

Code:
#org @START
lock
faceplayer
checkmoney 0x2710 0x0
compare LASTRESULT 0x0
if 0x1 goto @GIVE
msgbox @MSG7
callstd 0x5
compare LASTRESULT 0x0
if 0x1 goto @ASK
special 0x187
compare LASTRESULT 0x2
if 0x1 goto @END
msgbox2 @MSG5
waitmsgbox
pokemart @values
msgbox @MSG6
callstd 0x3
release
end

#org @GIVE
msgbox @MSG8
callstd 0x3
givemoney 0x2710 0x00
updatemoney 0x0 0x0 0x0
return

#org @ASK
msgbox @MSG9
callstd 0x5
compare LASTRESULT 0x0
if 0x1 goto @ASKED
setvar 0x8008 0x0
call @CST0
checkflag 0x248
if 0x1 goto @CST1
msgbox @MSG0
callstd 0x5
compare LASTRESULT 0x0
if 0x1 goto @CST2
call @CST3
compare 0x8004 0x6
if 0x4 goto @CST2
call @CST4
comparevars2 LASTRESULT 0x8009
if 0x5 goto @CST5
call @CST6
msgbox @MSG1
callstd 0x3
setflag 0x248
release
end

#org @ASKED
msgbox @MSG10
callstd 0x4
release
end

#org @CST0
copyvar 0x8004 0x8008
special2 LASTRESULT 0xFC
copyvar 0x8009 LASTRESULT
return

#org @CST1
msgbox @MSG2
callstd 0x3
release
end

#org @CST2
msgbox @MSG4
callstd 0x3
release
end

#org @CST3
special 0x9F
waitstate
lock
faceplayer
copyvar 0x800A 0x8004
return

#org @CST4
copyvar 0x8005 0x800A
special2 LASTRESULT 0xFF
copyvar 0x800B LASTRESULT
return

#org @CST5
bufferpokemon 0x0 0x8009
msgbox @MSG4
callstd 0x3
release
end

#org @CST6
copyvar 0x8004 0x8008
copyvar 0x8005 0x800A
special 0xFD
special 0xFE
waitstate
lock
faceplayer
return

#org @END
release
end

#org @values
#raw word 4
#raw word 1
#raw word D
#raw word E
#raw word 12
#raw word 11
#raw word F
#raw word 55
#raw word 56
#raw word 0

#org @MSG0
= I've always wanted a [buffer1]!\pI'd trade one for my\n[buffer2]?

#org @MSG1
= OMG, thank you!

#org @MSG2
= Do you like my old [buffer2]?

#org @MSG3
= Awww!\nMaybe next time[.]

#org @MSG4
= What?\nThat's no [buffer1]!

#org @MSG5
= I Have Silph Co. secret\nprototype MAGIC BALLS\lfor sell?

#org @MSG6
= You may come back any time!

#org @MSG7
= Are you looking to\nbuy?

#org @MSG8
= You dont seem to have much\nhere take \hB710,000!

#org @MSG9
= Trade?

#org @MSG10
= Leave me alone then!
if talk to person with less then 10k they will give you 10k, person asks you if your here for magic ball if yes takes you to shop, if no it asks if your here for a trade, if yes then takes you to trade1, if no person tells you to leave them alone
d00d I know used to fuck around with the missingno bug so it would appear everywhere, added a pokecloner at mom's house, and made up a mode that you couldn't win the league if one of your pokes was damaged XD
 

kinetic

Well-Known Member
It means you're high as fuck and giggling like a boss worthy of a Mr. in front of his name. Do you want my bank routing number or my pay pal account?:bigjoint:
 

giggles26

Well-Known Member
It means you're high as fuck and giggling like a boss worthy of a Mr. in front of his name. Do you want my bank routing number or my pay pal account?:bigjoint:
Pretty damn close lol, you missed one part, I'm always flying high.

Sure how much you wanting? lol
 
Top