
emiledesmarg
Members-
Content Count
58 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout emiledesmarg
-
Rank
Member
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Hello people ,, I hope you are well .. I am looking for several hours ago in google for some sripts to increase the death score in my dedicated server of cod waw .. I know it has nothing to do with this site itself .. but the truth is that there is very little material only unanswered questions are found .. honestly I have very little knowledge about creating scripts .. but if someone would guide me I think they could do it easily .. I need the names of the files to create, the commands in those files and the structure of the folders .. that is everything .. = (.. I know you want to ask for a lot and this is not the ideal place to ask for this help .. but as I said .. the forums of that game are all dead. Thank you very much in advance ... I'm sorry for the bad English ... and tried many things with some files from the "openWarfare" mod, unzipping some iwd files from inside main and others .ff from inside zone / english .. unzipping with a tool that passed in this thread .. "https : //cod4x.me/index.php? / forums / topic / 2544-how-can-i-edit-ff-files / ".. putting together folder structure maps / mp / gametypes configuring and dropping some of the extracted files and configured by me .. patiently reading what each command is for .. but I have no luck so far ... I have a server with script configured by me here in codx4me .. "new experience" .. verdar was very good ! I comment all this .. to demonstrate that I don't want them to do things for me .. I like to do them for me. but now i need help. the image below is the cod 4 server -new experience- (in if you can change the general xp of the server and enable the functions $ fps $ fov and $ promod.after much trial and error)
-
Hi . how can I make my server be
emiledesmarg replied to emiledesmarg's topic in Questions & Requests
forget to comment the server is without mod now. -
Hi . how can I make my server be
emiledesmarg replied to emiledesmarg's topic in Questions & Requests
thank you very much .. I think I'm close to being able to do it .. but it gives me an error .. I have tried in many ways : setClientDvar("r_fullbright", 1); ------------------------------------------------------- { setClientDvar("r_fullbright", 1); } ------------------------------------------------------- <value> { ("r_fullbright"); } <dvar> { setClientDvar("r_fullbright", 1); } ------------------------------------------------------ { setClientDvar ("r_fullbright", 1); } -
Hi . how can I make my server be
emiledesmarg replied to emiledesmarg's topic in Questions & Requests
Someone could explain to me, like this kind person .. how to have on my server fullbright 1 and fx_draw 0 .. ??? GSC Scripting Guide This scripting guide shows how to modify server side scripts on the CoD4x server. Quickstart - Running your first script! In this chapter we develop a small welcome script. It will wait for a player to connect to the server, and write a welcome message to his screen. Set up your scriptfile Inside the serverfolder create a new folder called main_shared1. Inside main_shared create a file called welcome.gsc. This file will contain our code. init() { for(;;) { level waittill("connected", player); // Waits until a new player connects - player stored in "player" variable. player thread welcome(); // Execute a new thread for "player". } } welcome() { // "player" is referenced as "self" now. self endon("disconnect"); // If player was connected but left without spawning, thread will lock because of next statement. self waittill("spawned_player"); // Waits until the player spawned. self iprintlnbold("Welcome " + self.name); // Writes the welcome message bold and centered on the player's screen. } Execute the script Just because a script or function is present, doesn't mean it also gets executed. You not only tell them how to jump, you also tell them when to jump. Do not worry yet about the following lines, what's happening will be explained later. Create a file called _callbacksetup.gsc inside main_shared/maps/mp/gametypes. Fill it with the contents of this file: https://github.com/D4edalus/CoD4MW/blob/master/raw/maps/mp/gametypes/_callbacksetup.gsc. To run our script we are going to edit the existing CodeCallback_StartGameType function. CodeCallback_StartGameType() { // If the gametype has not beed started, run the startup. if(!isDefined(level.gametypestarted) || !level.gametypestarted) { [[level.callbackStartGameType]](); level.gametypestarted = true; // So we know that the gametype has been started up. thread welcome::init(); // Initializes the welcome script. } } 1: main_shared is not only one possibility to load custom scripts on the CoD4x server. Most certainly the easiest and the best one for development. -
Hi . how can I make my server be
emiledesmarg replied to emiledesmarg's topic in Questions & Requests
thanks for your reply . -
Hi . how can I make my server be
emiledesmarg replied to emiledesmarg's topic in Questions & Requests
.