Archiverse Internet Archive
投稿のみ 投稿と返信
前のページ(最近)
1 2 3 4 5 6 7 8 9 10 11 12 1316
次のページ(過去)
返信[5]
親投稿
Darkcon SGMXZYDarkcon354
can you code me a SB PRO CAM for the players characters, while there in a battle so they can review there last battle footage on where they went wrong!
0そうだね
プレイ済み
返信[26]
親投稿
Darkcon SGMXZYDarkcon354
that teach me for not proof reading before posting.
0そうだね
プレイ済み
返信[25]
親投稿
Darkcon SGMXZYDarkcon354
hum, thought I typed, that comes first not take come first, oh the typo's I do on this device bug me. need a pc keyboard.
0そうだね
プレイ済み
返信[24]
親投稿
Darkcon SGMXZYDarkcon354
right now writing a test module for doors a other little tricks I did in my game so you can learn from it and it will be heavy commented. I should have it done by august 1 I hope, I'm doing it on my hobbie time because I do got a family and job take comes first!
1そうだね
プレイ済み
返信[23]
親投稿
Darkcon SGMXZYDarkcon354
your right haven't got to it yet. first you need to understand the chart I made over 2 and half years ago to show doors and art overlay sprites ect. now to lock,unlock doors to go through you will need to make a variable for both locked and unlocked doors me I used ULD[1] for a true or false. updated the map for more options at @map1, rewrote nmap detection.
0そうだね
プレイ済み
返信[4]
親投稿
Darkcon SGMXZYDarkcon354
carma got me L! lesson learned...
1そうだね
プレイ済み
返信[3]
親投稿
Darkcon SGMXZYDarkcon354
sorry, L couldn't resist...
0そうだね
プレイ済み
返信[21]
親投稿
Darkcon SGMXZYDarkcon354
here's updated NMAP[DIAGRAM,CHART ] for Game2rpg NMAP[0,1] is always players block...
0そうだね
プレイ済み
返信[20]
親投稿
Darkcon SGMXZYDarkcon354
correcting I would do this IF ID<=3 THEN SPSET I,256,80,16,16,1 'TREASURE had typo the correct way is IF ID>=3 THEN SPSET I,256,80,16,16,1
0そうだね
プレイ済み
返信[19]
親投稿
Darkcon SGMXZYDarkcon354
and yes this tutorial will cover going back and forth through a door and locking,unlocking, and keeping that door unlock. lol so stay tune, plz!
1そうだね
プレイ済み
返信[10]
親投稿
Darkcon SGMXZYDarkcon354
it answer alot of your questions like with spset, hint, hint. i made tutorial for you and others it not compete yet so plz don't delete it a lot work went to it.
0そうだね
プレイ済み
返信[18]
親投稿
Darkcon SGMXZYDarkcon354
and write down location so you can add it to spset. lesson one not complete but it should help for right now. and i'm out of posts for day.
0そうだね
プレイ済み
返信[17]
親投稿
Darkcon SGMXZYDarkcon354
here I said you can do it manually I would do this. IF ID<=3 THEN SPSET I,256,80,16,16,1 'TRESURE what I said is I equals 1 or 2 for sprite control number,i want treasure sprite located on spritesheet at 256,80, 16 height,16 width,show sprite true. you can get location to sprite you want to add by using smile tool's paint just set mode to 16 move red box aline top left corner to the sprite.
0そうだね
プレイ済み
返信[16]
親投稿
Darkcon SGMXZYDarkcon354
here it saying NMAP told ID that @map1 said 3 or higher to 9 is near so show sprite from @SPDATA, to show treasure chest. Note here you can do it manually too, by not reading from @SPDATA.
0そうだね
プレイ済み
返信[9]
親投稿
Darkcon SGMXZYDarkcon354
taking a break from my game to recap and teach you what I learned from making my game from game2rpg
0そうだね
プレイ済み
返信[8]
親投稿
Darkcon SGMXZYDarkcon354
i'll be getting to that when I get to SPDATA for sprites
0そうだね
プレイ済み
返信[15]
親投稿
Darkcon SGMXZYDarkcon354
next you see IF ID==0 THEN CONTINUE. What it saying is if it null or 0 for another words to continue on don't show anything because nothing is near player point of view. next is IF ID==1 THEN BREAK 'WALL it saying stop for loop return to what it was doing before for loop was started because a wall is there. next your see IF ID>=3 THEN SPSET I,0 'TREASURE
0そうだね
プレイ済み
返信[14]
親投稿
Darkcon SGMXZYDarkcon354
next you will see ID=NMAP(I,1) it saying ID will equal value of NMAP[1,1] or NMAP[2,1] oh a remember NMAP[x,x] is a variable. and I'm aware I typed NMAP(x,x) before just now it is correct for PTC but SB it NMAP[x,x].
0そうだね
プレイ済み
返信[13]
親投稿
Darkcon SGMXZYDarkcon354
this is the original code to game2rpg in image. I add comment for you to key points to understand. now if you looked at it, you will see a label called @DRAWITEM SPCLR 1 & 2 it to clear sprite 1&2 only. what it ready saying clear sprite control manage number 1 & sprite control manage number 2 next you got a for loop FOR I=1 TO 2 So I will be 1 then it will be 2 when it read.
0そうだね
プレイ済み
返信[12]
親投稿
Darkcon SGMXZYDarkcon354
anyway back to lesson 1 NMAP(x,x) basic's to game2rpg
0そうだね
プレイ済み