#31 2016-03-29 06:23:56

BoS
Player
United States
Reputation: +49
Registered: 2015-06-29
Posts: 205
Windows 8.1 Firefox 45.0

Re: SiMPLE is looking for map modders

bud wrote:

lol where is oscar when you need his "i'll get the sub" comment

Offline

    Positive reputation 0   Negative reputation 0

#32 2016-03-29 06:39:17

PitViper
TGE|
United States
Reputation: +431
Location: *TheGreatEscape|USA
Registered: 2014-09-27
Posts: 2,188
Website
Windows 7 Chrome 49.0

Re: SiMPLE is looking for map modders

...fairly sure he's on stage right now.

Offline

    Positive reputation 0   Negative reputation 0

#33 2016-03-29 12:09:33

(BB)DinkW
Member
England
Reputation: +986
Location: In front of my screen
Registered: 2012-08-06
Posts: 1,708
Website
Windows 7 Internet Explorer 11.0

Re: SiMPLE is looking for map modders

BoS wrote:
ATF_SurrenderMonkey wrote:

No worries BoS; three years between posts.....so......

3 years between post just responding to a post that someone re-posted, does it matter or do we need a commentator about how often someone says what on whatever subject?  Like you say in server to others when there are rule breakers - "did it effect you or did it kill you?" Just commenting on someone, didn't know we need permission to answer someone else.

Steady Bos ............... Monky was just razzing you.................... you know having a laugh and a joke, you do remember what that's like right?

Offline

    Positive reputation 0   Negative reputation 0

#34 2016-03-29 12:14:39

(BB)DinkW
Member
England
Reputation: +986
Location: In front of my screen
Registered: 2012-08-06
Posts: 1,708
Website
Windows 7 Internet Explorer 11.0

Re: SiMPLE is looking for map modders

bud wrote:

Bud do you have the code for this to hand and would you mind sharing?

Offline

    Positive reputation 0   Negative reputation 0

#35 2016-03-30 19:08:42

bud
maestro
Reputation: +1835
Location: shangri la
Registered: 2012-07-07
Posts: 3,941
Website
Windows 7 Firefox 45.0

Re: SiMPLE is looking for map modders

i think i posted the code at bfmods.com but i remember the general idea of it. its hard to think of something useful to do with it without getting to "far" from the game so to speak.

https://www.youtube.com/watch?v=ug_CtFxC-OQ

Offline

    Positive reputation 0   Negative reputation 0

#36 2016-03-30 19:56:27

Black Mamba
Member
Canada
Reputation: +1449
Registered: 2012-12-01
Posts: 4,231
Windows 10 Chrome 49.0

Re: SiMPLE is looking for map modders

It would be interesting to have that enabled on some servers. Could be used as some sort of "commander mode" such as in BF2 to supply ammo and vehicles smile

Offline

    Positive reputation 0   Negative reputation 0

#37 2016-03-31 09:37:08

(BB)DinkW
Member
England
Reputation: +986
Location: In front of my screen
Registered: 2012-08-06
Posts: 1,708
Website
Windows 10 Microsoft Edge 13.10586

Re: SiMPLE is looking for map modders

bud wrote:

i think i posted the code at bfmods.com but i remember the general idea of it. its hard to think of something useful to do with it without getting to "far" from the game so to speak.

https://www.youtube.com/watch?v=ug_CtFxC-OQ


Thanks Bud I will go take a look.  I think I will only use it for the comedy value smile.  Picture the scene ............. Allied airfield Battleaxe and the entire Allied team are there trying to kill you and all you have left is two pistol rounds and a knife....but then............ !carrier .................BOOM! hehehehe big_smile

Offline

    Positive reputation 0   Negative reputation 0

#38 2016-04-01 01:59:35

bud
maestro
Reputation: +1835
Location: shangri la
Registered: 2012-07-07
Posts: 3,941
Website
Windows 7 Firefox 45.0

Re: SiMPLE is looking for map modders

Aight this is roughly what i remember, first make a file, example spawnsub.con and put it in the server folder. Then in that file you put your code you want to run

example

    ObjectTemplate.create ObjectSpawner subspawner
    ObjectTemplate.setObjectTemplate 1 Sub7C
    ObjectTemplate.team 1
    ObjectTemplate.MaxNrOfObjectSpawned 1


    Object.create subspawner
    Object.absolutePosition 689/60/1298
    Object.rotation -180/0/0 

then in PlayerMenu.con file the admin command to run the code

// spawn_sub
Console Commands>"include spawnsub.con"|cmd,[sub]

---------------------------------------------------------------------------------------------------

If you want your knife to spawn things you can add a spawner to the "knife bullet" and then change the objects with admin commands

ObjectTemplate.Active knifprojectile <---- not sure about the name, check it before use
ObjectTemplate.addTemplate subspawner

now your knife spawn subs when you use it, to change to plane you need a new file, lets say plane.con

ObjectTemplate.Active subspawner
ObjectTemplate.setObjectTemplate 1 Mustang

then add to PlayerMenu.con

// spawn_plane
Console Commands>"include plane.con"|cmd,[plane]

to "cancel out" the knife spawning things you just activate the spawner again and leave the line empty or something bogus.

ObjectTemplate.Active subspawner
ObjectTemplate.setObjectTemplate 1 

This is just some example code to show the principle, i havent tested this exact code.

Offline

    Positive reputation 0   Negative reputation 0

#39 2016-04-01 02:46:18

Arkos
Sedmin
Switzerland
Reputation: +2778
Registered: 2014-06-06
Posts: 7,041
Windows 7 Chrome 49.0

Re: SiMPLE is looking for map modders

...

Did not SchindlersList had once such a mod in Coral Sea CTF? You could use binocs to start a kettenrad.

...

Last edited by Arkos (2016-04-01 02:47:07)

Offline

    Positive reputation 0   Negative reputation 0

#40 2016-04-01 03:25:37

bud
maestro
Reputation: +1835
Location: shangri la
Registered: 2012-07-07
Posts: 3,941
Website
Windows 7 Firefox 45.0

Re: SiMPLE is looking for map modders

Arkos wrote:

...

Did not SchindlersList had once such a mod in Coral Sea CTF? You could use binocs to start a kettenrad.

...

nah, that was me smile

Offline

    Positive reputation 0   Negative reputation 0

#41 2016-04-01 04:21:22

PitViper
TGE|
United States
Reputation: +431
Location: *TheGreatEscape|USA
Registered: 2014-09-27
Posts: 2,188
Website
Windows 7 Chrome 49.0

Re: SiMPLE is looking for map modders

(BB)DinkW wrote:
BoS wrote:
ATF_SurrenderMonkey wrote:

No worries BoS; three years between posts.....so......

3 years between post just responding to a post didn't know we need permission to answer someone else.

Steady Bos ............... Monky was just razzing you.................... you know having a laugh and a joke, you do remember what that's like right?

So now you know you need permission.  I told you not to feed the monkey...now you get to deal with the bowel movements. tongue

Offline

    Positive reputation 0   Negative reputation 0

#42 2016-04-01 07:24:25

Arkos
Sedmin
Switzerland
Reputation: +2778
Registered: 2014-06-06
Posts: 7,041
Windows 7 Chrome 49.0

Re: SiMPLE is looking for map modders

bud wrote:
Arkos wrote:

...

Did not SchindlersList had once such a mod in Coral Sea CTF? You could use binocs to start a kettenrad.

...

nah, that was me smile


Ok... what was the name of the server?

Offline

    Positive reputation 0   Negative reputation 0

#43 2016-04-01 08:53:11

(BB)DinkW
Member
England
Reputation: +986
Location: In front of my screen
Registered: 2012-08-06
Posts: 1,708
Website
Windows 10 Microsoft Edge 13.10586

Re: SiMPLE is looking for map modders

bud wrote:

Aight this is roughly what i remember, first make a file, example spawnsub.con and put it in the server folder. Then in that file you put your code you want to run

example.

Thanks Bud smile

I will have a play.

Offline

    Positive reputation 0   Negative reputation 0

#44 2016-04-02 09:20:58

bud
maestro
Reputation: +1835
Location: shangri la
Registered: 2012-07-07
Posts: 3,941
Website
Windows 7 Firefox 45.0

Re: SiMPLE is looking for map modders

(BB)DinkW wrote:
bud wrote:

Aight this is roughly what i remember, first make a file, example spawnsub.con and put it in the server folder. Then in that file you put your code you want to run

example.

Thanks Bud smile

I will have a play.

sure thing, shout if you need help or pm or what ever smile

Offline

    Positive reputation 0   Negative reputation 0

#45 2016-04-02 09:33:17

bud
maestro
Reputation: +1835
Location: shangri la
Registered: 2012-07-07
Posts: 3,941
Website
Windows 7 Firefox 45.0

Re: SiMPLE is looking for map modders

Arkos wrote:
bud wrote:
Arkos wrote:

Did not SchindlersList had once such a mod in Coral Sea CTF? You could use binocs to start a kettenrad.

nah, that was me smile

Ok... what was the name of the server?

BFO Coral Midway Britain mods

https://www.youtube.com/watch?v=g3zqC0cn2Ek

Offline

    Positive reputation 1   Negative reputation 0

#46 2016-04-04 00:32:20

BoS
Player
United States
Reputation: +49
Registered: 2015-06-29
Posts: 205
Windows 8.1 Firefox 45.0

Re: SiMPLE is looking for map modders

bud wrote:
Arkos wrote:
bud wrote:

nah, that was me smile

Ok... what was the name of the server?

BFO Coral Midway Britain mods

https://www.youtube.com/watch?v=g3zqC0cn2Ek

I laughed my rear off!!!! thanks you bud !!!

Offline

    Positive reputation 0   Negative reputation 0

#47 2016-04-04 05:14:24

ATF_SurrenderMonkey
Member
United States
Reputation: +385
Registered: 2012-08-26
Posts: 1,973
Windows 10 Chrome 49.0

Re: SiMPLE is looking for map modders

PitViper wrote:

...fairly sure he's on stage right now.


m6V7ZO5.gif

Offline

    Positive reputation 0   Negative reputation 0

#48 2016-04-04 05:16:21

ATF_SurrenderMonkey
Member
United States
Reputation: +385
Registered: 2012-08-26
Posts: 1,973
Windows 10 Chrome 49.0

Re: SiMPLE is looking for map modders

PitViper wrote:
(BB)DinkW wrote:
BoS wrote:

3 years between post just responding to a post didn't know we need permission to answer someone else.

Steady Bos ............... Monky was just razzing you.................... you know having a laugh and a joke, you do remember what that's like right?

So now you know you need permission.  I told you not to feed the monkey...now you get to deal with the bowel movements. tongue


GueAZ7U.gif

Offline

    Positive reputation 0   Negative reputation 0

#49 2019-05-15 17:54:06

GoodDayToDie
Player
United States
Reputation: +51
Registered: 2015-09-25
Posts: 77
Website
Windows 7 Chrome 74.0

Re: SiMPLE is looking for map modders

So how did the SSM recruiting go?
Speaking of Parcours Challenge, I converted that map to the is82 mod a few years ago. Now I am working on converting the sequel.
GYisw9s.jpg

Offline

    Positive reputation 0   Negative reputation 0

#50 2019-05-21 02:19:50

Black Mamba
Member
Canada
Reputation: +1449
Registered: 2012-12-01
Posts: 4,231
iOS Safari 12.1

Re: SiMPLE is looking for map modders

Get mapping guys smile

Offline

    Positive reputation 1   Negative reputation 0

#51 2019-06-01 02:45:54

iCQ
Spammer
Netherlands
Reputation: +544
Location: Netherlands
Registered: 2017-07-31
Posts: 1,967
Windows 7 Vivaldi 2.4

Re: SiMPLE is looking for map modders

Black Mamba wrote:

Get mapping guys smile

Can/do you map/mod on a mac?

Offline

    Positive reputation 0   Negative reputation 0

#52 2019-06-01 17:00:47

Black Mamba
Member
Canada
Reputation: +1449
Registered: 2012-12-01
Posts: 4,231
Windows 10 Chrome 74.0

Re: SiMPLE is looking for map modders

iCQ wrote:
Black Mamba wrote:

Get mapping guys smile

Can/do you map/mod on a mac?

Give me 100$ Canadian and I'll look into it.

Offline

    Positive reputation 1   Negative reputation 0

#53 2019-06-13 15:12:52

iCQ
Spammer
Netherlands
Reputation: +544
Location: Netherlands
Registered: 2017-07-31
Posts: 1,967
Windows 7 Vivaldi 2.4

Re: SiMPLE is looking for map modders

Hehehe... hmmm mac+wine?

Offline

    Positive reputation 0   Negative reputation 0

#54 2019-06-15 17:34:13

ahmed:)
.الدلاع راهو غالي
Algeria
Reputation: +76
Location: 11 ain benain
Registered: 2018-08-25
Posts: 246
Website
Windows 7 Chrome 74.0

Re: SiMPLE is looking for map modders

iCQ wrote:

Hehehe... hmmm mac+wine?

2*1 = ???

Offline

    Positive reputation 0   Negative reputation 0

#55 2019-06-16 19:10:49

iCQ
Spammer
Netherlands
Reputation: +544
Location: Netherlands
Registered: 2017-07-31
Posts: 1,967
Windows 7 Vivaldi 2.4

Re: SiMPLE is looking for map modders

ahmed where are u man? i try connect with u in whatsapp that number u used to connect with me last week.. (sorry it been nut house here)

but seems this number and that whatsapp account is dead now?

Offline

    Positive reputation 0   Negative reputation 0

#56 2019-07-30 14:59:56

{Phantom}
Player
Reputation: +53
Registered: 2016-08-09
Posts: 201
Android Chrome 75.0

Re: SiMPLE is looking for map modders

I have a dozen or so maps that initially ran on Soldiers of Legend servers (1.6) then years later on Schindlers Modded Server.

If you want.

They are ctf.

Offline

    Positive reputation 0   Negative reputation 0

Board footer