Jump to content
主视角中国

S-22

网站管理
  • 帖子总数

    11,783
  • 注册时间

  • 上次访问

由 S-22 发布的全部内容

  1. Will that SKL plugin work in gMax?
  2. The plugin is for 3d Max. It is included with the latest SDK. With LR3d there is no need for skl, you simply export to skd and skc.
  3. OK, but what is that .SKL and how to make them??? I can't find such a plugin neither in MS3D nor in LR3D...
  4. A small reminder when exporting the SKL from 3D max! This is for people who run their computer with Regional and Language Options that when it comes to number uses , instead of .. An exampel is the Nordic countries and I know a few other European countries. Numbers with UK/US settings are displayed like this 1,000,000.00 and 0.055995 but with other regional options it migth be displayed 1.000.000,00 / 1 000 000,00 and 0,055995. As you can see there is a different use of the , and .. Because of this the exported SKL file might get numbers like this 0,0005650 0,005497 0,479988 instead of 0.0005650 0.005497 0.479988. This means you will recive an error message when you try and run the SKL_2_SKX.EXE. The easiest way to avoid this is to temporary change the Regional setting to UK/US setting before starting 3D max. When you export the SKL file it will be correct. Any error messages after that is because of some other error. Just make sure you have checked this first in case you are uncertain that your country have the same number system as the UK/US one.
  5. You can make a bat file or something to run it but else do it like this. First! Make sure the SKL file is saved in the same directory as the skl_2_skx.exe file Start the "command promt", the one that gives you a dos window. Change drive and dir until you are in the folder where the SKL and skl_2_skx are located. To change drive in dos promt type c:" (or d: or whatever). To change dir type cd Program Files\EA GAMES\MOHAA\SDK\tools (if that's the dir you want) To create you SKD file type (mysklfile = your skl file name and without the extension skl) skl_2_skx mysklfile -baseframe To create your SKC skl_2_skx mysklfile If you add the option -mohaa then you will get a model usable in mohaa (or else it will only be spearhead). Example for the SKD skl_2_skx mysklfile -baseframe -mohaa Now you have the basic, the rest of the options for this can be read about in the first post.
  6. ok i have done what it said at the top with all comands and skl_2_skx.exe full path and its not workin it might just be me bein a n00b but could someone show me how it should look (what i type in run) if i'm making it for moh allied assault here is the path of skl_2_skx.exe c:\Program Files\EA GAMES\MOHAA\SDK\tools/skl_2_skX.exe this is ehat i have put in run c:\Program Files\EA GAMES\MOHAA\SDK\tools/skl_2_skX.exe colt45.SKL -baseframe -mohaa and when i press ok it says "windows canot find c:\ program files..........." can somone please corect it thanx
  7. I just used the -mohaa option to get my new weapons in AA.
  8. well there is one that i get that gives me an error about zero vector error and wut was happening was that the skl_2_skx.exe could not convert a 0 to a one so i had to move my model to a diff. part on the axis.
  9. S-22

    资料备查

    This is information are from Promitheas over at the Lightray 3D forum. skl_2_skX.exe is part of ea's Spearhead SDK recently released. -------------------------------------------------------------------------------- Simple Examples: Go to Windows Start/Run. Type the fullpath of skl_2skx.exe, SKL filename, commands and press OK. Spearhead ------------------- c:/tools/skl_2_skX.exe myfile -baseframe ---> creates a SKD file. -- c:/tools/skl_2_skX.exe myfile --->creates a SKC file Mohaa --------- Just add -mohaa command c:/tools/skl_2_skX.exe myfile -baseframe -mohaa ---> creates a SKD file. -- c:/tools/skl_2_skX.exe myfile -mohaa --->creates a SKC file *replace 'c:/tools/' with the path you have skl_2_skX.exe installed. *replace myfile with your *.SKL filename(or fullpath). Overview ------------------ skl_2_skX is a command line utility for converting. SKL files into a form usable by the Tiki model system. *.SKL files are text-based model files. Having the functionality of skl_2_skX as a separate program from the exporter allows changes in model format without requiring the artists to re-export their models. skl_2_skX will check the file times of the source and destination file and only rebuild them if they differ. This reduces runtime when running skl_2_skX from a batch file that converts a lot of animations when only a few have changed. File formats Being text-based allows .SKL files to be viewed or edited in a text editor, making diagnosing problems in models more convenient. skl_2_skX exports two types of files: *.SKC and *.SKD. SKD files contain the definitions of the bone heirarchy, vertex weights, surfaces, triangles, and level of detail (LOD). SKC files contain only the bone animation info. SKD Files -------------------- SKD files are created from the model’s baseframe. Each model only needs one SKD file. The baseframe is the .SKL file that has the model posed in such a way as to create the best LOD information possible. The order that triangles are removed as the model is lowered in detail is based upon the length of the edges and the orientation of neighboring triangles. Triangles with very short edges or whose orientation differs the least from triangles that share the same edge are chosen first. Edges that are seams (either the triangle has a different texture from its neighbor, or doesn’t have a neighbor) can not be removed, and so limit how low detail the model can go. In order to create the best LOD information, models should be posed such that important joints are bent so that triangles at those joints reduce detail last. For example, if a model’s arms are kept straight in the baseframe, then when the model reduces in detail the upper arm and forearm will appear to have webbing between them, like a bat. Bending the arms in the baseframe will help skl_2_skX choose more appropriate triangles when lowering detail. Since the SKD file also contains the definition of the bone heirarchy, if the order of the bones are changed, or the bones are renamed, then the SKD file should be recreated to reflect the changes. Also, while changing the bone names is harmless, if the bone order changes in the SKD file, you should rebuild the SKC files to make sure the bone order is the same in them. The names and triangles contained in each surface are stored in the SKD file. When surface names or IDs change in the SKL file, you should rerun skl_2_skX to recreate the baseframe to reflect the change. SKC Files ------------------------ SKC files contain only animation information. You should have at least one SKC for each animation in the model. SKCs contain bone animation information and movement deltas for each frame. Movement deltas are created by measuring the movement of the specified origin bone. By default, the bone named “origin” is expected, but you can use the –origin parameter to specify a different bone. No matter where the origin bone is in any frame of the original animation, it will be moved to (0, 0, 0) in the model’s coordinate space, with all other bones still in the same relative position around it. When the model is animated in the game, it will simply sit in place if the game physics doesn’t apply the movement deltas to the position. Using this method we are able to remove any sliding of the character’s feet on the ground. Command line options: ------------------------------------------- skl_2_skX animname [-force] [-scale num] [-dest name] [-ignore filename] [-origin originname] [-reverse] [-verbose] [-nolod] [-noclampz] [-zeroz] [-noorigin] [-clearz] [-clearxy] [-baseframe] [-maxbones num] [-weightthreshold num] [-offset x y z] [-clearx] [-cleary] [-loop] [-zerox] [-zeroy] [-destdir dirname] [-dest filename] [-ignoreflags] [-fps num] [-newbaseframe] [-morphbase filename] [-morphanim filename] [-nologfile] [-attachedModel] [-doRotation] [-animtype ] [-speedscale scale] [-mohaa] animname This is the name of a SKL file. (only type "myfile", not "myfile.skl") -force Causes skl_2_skX to re-process the animation regardless of what the time and date of the destination file is. -scale num Specify a scale to be used when converting the file. The default scale is 1. -dest filename Specify an alternate destination name for the SKC for SKD file. Normally the destination file shares the same name as the animname but with a SKC or SKD extension. Note that the directory remains the same. -ignore filename Specify an external file which contains a list of surfaces to ignore when grabbing this model. This is used extensively when grabbing a multi-part model. -origin originname Specify an alternate surface name for the origin. Normally, the origin surface is simply called “origin”, this allows one to choose an alternate surface name for the origin. This is used extensively when grabbing a multi-part model. -reverse Reverse the order of frames of the animation. -verbose Output a lot of information while processing the model. -nolod Do not create an LOD mapping for this model. -noclampz By default, the Z component of the origin bone is clamped to only positive and zero values. If you would like to allow negative Z values, use this option. -zeroz Always set the Z component of the origin bone to zero. -noorigin Don’t subtract the origin’s position from the model’s position. No movement deltas are produced. -clearz Specifies that Z movement is cleared out on deltas. -clearxy Specifies that X and Y movement is cleared out on deltas. -baseframe Save the model as SKD. The SKD file contains the bone definitions, the surfaces, texture coordinates, triangles, and the LOD mapping. -maxbones num Limit the number of bones that can affect a vertex to num per vertex. The num most influential bones will be used. The default (and maximum) is 8. -weightthreshold weight Limit the minimum influence a bone must have to be included in a vertex. Any with less influence will not affect the vertex. The default value is 0.01. -offset x y z Offsets the model by the specified amount. This is useful for when animations are animated at different heights or using different origin tags. -clearx Specifies that X movement is cleared out on deltas. -cleary Specifies that Y movement is cleared out on deltas. -loop Drops the last frame of the animation. This allows skl_2_skX to properly calculate deltas on looped animations. The last frame in the animation should be the pose as the first frame. -destdir dirname Specify an alternate destination directory for the SKC for SKD file. Normally the destination directory is the current working directory. -ignoreflags Normally, when a bone’s parent is unused and no bone with the same leg/torso designation exists higher up the hierarchy, the parent is kept, despite the fact that it doesn’t affect any vertices. Ignoreflags instructs skl_2_skX to not perform this check. Typically, this would be used when it isn’t feasible to use the –bones command because the hierarchies differ. -nologfile No log files(slg) will be created. -fps num Sets frames per second. -newbaseframe Skeletor baseframe export. -morphbase filename -morphanim filename -attachedModel -doRotation -animtype Default is fullbody. -speedscale scale Speedscale is an untested system. Frames per second will be multiplied by scale. -mohaa Use this command to export MOH:AA SKD,SKC files. Else MOH:AA Spearhead files will be created.
  10. 说明: 在 Windows 98/ME/NT/2000/XP 下使用 - 游戏脚本修正 - 按 T 键显示子弹时间 - 按 V 键修正电梯错误 - 禁用了自动保存功能 - 启用作弊开关并解锁所有关卡 - 修正了 A.I. 禁用的错误 - 修正了声音叠加的错误 - 强制控制台开关 ( Shift + ~ ) - 增强了图形和游戏性能脚本的执行效率 - 调整了游戏语言 - 可通过启动向导开始游戏 - 设置了游戏数据传输 本地下载链接:
  11. 已经加了
  12. 微软出的 Mdeia Player 9 系列的 半条命II 皮肤补丁,3.23MB。 点击下载
  13. 微软出的 Mdeia Player 9 系列的 半条命II 皮肤补丁,效果不错,3.23MB。 点击下载
  14. 给我一个 88x31 的logo
  15. S-22

    S-22请进

    是指图片还是脚本? 图片在 textures/hud 里;脚本在 scripts 里。
  16. HL2 的 SDK 也要 Steam 认证吗?我还没开始研究HL2。
  17. 欢迎FPS游戏相关网站与本站交换链接! 请提供 88x31 像素的 gif 格式 LOGO 图片及链接。 本站LOGO:
  18. 本站地图之《泳池敢死队》完成过半,未来将会对跳台做细化处理并建造周边建筑。 详细情况请 点击查看 。
  19. MOHPA 的地图开发包很不错,至少教程都写得很清楚,严重推荐希望用MOHPA引擎制作MOD或者游戏的朋友参考。
  20. 不错不错
  21. 将truck.scr独立放置,如果有多个地图需要引用同一个 truck.scr 的话,整体上地图载入时间就快一些;如果truck.scr只被一个地图引用,那么独立放置与整合到地图.scr里是一样的。
  22. 论坛已经可以上传文件了
  23. 已改好。不过这个地址不是你的论坛啊!
  24. 跳下去了,腿有些发软。 抬头看。 Nov.02 20:15 -> 完成度 48% 。测量水中能憋气的最大高度,确保玩家脑袋出水后就不再有缺氧伤害。 Nov.03 23:40 -> 完成度 49% 。泳池边增加了一些阳伞,放了一位MM AI陪衬。 Nov.06 03:10 -> 完成度 50% 。修正好缺氧伤害的深度,截图是因为缺氧在损失生命值。
  25. 好吧, 我就在外部论坛建立.
×
×
  • 创建新的...