-CERRAR-

Síguenos en nuestro canal oficial de WHATSAPP

 

Click aquí para acceder al canal

NUEVO!! Kitserver 6.4.1.1 (21/03/2007) Vista compatible : Herramientas Edición - Página 6

  • Patrocinios

NUEVO!! Kitserver 6.4.1.1 (21/03/2007) Vista compatible

Todo sobre estas aplicaciones para editar el juego.

Moderador: Moderadores

Seguidores: jhonstevenr, Mitalca, zidanes-rafalekus, elcuervo0589, chapa_cba, garyv, Richister, Sile1500, sebirb, eddie7676, ricardolopez

Notapor villita » Dom Dic 10, 2006 3:01 pm

como lo hago?
[img]83209_mundoimg__carnet_valencianista_muevp_villita[/img]
Avatar de Usuario
villita
Utillero
Utillero
 
Mensajes: 115
Registrado: Mar Dic 05, 2006 12:00 am
Agradecido : 0 gracias
Recibidos  : 0 gracias

Notapor Jesulyy10 » Dom Dic 10, 2006 3:24 pm

uooo cuanto tiempo esperando, se save algo de bootserver?¿ Juce dijo k lo terminaria antes de navidad, jajaja para mi seria un buen regalo xD
YO
Avatar de Usuario
Jesulyy10
Goleador
Goleador
 
Mensajes: 559
Registrado: Vie May 13, 2005 11:00 pm
Ubicación: Marbella
Agradecido : 0 gracias
Recibidos  : 0 gracias

Notapor jhonstevenr » Dom Dic 10, 2006 5:24 pm

iyoooo escribió:tengo el tipico problema de que es pesfaneditor no quiere abrirse jejeje. bueno si nadie tiene las ID esperare a que se cuelguen, gracias



yo lo tengo,pero si quieres saber sacar el ID de los jugadores con el pesfan metete en el topic de "caras" y hay un post que se llama ""sacar ID con el pesfan :D""

dame unos minutos y cuelgo el map



saludos



EDITO: aqui dejo el link de descarga del map

MAP ID JUGADORES
Visita mi página web ;) con mis creaciones
http://pescolworld.webs.com/
Imagen


Imagen
Avatar de Usuario
jhonstevenr
KitMaker
KitMaker
 
Mensajes: 1319
Registrado: Sab Ago 26, 2006 11:00 pm
Ubicación: Bogotà Colombia y Viña del Mar Chile
Agradecido : 0 gracias
Recibidos  : 1 gracias

Notapor zidanes-rafalekus » Dom Dic 10, 2006 6:35 pm

aki dejo algunas ID del werder bremen que no salen y gracias rafa por poner el faceserver que va parfecto

4345,"H.Almeida.bin"
4347,"Naldo.bin"
4348,"Fritz.bin"
4349,"Wome.bin"
4350,"Boumann.bin"
4351,"Frings.bin"
4352,"Diego.bin"
4354,"Zidan.bin"
4360,"Schulz.bin"
4361,"Owomoyeda.bin"
4363,"Wiese.bin"
4365,"Andreasen.bin"
4367,"Mohr.bin"

saludos ':wink:'
Avatar de Usuario
zidanes-rafalekus
Calentando
Calentando
 
Mensajes: 188
Registrado: Vie Dic 23, 2005 12:00 am
Agradecido : 0 gracias
Recibidos  : 1 gracias

Notapor thematris » Lun Dic 11, 2006 3:55 am

AYUDAAAAAAAAAAAAAAAA!!!!!!!! Gente como puedo hacer para poder elegir el Balon y el Estadio por que no puedo no se con que botones hacerlo
Avatar de Usuario
thematris
Utillero
Utillero
 
Mensajes: 99
Registrado: Vie Jul 22, 2005 11:00 pm
Agradecido : 0 gracias
Recibidos  : 0 gracias

Notapor Mitalca » Lun Dic 11, 2006 6:21 am

hace algo loco como leerte el Readme que viene dentro del kitserver!!!
aaaaaahhhhhhh locuuuraaaaaaa
<img src="http://img266.imageshack.us/img266/2775/forofireho5.png" />
<img src="http://img251.imageshack.us/img251/2875/forodreamlz7.png" />

Mi post de banderas:
http://www.pesoccerworld.com/modules.php?name=Forums&file=viewtopic&t=45725
Avatar de Usuario
Mitalca
Goleador
Goleador
 
Mensajes: 651
Registrado: Vie Dic 31, 2004 12:00 am
Agradecido : 0 gracias
Recibidos  : 0 gracias

Notapor dr13 » Lun Dic 11, 2006 3:58 pm

Tropos escribió:
semao escribió:segun dice dr13 en el foro de soccergaming, la forma de obtener los ids para el map del pro 6 es de esta manera

You need PESFAN Editor 6. Open your option file with it. In the menu bar, select Tools -> Make csv stats file...
Select all three options in the right part (Column Headings, Extra Players, Created Players). Then save the csv file in any folder.

Now open a new file in Excel. Select A1, and go to Tools -> Macros -> Visual Basic Editor (I don't know exactly what names the menus have, because i have the spanish Office). Now see the top-left part of the Editor, below the icons, ubicate where it says Page1, Page2..., double click in Page1, it will open the code editor. Copy and paste there this code:


Public Sub ImportTextFile(FName As String, Sep As String)

Dim RowNdx As Integer
Dim ColNdx As Integer
Dim TempVal As Variant
Dim WholeLine As String
Dim Pos As Integer
Dim NextPos As Integer
Dim SaveColNdx As Integer

Application.ScreenUpdating = False
'On Error GoTo EndMacro:

SaveColNdx = ActiveCell.Column
RowNdx = ActiveCell.Row

Open FName For Input Access Read As #1

While Not EOF(1)
Line Input #1, WholeLine
If Right(WholeLine, 1) <> Sep Then
WholeLine = WholeLine & Sep
End If
ColNdx = SaveColNdx
Pos = 1
NextPos = InStr(Pos, WholeLine, Sep)
While NextPos >= 1
TempVal = Mid(WholeLine, Pos, NextPos - Pos)
Cells(RowNdx, ColNdx).Value = TempVal
Pos = NextPos + 1
ColNdx = ColNdx + 1
NextPos = InStr(Pos, WholeLine, Sep)
Wend
RowNdx = RowNdx + 1
Wend

EndMacro:
On Error GoTo 0
Application.ScreenUpdating = True
Close #1

End Sub

Public Sub DoTheImport()
Dim FName As Variant
Dim Sep As String

FName = Application.GetOpenFilename _
(filefilter:="Text Files(*.txt),*.txt,All Files (*.*),*.*")
If FName = False Then
MsgBox "You didn't select a file"
Exit Sub
End If

Sep = InputBox("Enter a single delimiter character.", _
"Import Text File")
ImportTextFile CStr(FName), Sep

End Sub


Now click the "play" button in the standard toolbar. It will show the Open dialog. First where it says to open "text files", select "all files", then search for the first created csv file you saved before. Then it should open a message asking about the "separator". There write "," (without the "") and Accept. Wait some time, and then you should have a table with all option file data, divided by columns. I copied it to another excel file, to have it without macros. Then I inserted a column as the first column, with title "IDs". In this column, simply write 1 in A2, 2 in A3, and fill in all the column A incrementing the numbers, until you get to 5183.

The important thing is that PESFAN Editor makes the csv file ordering it with the player ID, so you can fill those numbers correctly.

I copied to another excel file only these columns: IDs, Name, Club Team.
Now you can for example order all the file by Name, or by Club Team, or even use filters. I applied a Filter in the first row (Data -> Filter -> "autofilter" or "self-filter", don't know the english name). So I can select any team "FC Barcelona" for example, as the Club Team, and it will show all Barça players with their IDs.

This process was long to write, but should take you less than 10 minutes. So you can do it everytime you change a lot of data in the option file, to update it.


todos los creditos, van para el, yo no quiero saber nada, solo reproduzco sus palabras. si esto no se puede hacer, pues lo siento, lo borrais y listo, pero creo q puede ser muy util por no andar entrando al juego para ver el id cada vez q se qiera meter una cara :?
tampoco lo e probado, no se si funcionara


Tambien estoy aca yo :)

Igual ahora, si lo unico que quieren es tener los IDs exactos, usen este programita:
http://files.filefront.com/PlayersIDrar ... einfo.html
el link lo publico FCH en soccergaming, pero no se quien hizo el programita.

Si por otra parte les interesa tener las ventajas que puse en ese post, sigan con mi método. Yo hice esa tabla, con IDs, nombres y equipos (tambien le puse por otros motivos, las columnas de numero internacional y numero en el club). Lo de usar filtros para seleccionar el equipo, y que te muestre solo los jugadores de ese equipo, realmente sirve.
Avatar de Usuario
dr13
Aficionado
Aficionado
 
Mensajes: 32
Registrado: Vie Nov 25, 2005 12:00 am
Agradecido : 0 gracias
Recibidos  : 0 gracias

Notapor Hormo » Lun Dic 11, 2006 5:23 pm

Saldra el soud server??? ya que cuando salio para pes5 ya llegaba el pes6 y no lo llegue a probar me gustaria tenerlo en el pes6
Imagen
Avatar de Usuario
Hormo
Extremo
Extremo
 
Mensajes: 386
Registrado: Mié Mar 01, 2006 12:00 am
Agradecido : 0 gracias
Recibidos  : 0 gracias

Notapor zidanes-rafalekus » Lun Dic 11, 2006 7:11 pm

que es el soudserver si se puede saber
Avatar de Usuario
zidanes-rafalekus
Calentando
Calentando
 
Mensajes: 188
Registrado: Vie Dic 23, 2005 12:00 am
Agradecido : 0 gracias
Recibidos  : 1 gracias

Notapor fran_pego » Mar Dic 12, 2006 8:16 pm

con este kitserver (6.3.3)me pasa que cuando juego con la selecciones clasicas (de las quales no tengo equipacion del kit) la equipacion se ve o toda gris o toda amarilla. me podeis ayudar?

GRACIAS
Avatar de Usuario
fran_pego
Aficionado
Aficionado
 
Mensajes: 8
Registrado: Jue Mar 23, 2006 12:00 am
Agradecido : 0 gracias
Recibidos  : 0 gracias

AnteriorSiguiente

Volver a Herramientas Edición

¿Quién está conectado?

Usuarios navegando por este Foro: No hay usuarios registrados visitando el Foro y 2 invitados