Advertisement
DreamDancer

Untitled

Jun 17th, 2012
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   ModValue = 33
  2.   For MapX = 0 To MapMaxX
  3.     For MapY = 0 To MapMaxY
  4.       MapIndex = MapX * 200 + MapY
  5.       MapMod = MapIndex Mod ModValue
  6.       Rotate = (MapX Mod (ModValue - 1))
  7.       MapMod = MapMod + Rotate
  8.       MapArray(MapX,MapY) = (MapMod Mod 8)
  9.     Next MapY
  10.   Next MapX
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement