
09-20-2001, 09:41 AM
|
|
Banned
|
 |
Join Date: Jun 2001
Posts: 3,993
|
|
ok here ...
|
here is a few little priniciples about scripting ...
if
while
for
use use those to make stuff happen ...
ex.
if (weaponfired) {
commands go here;
}
while (hasweapon(Gravity Boots)) {
commands go here;
}
and so on ....
some NPC's ause a standard graph which has the dimensions 64x64 = one level
so if you make: playerx=32;playery=32; you will be in the center of the level ... |
|
|
|