|
You last visited: Today at 05:06
Advertisement
[Release] Fun Game v1 ;D
Discussion on [Release] Fun Game v1 ;D within the Main forum part of the General category.
11/13/2011, 21:04
|
#1
|
elite*gold: 0
Join Date: Oct 2011
Posts: 21
Received Thanks: 1
|
[Release] Fun Game v1 ;D
Hey
ich hatte ein bissel LW und habe dann mit AutoIt ein kleinen script erstellt...
HowTo:
Du hast eine Zahl von 1 - 9[Kann man ändern mit AutoIt kenntnise]
Die schreibst du in die Inputbox [Da wo man etwas eintragen kann]
In dem Ordner wo Du den Bot [die .exe] hast erstellt sich automatisch
eine .ini datei [game_settings.ini] da werden dann eure ergebnisse eingetragen
und der bot liest diese zahl und wenn es die richtige zahl ist habt Ihr Gewonnen !
Was das für einen Sinn machen soll?
Frag mich nicht! es heißt ja "Fun Game"
An Alle die sich mit AutoIt ein bissel besser auskennen!
Ich habe den Gleichen Bot nur mit bissel mehr funktionen.
Wo ist das Problem?:
Da kommt nur eine MsgBox wenn man Gewinnt und wenn man Verliert nix!
Was nun? der code ist hier alles funktioniert nur das mit dem "Else" nicht ganz...
PHP Code:
$input1 = InputBox("Zahlen Raten","Wähle eine zahl aus von 1 - 9" & @CRLF & "Versuch 1","","") $input2 = InputBox("Zahlen Raten","Wähle eine zahl aus von 1 - 9" & @CRLF & "Versuch 2","","") $input3 = InputBox("Zahlen Raten","Wähle eine zahl aus von 1 - 9" & @CRLF & "Versuch 3","","") IniWrite("game_settings.ini","zahl1","=",$input1) IniWrite("game_settings.ini","zahl2","=",$input2) IniWrite("game_settings.ini","zahl3","=",$input3) $Random = Random(1,9,1) $Read1 = IniRead("game_settings.ini","","zahl",$input1) $Read2 = IniRead("game_settings.ini","","zahl",$input2) $Read3 = IniRead("game_settings.ini","","zahl",$input3) If $Random = $Read1 Then MsgBox(4096,"...","Dein Gegner wählte:") MsgBox(4096,"...",$Random) MsgBox(4096,"Gewonnen!","du hast Gewonnen!") If $Random = $Read2 Then MsgBox(4096,"...","Dein Gegner wählte:") MsgBox(4096,"...",$Random) MsgBox(4096,"Gewonnen!","du hast Gewonnen!") If $Random = $Read3 Then MsgBox(4096,"...","Dein Gegner wählte:") MsgBox(4096,"...",$Random) MsgBox(4096,"Gewonnen!","du hast Gewonnen!") Else MsgBox(4096,"...","Dein Gegner wählte:") MsgBox(4096,"...",$Random) MsgBox(4096,"Fail!","du hast Verloren!") EndIf EndIf EndIf
|
|
|
11/13/2011, 21:07
|
#2
|
elite*gold: 10
Join Date: Dec 2008
Posts: 1,374
Received Thanks: 217
|
Cool macht fast soviel Spaß wie Battlefield 3
|
|
|
11/13/2011, 21:10
|
#3
|
elite*gold: 0
Join Date: Oct 2009
Posts: 1,888
Received Thanks: 528
|
Quote:
Originally Posted by GinduGun
Cool macht fast soviel Spaß wie Battlefield 3
|
^this
btt: Der Thread gehört glaub ich hier rein :
#moverequest
|
|
|
11/14/2011, 14:12
|
#4
|
elite*gold: 0
Join Date: Oct 2011
Posts: 21
Received Thanks: 1
|
da steht doch :
Quote:
Main
Hier könnt ihr über alles reden
|
|
|
|
11/14/2011, 14:15
|
#5
|
elite*gold: 260
Join Date: Jan 2010
Posts: 4,348
Received Thanks: 551
|
Quote:
Originally Posted by .xNeoNStyLeZz'[xNP]
Hey
ich hatte ein bissel LW und habe dann mit AutoIt ein kleinen script erstellt...
HowTo:
Du hast eine Zahl von 1 - 9[Kann man ändern mit AutoIt kenntnise]
Die schreibst du in die Inputbox [Da wo man etwas eintragen kann]
In dem Ordner wo Du den Bot [die .exe] hast erstellt sich automatisch
eine .ini datei [game_settings.ini] da werden dann eure ergebnisse eingetragen
und der bot liest diese zahl und wenn es die richtige zahl ist habt Ihr Gewonnen !
Was das für einen Sinn machen soll?
Frag mich nicht! es heißt ja "Fun Game"
An Alle die sich mit AutoIt ein bissel besser auskennen!
Ich habe den Gleichen Bot nur mit bissel mehr funktionen.
Wo ist das Problem?:
Da kommt nur eine MsgBox wenn man Gewinnt und wenn man Verliert nix!
Was nun? der code ist hier alles funktioniert nur das mit dem "Else" nicht ganz...
PHP Code:
$input1 = InputBox("Zahlen Raten","Wähle eine zahl aus von 1 - 9" & @CRLF & "Versuch 1","","") $input2 = InputBox("Zahlen Raten","Wähle eine zahl aus von 1 - 9" & @CRLF & "Versuch 2","","") $input3 = InputBox("Zahlen Raten","Wähle eine zahl aus von 1 - 9" & @CRLF & "Versuch 3","","") IniWrite("game_settings.ini","zahl1","=",$input1) IniWrite("game_settings.ini","zahl2","=",$input2) IniWrite("game_settings.ini","zahl3","=",$input3) $Random = Random(1,9,1) $Read1 = IniRead("game_settings.ini","","zahl",$input1) $Read2 = IniRead("game_settings.ini","","zahl",$input2) $Read3 = IniRead("game_settings.ini","","zahl",$input3) If $Random = $Read1 Then MsgBox(4096,"...","Dein Gegner wählte:") MsgBox(4096,"...",$Random) MsgBox(4096,"Gewonnen!","du hast Gewonnen!") If $Random = $Read2 Then MsgBox(4096,"...","Dein Gegner wählte:") MsgBox(4096,"...",$Random) MsgBox(4096,"Gewonnen!","du hast Gewonnen!") If $Random = $Read3 Then MsgBox(4096,"...","Dein Gegner wählte:") MsgBox(4096,"...",$Random) MsgBox(4096,"Gewonnen!","du hast Gewonnen!") Else MsgBox(4096,"...","Dein Gegner wählte:") MsgBox(4096,"...",$Random) MsgBox(4096,"Fail!","du hast Verloren!") EndIf EndIf EndIf
|
Muss man nicht ElseIf schreiben statt Else?
|
|
|
11/14/2011, 14:18
|
#6
|
elite*gold: 0
Join Date: Oct 2009
Posts: 3,413
Received Thanks: 504
|
Quote:
Originally Posted by .xNeoNStyLeZz'[xNP]
da steht doch :
|
Ja aber für die Themen die keine eigene Section dafür haben und dein Thema hat eine eigene Section und das wurde hier schon gepostet.
|
|
|
11/14/2011, 14:22
|
#7
|
elite*gold: 1725
Join Date: Dec 2005
Posts: 39,170
Received Thanks: 16,159
|
|
|
|
Similar Threads
|
[Release]Log in Game with GM Character?
09/21/2011 - SRO Private Server - 0 Replies
Hello, :)
GM characters, some people can not log in to the game.
I will share:)
first:
creating a one gm char .. or. sro_gm1 can use the character.
|
[Release] EO Game CP
05/16/2010 - EO PServer Guides & Releases - 24 Replies
Hello everyone,
after few days of scripting :pimp: i got the cp done so enjoy my V1.0.0 release of uzn-game-cp for eo servers.
V1.0.0: Download
Login page
Registeration page
Retrieve page
Statistic page
Account Information page
|
[Release] ResetChar into game
12/25/2008 - CO2 PServer Guides & Releases - 10 Replies
In Character.cs Under public void ReBorn2(byte ToJob) Add :
public void ResetChar()
{
try
{
Level = 1;
Exp = 0;
|
All times are GMT +1. The time now is 05:06.
|
|