Jump to content
A 2021 backup has been restored. Forums are closed and work in progress. Join our Discord server for more updates! ×
SoaH City Message Board

Van - Zonar's alt account, illegal, banned.

Members
  • Posts

    26
  • Joined

  • Last visited

Van - Zonar's alt account, illegal, banned.'s Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Why are you guys all being mean to Zonar? As I'm looking around this forum, All I see is all of you guys calling him names, and mistreating him, and must I got on I mean come on. I have not seen Zonar do that to you guys. Whats the big deal around here? I could have sworn I've seen this one topic and Zonar sayed that he treats everyone with respect. Sorry to be off topic. @ Zonar: Zonar don't worry about all the slow people. If they are too retarded to understand, just let them be retarded. Don't waste you time trying to help them understand.
  2. It does the samething for me too. So there is still something wrong. Here is my modified code: objGrindingGround.mask_index = sprCollisionMaskTransparent; if ((ground == false && y_speed >=0 && action == action_jumping && key_melee_pressed) || (ground == true && action == action_grinding)) objGrindingGround.mask_index = InitialCollisionMask; Start Grinding if (y_speed >= false && player_collision_bottom(angle, 1, objGrindingGround) == true) { action = action_grinding; x_speed += 3; } Stop Grinding if ((ground == false) || (player_collision_bottom(angle, 1, objGrindingGround) == false)) { action = action_normal; }[/CODE]
  3. Well since I'm using an older version of his engine I thought that would be it. Does anyone have any suggestions? I want to get this problem over with.
  4. That game is no joke. The game is highly impressive. I like how Shadow was included and had that double jump. I have to find out more info on this game.
  5. I did'nt see this movie yet. And I don't think I want too either. This movie has wide popularity though.
  6. @ Damizean: This is my attempt to convert your scripts for the xmas pack to one of your older engines and here is was: objGrindingGround.mask_index = sprCollisionMaskTransparent; if ((ground == false && y_speed >=0 && action == action_jumping && key_melee) || (ground == true && action == action_grinding)) objGrindingGround.mask_index = InitialCollisionMask; //Start Grinding if (y_speed >= false && player_collision_bottom(angle, 1, objGrindingGround) == true) { action = action_grinding; x_speed += 3; } //Stop Grinding if ((ground == false) || (player_collision_bottom(angle, 1, objGrindingGround) == false)) { action = action_normal; } [/CODE] But somethings wrong, when sonic jumps he does'nt turn into a ball/action_jumping instead he jumps with the animation action_normal which is wierd. Is there something wrong with my script? EDIT: This is what I did for [b]objGrindingGround[/b] too: [CODE]InitialCollisionMask = mask_index;[/CODE] with the parent of [b]objSolid[/b] since your older engine does'nt use [b]objParentTerrain[/b]
  7. Sorry to bump but can anyone help me please? It's almost a whole entire day and no help.
  8. I started something like this for grinding which was a script based off of the objPlatform script.
  9. thanks...Any help guys? I really need to resolve this problem. Also Kain I gave you the link to Damizean's 360 engine which is the one I'm using.
×
×
  • Create New...