Skip to content
View in the app

A better way to browse. Learn more.

主视角中国

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

S-22

网站管理
  • 注册时间

  • 上次访问

由 S-22 发表的全部内容

  1. S-22 回复 S-22 的 主题 于 硝烟里的年华
    I'd appreciate it. Better yet, if you could take a look at the thread "For people who wanted a drivable vehicle/usable flak88", and take a look at the drivable vehicles script, and explain to me how to use it, that would be even better. I can spawn a jeep, I just cant make it use the script, and have no clue what to do.
  2. S-22 回复 S-22 的 主题 于 硝烟里的年华
    AHAHAHAHAHAHAHAAHHAH!!!! Just kidding mate If You Want A Dual control jeep that u can drive and gun then first off u dont use ANY nodes. Also; Im not seeing any threads that mount the gunner or driver onto the vehicle. I will try to re-write parts of this script for you later today m8(i gotta go to school in a few minutes) If i forget then PM me.
  3. S-22 回复 S-22 的 主题 于 硝烟里的年华
    Could someone try to explain the process of making a drivable jeep in detail? Memphis..you said you got it to work.could you tell me what you did? I really want to get a drivable jeep, but cant get it to work. I have a spanwed jeep with a gun on the back. I cannot use the gun or get into the jeep. It won't move unless I hit use while touching the front of it...then it proceeds to run me over and kill me, then drive into a wall eventually. If I touch the jeep after that..(the front) it kills me. I am a complete newb at this, so any help would be greatly appreciated. I probably did soemthing wrong or put soemthing out of order or what not. My code is from bdodger and deadeye arrow..as it seemed to me they both added code to be used as one script. // call additional stuff for playing this map round based is needed if(level.roundbased) thread roundbasedthread // call additional stuff for playing this map round based is needed if(level.roundbased) thread roundbasedthread level waitTill prespawn //*** Precache Dm Stuff exec global/DMprecache.scr level.script = maps/dm/stalingrad_beta.scr level waittill spawn pain: $hurtme volumedamage 25 thread bigaagun thread location level.jeepspeed = 350 level.triggercount = 0 level.nodenum = 0 thread jeep end bigaagun: spawn statweapons/P_aagun_base.tik "targetname" "aa1" "classname" "turretweapon_player_aagun" $aa1.origin = ( 47 150 -114) $aa1.angles = (0 142 0) //init aagun params spawn statweapons/P_aagun_cannon.tik "targetname" "aa1g" "classname" "ProjectileGenerator_gun" $aa1g.origin = ( 47 150 -80 ) $aa1g.angles = (0 142 0) $aa1g.accuracy = 10 $aa1g.bulletlarge = 3 $aa1g.cycles = 0 $aa1g.maxdelay = 4 $aa1g.maxduration = 4 $aa1g.maxnumshots = 40 $aa1g.mindelay = 3 $aa1g.minduration = 4 $aa1g.minnumshots = 40 $aa1g.spawnflags = 128 $aa1g.tracerspeed = 0.5 $aa1g.testanim = idle $aa1g_turret0 maxyawoffset 180 $aa1g_turret0 turnspeed 50 $aa1g_turret0 pitchspeed 50 $aa1g_turret0 pitchcaps "-50 50 -50" // changed "-50 10 0" $aa1g_turret0 viewjitter 1 $aa1g_turret0 firedelay 0.00 $aa1g immune aagun $aa1g_turret0 setaimtarget $aagun1_aim $aa1g nodamage $aa1 nodamage end location: println $player[1].origin println $player[1].angles wait 5 goto location end jeep: spawn script_origin "targetname" "jnode1" $jnode1.origin = (146 1110 -288) $jnode1.target = NULL spawn script_origin "targetname" "jnode2" $jnode2.origin = (148 1110 -288) $jnode2.target = NULL spawn vehicles/jeep.tik "targetname" "jeep1" "origin" "-646 -1834 -105" "angles" "0 88 0" $jeep1 nodamage thread spawnjeeptrigger wait 1 $jeep1 thread setup_jeep thread onjeepgun end //////////////////////////////////////// setup_jeep: self immune grenade self immune bullet self immune fast_bullet self immune explosion self immune rocket self removeimmune grenade self removeimmune bullet self removeimmune fast_bullet self removeimmune explosion self removeimmune rocket self vehiclespeed level.jeepspeed self.jeepinuse = 0 self.jeepmginuse = 0 self.destroyed = 0 self.health = 700 self.startorigin = self.origin self.startangles = self.angles end //////////////////////////////////////// onjeepgun: $jeep1_trigger[level.triggercount] waittill trigger $jeep1 thread players_jeep_mg end //////////////////////////////////////// players_jeep_mg: local.player = parm.other self rendereffects "-shadow" self.jeepmginuse = 1 self removeondeath 1 level.gunnerstillon = 1 self thread checkongunner level.direction = 0 while (isAlive local.player) { if (level.direction == 0) { level.nodenum = level.nodenum + 1 } else level.nodenum = level.nodenum - 1 if (level.nodenum == 31) { level.nodenum = 30 level.direction = 1 } if (level.nodenum == 0) { level.nodenum = 1 level.direction = 0 } self drive ("jnode" + level.nodenum) self waittill drive self stop if (local.player.useheld == 1) { local.vect = angles_toleft (local.player.angles) local.dist = -100 local.vect[0] = local.vect[0] * (local.dist) local.vect[1] = local.vect[1] * (local.dist) local.vect[2] = local.vect[2] * (local.dist) local.spot = local.vect + local.player.origin local.vturretent unlock local.vturretent detachturretslot 0 local.spot local.vturretent remove local.vturretnew = "vehicles/jeep_30cal.tik" local.vturretent spawnturret 0 local.vturretnew local.vturretent lock level.gunnerstillon = 0 self.jeepmginuse = 0 local.player.jeepmg = 0 break } } end skipjeeploop: thread spawnjeeptrigger wait 1 thread onjeepgun end //////////////////////////////////////// checkongunner: local.player = parm.other checkgunneragain: if (isAlive local.player) { wait .2 goto checkgunneragain } else level.gunnerstillon = 0 end //////////////////////////////////////// spawnjeeptrigger: level.triggercount = level.triggercount + 1 spawn script_object "targetname" "jeep1_trigger" "classname" "trigger_multiple" $jeep1_trigger[level.triggercount].origin = $jeep1.origin + ( 0 150 30) $jeep1_trigger[level.triggercount].target = $jeep1 println ("spawned jeep trigger" + level.triggercount + " at " + $jeep1_trigger[level.triggercount].origin) end[/code] I'm new, so to you pro scripters, I've probably made some hilarious newb errors ont his. Laugh all you want...JUST HELP ME PLEASE! Hehe Oh yeah..the AA gun works great so ignore that part.
  4. S-22 回复 S-22 的 主题 于 硝烟里的年华
    i could write one, and btw the tut u downloaded was a spearhead one thats why they weren't there
  5. S-22 回复 S-22 的 主题 于 硝烟里的年华
    you know what would be great....If someone made a tutorial for driveable jeeps/tanks!!! I was a tutorial at manstiens level design, but it didn't work. So someone, PLEASE make a tutorial.....I'm sure there are hundreds of guys that would appreciate that!! P.S. I saw a downloadable tut at some recycle (something) web site, but when I downloaded it.....there was no tank or jeep....just an empty courtyard.....lol
  6. S-22 回复 S-22 的 主题 于 硝烟里的年华
    ok from what i'v read in this thread i got //Vehicles //Jeep local.jeep = spawn script_model local.jeep model "vehicles/jeep.tik" local.jeep.origin = ( 103 924 48 ) local.jeep.angles = ( 0 0 0 ) local.jeep solid //Vehicles //Jeep_30cal local.jeep_30cal = spawn script_model local.jeep_30cal model "vehicles/jeep_30cal.tik" local.jeep_30cal.origin = ( 103 924 51 ) local.jeep_30cal.angles = ( 0 0 0 ) local.jeep_30cal solid //Vehicles //Jeep_30cal local.jeep = spawn script_model local.jeep model "vehicles/jeep_30cal_viewmodel.tik" local.jeep.origin = ( 103 924 48 ) local.jeep.angles = ( 0 0 0 ) local.jeep solid //exec global/playervehicle.scr ( -8.04 507.85 48.13 ) 0.0 1 exec global/playervehicle.scr ( 103 924 48 ) -97.08 2 exec global/playervehiclesound.scr[/code] i gotta put the 30 cal in the back park of the jeep but so far is this right? hopeefully it will be driveable (southern france) and do i have to put this on too vehicles/jeep_bench.tik ..like [code] //Vehicles //Jeep_bench local.jeep_bench = spawn script_model local.jeep_bench model "vehicles/vehicles/jeep_bench.tik" local.jeep_bench.origin = ( 103 924 48 ) local.jeep_bench.angles = ( 0 0 0 ) local.jeep_bench solid
  7. S-22 回复 S-22 的 主题 于 硝烟里的年华
    if you get it working please send it to me cus its proly a lot better than mine as mine is a very simple one. i have a trigger on the play wen they spawn in the air, the players gravity is reduces, then when they reach the target origin on the ground their gravity is returned back to normal. while they parachute it tells them and it appears also for everyone else that a parachuter is inbound. thats my version, i was gonna do sumfin better (nxt paragraph) but i cudnt be bothered, thou its fairly easy. add a parachute model and stick it to the play origin (+ sumfin on the Z value so its on their back) and stick a backpack on them with + sumfin to Z value too, then it looks realistic, and do what i sed in the last paragraph, then remove the models, works well but i lost the script and i cant be bothered to do it again. and btw, all server side hope i helped
  8. S-22 回复 S-22 的 主题 于 硝烟里的年华
    got ur pm... just email dwfoor@comcast.net for the mod and yes- im sending it to a few of u (3 of u i think) already... working on one for MOHdm 4, Remagen (3) and .... one other one apart from the server/client side one i have with new shermans, 30 cals that work like mg42s and new feature being impletemented: Parachuting in.. having probs tho
  9. S-22 回复 S-22 的 主题 于 硝烟里的年华
    ospery97 ive sent i pms (lol) but u dont reply, duno if ull even see this, if sum1 has his jeep mods can u send em 2 me plz or gimme a link cheerz
  10. S-22 回复 S-22 的 主题 于 硝烟里的年华
    There you go try osprey97's vehicles. The script I wrote was just a basic one for one map I made . It works ok but try others I am sure there is a better script out there somewhere .
  11. S-22 回复 S-22 的 主题 于 硝烟里的年华
    Can u guys give a link for a map with the jeep and tank, coz i dont know anything about scripting so... thanks
  12. S-22 回复 S-22 的 主题 于 硝烟里的年华
    if u peeps want a GOOD driveable jeep mod for any map just PM me with ur email adress and tell me which map u want it on and how many u want... or just give the origin and in ur MOHDM##.scr or watever just put in exec global/jeep1.scr and ya..... for SH cant find any bugs with my jeeps now But thats cuz i replaced the 30cal sound with the mg42 one in the tik file SO U CAN HEAR THE GUN AND ENGINE- BUT GUN SOUNDS LIKE MG42
  13. S-22 回复 S-22 的 主题 于 硝烟里的年华
    only probs visible on console Loading Ambient.scr level waittill spawn (global/playervehicle.scr, 3) level ^ ^~^~^ Script Error: invalid waittill spawn for 'Level' ^~^~^ Event 'dmbulletcount' does not exist. ^~^~^ Failed execution of event for class 'VehicleTurretGun' ^~^~^ Entity::ProcessInitCommands: Bad init server command 'dmbulletcount' in 'models/vehicles/jeep_30cal.tik' ^~^~^ Event 'dmfiredelay' does not exist. ^~^~^ Failed execution of event for class 'VehicleTurretGun' ^~^~^ Entity::ProcessInitCommands: Bad init server command 'dmfiredelay' in 'models/vehicles/jeep_30cal.tik' ^~^~^ Event 'dmbulletrange' does not exist. ^~^~^ Failed execution of event for class 'VehicleTurretGun' ^~^~^ Entity::ProcessInitCommands: Bad init server command 'dmbulletrange' in 'models/vehicles/jeep_30cal.tik' ^~^~^ Event 'dmbulletdamage' does not exist. ^~^~^ Failed execution of event for class 'VehicleTurretGun' ^~^~^ Entity::ProcessInitCommands: Bad init server command 'dmbulletdamage' in 'models/vehicles/jeep_30cal.tik' ^~^~^ Event 'dmbulletspread' does not exist. ^~^~^ Failed execution of event for class 'VehicleTurretGun' ^~^~^ Entity::ProcessInitCommands: Bad init server command 'dmbulletspread' in 'models/vehicles/jeep_30cal.tik' ERROR bLoadForMap: explode_tank3 alias with empty maps specification. running sound script ERROR bLoadForMap: explode_tank3 alias with empty maps specification. but no reason why is shud crash....... this is annoyin me......
  14. S-22 回复 S-22 的 主题 于 硝烟里的年华
    ive done this on sh, and gotten rid of any lines with dmprojectile as its not used in spearhead, and it crashes sometimes, dunno why. ive tried logfile 1 to log the console and nothing appears there, theres no problem, it just crashes when i have this mod on. any ideas?
  15. S-22 回复 S-22 的 主题 于 硝烟里的年华
    Comment out the first line, like this: //exec global/playervehicle.scr ( -8.04 507.85 48.13 ) 0.0 1 exec global/playervehicle.scr ( 482.14 459.64 48.13 ) -97.08 2 exec global/playervehiclesound.scr See the last number on each line? 1 is for tank and 2 is for jeep the // means that line won't be executed in the script
  16. S-22 回复 S-22 的 主题 于 硝烟里的年华
    it work but iv the tank AND the jeep can you help me ? // NORTH AFRIKA // ARCHITECTURE: NED, POWZER // SCRIPTING: POWZER main: // set scoreboard messages setcvar "g_obj_alliedtext1" "Algiers" setcvar "g_obj_alliedtext2" "" setcvar "g_obj_alliedtext3" "" setcvar "g_obj_axistext1" "" setcvar "g_obj_axistext2" "" setcvar "g_obj_axistext3" "" setcvar "g_scoreboardpic" "mohdm7" // call additional stuff for playing this map round based is needed if(level.roundbased) thread roundbasedthread level waittill prespawn //*** Precache Dm Stuff exec global/DMprecache.scr exec global/door_locked.scr::lock level.script = maps/dm/mohdm7.scr exec global/ambient.scr mohdm7 level waittill spawn exec global/playervehicle.scr ( 900 57 -151 ) 177.8 1 exec global/playervehicle.scr ( 900 57 -151 ) 177.8 2 exec global/playervehiclesound.scr exec ubersound/rescue.scr exec global/minefield.scr::minefield_setup thread fire_gun1 thread fire_gun2 thread sound end //----------------------------------------------------------------------------- roundbasedthread: // Can specify different scoreboard messages for round based games here. level waitTill prespawn level waittill spawn // set the parameters for this round based match level.dmrespawning = 0 // 1 or 0 level.dmroundlimit = 5 // round time limit in minutes level.clockside = kills // set to axis, allies, kills, or draw level waittill roundstart end[/code]
  17. S-22 回复 S-22 的 主题 于 硝烟里的年华
    houlala.... iv put that into the src file and a pk3 and i dont have instaled anything sorry im REALLY a n00b iv started scripting the day before yesterday....
  18. S-22 回复 S-22 的 主题 于 硝烟里的年华
    Did you copy the script into mohdm1.scr and put it in the maps/dm directory? are you playing it in mohaa ? What isn't working ? Did you open the console and look for errors ? Is the pak with the global/playervehicle.scr in your main directory ?
  19. S-22 回复 S-22 的 主题 于 硝烟里的年华
    // SOUTHERN FRANCE // ARCHITECTURE: SENN // SCRIPTING: POWZER main: // set scoreboard messages setcvar "g_obj_alliedtext1" "Southern France" setcvar "g_obj_alliedtext2" "" setcvar "g_obj_alliedtext3" "" setcvar "g_obj_axistext1" "" setcvar "g_obj_axistext2" "" setcvar "g_obj_axistext3" "" setcvar "g_scoreboardpic" "mohdm1" // call additional stuff for playing this map round based is needed if(level.roundbased) thread roundbasedthread level waitTill prespawn //*** Precache Dm Stuff exec global/DMprecache.scr level.script = maps/dm/mohdm1.scr exec global/ambient.scr mohdm1 //exec global/ambient.scr mohdm2 //$world farplane 5000 //$world farplane_color (.333 .333 .329) level waittill spawn //exec global/playervehicle.scr ( -8.04 507.85 48.13 ) 0.0 1 exec global/playervehicle.scr ( 482.14 459.64 48.13 ) -97.08 2 exec global/playervehiclesound.scr end //----------------------------------------------------------------------------- roundbasedthread: // Can specify different scoreboard messages for round based games here. level waitTill prespawn level waittill spawn // set the parameters for this round based match level.dmrespawning = 0 // 1 or 0 level.dmroundlimit = 5 // round time limit in minutes level.clockside = kills // set to axis, allies, kills, or draw level waittill roundstart end[/code]
  20. S-22 回复 S-22 的 主题 于 硝烟里的年华
    please say me what is your modded .scr file of your mohdm 1
  21. S-22 回复 S-22 的 主题 于 硝烟里的年华
    Type 1 is a tank not a jeep I tested it in mohdm1 and the tank barely fits under the bridge . You are better off with a jeep . Try this instead exec global/playervehicle.scr ( 482.14 459.64 48.13 ) -97.08 2 // 2 for jeep exec global/playervehiclesound.scr
  22. S-22 回复 S-22 的 主题 于 硝烟里的年华
    hmmm.....darnit, it still doesnt spawn where i want it, i know the coords are right cause i have used them before, it should go under the bridge on southeren france: my code is this: exec global/playervehicle.scr ( 482.14 459.64 48.13 ) 0.0 1 //exec global/playervehicle.scr ( 482.14 459.64 48.13 ) 0.0 1 exec global/playervehiclesound.scr in my .pk3 i have these files and directorys: global> playervehicle.scr playervehiclesound.scr maps>dm> mohdm1.scr models>vehicles> jeep.tik ubersound> playervehiclesounds.scr im sure these are right, but it dont work, my .pk3 is named: user-dansmod.pk3
  23. S-22 回复 S-22 的 主题 于 硝烟里的年华
    thanks dude, lol i dont go into games and type coord, i do it my way, i wrote a tutorial on it http://twisted-dreamer.org/bother/tutorial.htm u might find it usefull (it may be down at this current moment time). do u have msn messenger?
  24. S-22 回复 S-22 的 主题 于 硝烟里的年华
    Go to the spot in your map that you want to spawn the jeep into . type coord or whereami 1 into the console and write down the coordinates and angles . The second number of the angles is what you need . The syntax of the playervehicle.scr is : exec global/playervehicle.scr ( coordinates ) angle type type 1 = tank type 2 = jeep The jeep in the map is a modified jeep that changes it's classname from classname drivableVehicle to classname VehicleTank in the jeep.tik
  25. S-22 回复 S-22 的 主题 于 硝烟里的年华
    bdboger, i played ur map, its awesome, and i want to add a jeep and tank to algiers, but i dont know how to change the coords, i think its something to do with this thoigh: exec global/playervehicle.scr ( 2944.99 -1716.46 67.43 ) 177.8 1 exec global/playervehicle.scr ( 595.98 -1297.28 29.23 ) 177.8 2 exec global/playervehiclesound.scr i dont get which one u put coord in, which one is it, i tried to change the ( 2944.99 -1716.46 67.43 ) bit and it didnt appear into the map, could u make a pk3 for me like posisitioning a driveable tank and jeep in algiers, please

Account

Navigation

搜索

搜索

设置浏览器推送通知

Chrome(安卓)
  1. 点击地址栏旁边的锁形图标。
  2. 点击 权限 → 通知
  3. 根据需要调整通知设置。
Chrome(桌面)
  1. 点击地址栏中的锁形图标。
  2. 选择 网站设置
  3. 找到 通知,然后根据需要调整设置。