Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Viathan

#31
General / Re: Problems with Battlefront.exe
June 26, 2015, 07:12:07 AM
Hey,
Phobos uploaded the binkw32.dll file here

You have to move the file into LucasArts\Star Wars Battlefront\GameData
#32
General / Re: Viathan
June 26, 2015, 07:07:40 AM
I have uninstalled GameRanger.
If they really want to switch to masterserver, they can contact me via Skype.

king-des-monats

Or send them this link.
There's every step explained.
#33
Quote from: Syyy on June 25, 2015, 02:08:23 PM
Thank you Viathan!

You're welcome  :cheers:
#34
Hio,
all server mods are ready now.
I'll post everything related to the server into the ServerLog section in the main post.

I'm not sure if you all like the setup of the commandposts. Let me know what I can change / add / remove.




Quote from: Lum3n on June 25, 2015, 08:33:14 AM
May the playing without Lags be with us!
This is Battlefront my friend  :cheers:
#35
Hey, I decided to host new euro servers (host is in berlin/germany).


- S P A L A L A R A T I O N S K R A F T W E R K -
name stealed from 21st Deagle  :)




:mf: Competitive gameplay only :mf:

Nobody is currently banned and I hope this will not change.   :friend:

Map Rotation [100 vs 100][GCW] [Map order is random]

  • Mos Eisley
  • Citadel
  • Jedi Temple : Knightfall [Download | ~7mb (Place it here: \LucasArts\Star Wars Battlefront\GameData\AddOn)]
  • CloudCity

Mods

  • Fast Spawn
  • Invincible Health and Ammo Droids
  • No recon droids
  • Pre set commandoposts (all are captureable)
  • ...



Note: The main server is without Jedi Temple: Knightfall.



Admins: AoD Lum3n, AoD TitaN and me
Suggestions? Feel free to post  :cheers:




ServerLog:
+ Added CloudCity (GCW)
+ Added NoRecon mod
+ Changed CP setup for Mos Eisley and Citadel
+ Changed map rotation
- Removed Knightfall from standard rotation
+ Hosted another server with knightfall
+ Map shuffle (randomize) on both servers
# ServerBot is in progress







Note: It's Battlefront 1 not Battlefront 2 (Gametracker does not support swbf1)
#36
NOMMOC - Common.lvl




Screenshots [14]  :cheers:
Gallery on imgur.com
#37
Sorry mate.
Can't fix your script, I'm not a pro in Lua. But maybe you try using a template from another script...  :confused:
#38
SWBF1 Modding / SG scale and orientation needed
June 20, 2015, 02:03:01 PM
Hey,
here's an ugly SG in msh + wrl + x3d format. (no texture atm)
Can someone scale and position it like the ALL rifle?
I think it's a bit to big :XD:

[spoiler][/spoiler]
#39
SWBF1 Modding / Re: Simple mesh needed
June 20, 2015, 01:00:35 AM
Hey Epifire,
I think you've attached the wrong mesh  :XD:
This is the stock shell_cube mesh (different binary as the stock has but the model seems to be the same)  :blink:
#40
Try to add ScriptCB_DoFile("ifs_swbfadmin") into your menu.
Ofc you have to replace swbfadmin with your scriptname (and add it to the first line if possible)
#41
Yes, you're right.
Actually you can just say: startdelay = nil
To erase this completely from memory (if this doesn't cause a crash)

But this is so minimal and there are many other things made by the developers that would be more necessary to clean  :cheers:

Edit:
I like the most effects and designs the developers made. Even with my common and shell mods or my hacks etc I'm not gonna renew the interface. Just few design changes and utility stuff I like to have :)
#42
Quotenice work, thanks for sharing :tu:
Np mate  :cheers:

Thx for sharing your scripts. I'll try them :)
#43
Hi there  :cheers:

OK, this bugfix took me hours.. But now it should work like expected  :)

This update fixes:

  • ServerBrowser connected you with your prev connection type (lan, direct...)
  • Singleplayer was not possible when ServerBrowser was launched before
  • Several small bugs like: exiting serverbrowser moves you to profile select.. or well, gamecrashes

The current version (v1.12)

  • Once in mainmenu you can click on server browser button to get straight to sessionlist
  • Fixed the prev connection bug
  • Fixed the singleplayer bug
  • Fixed the host and join bug
  • Fixed gamecrashes and several small bugs




The Code [ifs_main.lua (shell script)]
Note: It's not the best code you've every seen... But I tried to kept all the changes in one file!  :cheers:

Code for singleplayer bugfix
Code (lua) Select
-- CLEAR MP RELATED THINGS when launching sp ---------------
ScriptCB_ClearPrevSessionId()-- kill old SID
ScriptCB_CloseNetShell(1)-- we're not in mp!


Main code for our serverbrowser button
Code (lua) Select

elseif (this.CurButton == "mpsb") then -- serverbrowser button
ScriptCB_SetInNetGame(nil)-- Just to make sure everything is fresh :)
ScriptCB_ClearPrevSessionId()-- Clear prev Session ID (helps SetConnectType)
ScriptCB_SetConnectType("wan")-- set the ConnectType: not lan nor direct, it's internet!
ScriptCB_SetAmHost(nil)-- We want to join, not host a server

gOnlineServiceStr = ScriptCB_GetOnlineService()
if(gOnlineServiceStr == "GameSpy") then
ifelm_shellscreen_fnPlaySound(this.acceptSound) --play sound because we're cool
ifs_movietrans_PushScreen(ifs_mp_sessionlist)--get the OnlineService: not lan nor direct, it's internet!
end

--ifs_movietrans_PushScreen(ifs_mp_main) -- disabled - need to check/get onlineservice





Maybe it's easier for you downloading the current version and check what I've changed.

Changes are made..
Line: 27 [Button added to menu]
Line: 340 - 343 [SinglePlayer bugfix]
Line: 373 - 387 [Button function + fixes]




Current version is attached
#44
Quote
can you show which code u used for the instant login mod?

ifs_login.lua
Search for: commandline -> Right below the comment is the declaration and initialization of several variables.
There's also the variable we need : CmdNickStr

The next line is:
Code (lua) Select
CmdNickStr = CmdNickStr or ""
You change it to:
Code (lua) Select
--CmdNickStr = CmdNickStr or ""
And now you add a new line:
Code (lua) Select
CmdNickStr = "YOUR_PROFILE_NAME"

That's it :)
#45
It's possible (I think with /profile) to automatically login when the game starts.
But idk the exact syntax of this command so I coded into my ifs_login which profile it shall load and then log me in.
Right after I coded that, I saw the function that reads the commandline for a profile.  :slap:

Just insert the nick of your profile in the variable and done :rofl:


I like movies in background and changed them to other cool movies :D
But I also removed all transition sequences, like when you click on options or singleplayer.

And soon there will be another bugfix for the ServerBrowser button.