ItsMods

Full Version: .Gsc Modding for Beginners
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9
(10-26-2011, 17:06)gumpo03 Wrote: [ -> ]Can i Use other programming-Speaches like PhP, Java or Basic?

No :p

But it isn't that hard to learn, try it!
One more O.o
Ok, i Think i would try it ^^
I've bought 2 or 3 books about C++, but never read them xD

(10-26-2011, 17:06)gumpo03 Wrote: [ -> ]Can i Use other programming-Speaches like PhP, Java or Basic?

Actually yes.

PHP is pretty similar to cod script.
GSC is the easiest language I know
and you still fail at it Sad
(10-26-2011, 17:25)Pozzuh Wrote: [ -> ]
(10-26-2011, 17:06)gumpo03 Wrote: [ -> ]Can i Use other programming-Speaches like PhP, Java or Basic?

Actually yes.

PHP is pretty similar to cod script.

And give it somewhere the CodeScripts in PHP or an tutorial how to mod it with PHP?
It wold helps me a lot, because i didn's have a idea of GSC.
I prefer failing at GSC than failing at having a proper social life




(10-26-2011, 17:59)gumpo03 Wrote: [ -> ]
(10-26-2011, 17:25)Pozzuh Wrote: [ -> ]
(10-26-2011, 17:06)gumpo03 Wrote: [ -> ]Can i Use other programming-Speaches like PhP, Java or Basic?

Actually yes.

PHP is pretty similar to cod script.

And give it somewhere the CodeScripts in PHP or an tutorial how to mod it with PHP?
It wold helps me a lot, because i didn's have a idea of GSC.

You can't, he's just trolling you. You can mod CoD only with GSC
I miss something in the Tutorial:
how can i show a Text in the Chatt or on the hud?
As example: When a Player spawn, there should come a Text on Hud:
Code:
"Welcome back $name_of_player."
and in Chatt:
Quote:"$name_of_player is Back in Game!"
How can i do this?

After the Tutorial i only know, i have to put the code in
Code:
onPlayerSpawned()
{
    self endon("disconnect");

    for(;;)
    {
         ...
    }
}
But nothing else.
allclientsprint(self.name+ "is back in the game !");

add after self waittill("player_spawned"); in onplayerspawned()
(10-26-2011, 18:23)OrangePL Wrote: [ -> ]allclientsprint(self.name+ "is back in the game !");

add after self waittill("player_spawned"); in onplayerspawned()

Thank you!
But how can i make the Text in the hud?

and if the text should only be in the massage of the spawning player i must add
Code:
playerclientsprint(self.name+ "is back in the game !");
right?

EDIT:
or is it
Code:
selfclientsprint(self.name+ "is back in the game !");
Pages: 1 2 3 4 5 6 7 8 9