5 of us tried to change controller to click to move with no succes i dont know if we are so bad or its so hard :D
Printable View
5 of us tried to change controller to click to move with no succes i dont know if we are so bad or its so hard :D
Guys how to play in editor? I got this error System.IO.DirectoryNotFoundException: Could not find a part of the path "E:\Log.txt".
and i dont know what edit to made it works :( im new at this sorry
- - - Updated - - -
Okay got it on my own nvm thank you all for reading that! xD :D
Guys anyone knows if there is ranked system? i know there arebuttons in menu and game mode but if i allow them nothing happens so there are 2 options :
1. Game was published without that ranked script
2. It must have different name in game
Also i found rank icons ingame so i dont know if anyone find something let me know.
PS: Game is working really good i made it click to move and hook it up on google server
Anyone can help put this game online in aws we try a lot without succes
Enviado de meu GT-I8262B usando Tapatalk
Exactly read everything you will find your solution! I made it for pc click to move onlien on server with my own custom patcher (around 500 players) ofcourse with my own stuff :D i used only base from it
Hi all,
Are there people still interesting about this game. If "YES" we want to try to develop a working version. I downloaded a basic default version yesterday.
There are 2 guide files chineese i translated them and there is a guide movie. Installed Unity 4.5.2 1f the client source code runs without errors and follow the guide movie you will start the binairy server and you can play the game from Unity.
Compilation to a new exe file for windows it compile it create it but on starting it giving a error. In the installation pack there is a installer for unity 4.5.5 f1 the orginal version. But no Crack so it ask for the unity registration server and give error. Later i try this version when i can found a crack for it.
If people interested to develop we will create a development environment.
PS: Contact me.
Discord Development Channel: https://discord.gg/DRfyzN
Regards,
Karim
http://forum.ragezone.com/attachment...d=163857&stc=1
can someone help me? :(
Use Unity ver.4.6
If you plan to use the latest version, then you need to rewrite the script to use standard effects from the base asset.
or add:
Assets\Standard assets\Image Effects (Pro Only)\GrayscaleEffect.cs
Code:
Quote:
using UnityEngine;
[ExecuteInEditMode]
[AddComponentMenu("Image Effects/Color Adjustments/Grayscale")]
public class GrayscaleEffect : ImageEffectBase {
public Texture textureRamp;
public float rampOffset;
public float texFactor;
// Called by camera to apply image effect
void OnRenderImage (RenderTexture source, RenderTexture destination) {
material.SetTexture("_RampTex", textureRamp);
material.SetFloat("_RampOffset", rampOffset);
material.SetFloat("_WeightFactor", texFactor);
Graphics.Blit (source, destination, material);
}
}