Thread: Can someone
View Single Post
  #13  
Old 09-20-2001, 09:41 AM
nyghtGT nyghtGT is offline
Banned
nyghtGT's Avatar
Join Date: Jun 2001
Posts: 3,993
nyghtGT is on a distinguished road
Send a message via AIM to nyghtGT
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 ...
Reply With Quote