wtf - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: wtf (
/showthread.php?tid=121937)
wtf -
`FuTuRe- - 19.01.2010
When i am trying to start my server it tells me this.
Код:
--------------------------
Exception At Address: 0x00481804
Registers:
EAX: 0x00000000 EBX: 0x00000400 ECX: 0x00000100 EDX: 0x7EFEFEFF
ESI: 0x00000000 EDI: 0x00BEA8B0 EBP: 0x00000001 ESP: 0x0012FD60
EFLAGS: 0x00010206
Stack:
+0000: 0x01230020 0x00E8F3C8 0x00BEA8B0 0x0047307B
+0010: 0x00BEA8B0 0x00000000 0x00000400 0x00E87A60
+0020: 0x00000000 0x0012FDB8 0x00ED6148 0x00000001
+0030: 0x0046558E 0x43E88000 0x43D78000 0x00000000
+0040: 0x00E87A60 0x00E87A60 0x00E94BE0 0x01230020
+0050: 0x00000000 0x00EC53E0 0x00E98EC8 0x00401096
+0060: 0x00E87A60 0x00ED6148 0x00EAFF00 0x00402BB3
+0070: 0x00E87A60 0x0000001F 0x0012FDF0 0x00ED6148
+0080: 0x004BB0C8 0x00E87A60 0x00000001 0x00000000
+0090: 0x00000001 0x0002624C 0x00026248 0x00026264
+00A0: 0x00022268 0x00026258 0x00022268 0x00E94BE0
+00B0: 0x00EAFF00 0x00000000 0x00E93C50 0x0001B320
+00C0: 0x00461544 0x00E87A60 0x0012FE38 0x0000000B
+00D0: 0x009E76B0 0xFFFFFFFF 0x0000000B 0x009E76B0
+00E0: 0x00478B08 0x004BB0C8 0x0049C481 0x009E76A1
+00F0: 0xFFFFFFFF 0x00000000 0x00E87A60 0x0012FEDC
+0100: 0x00491CD8 0xFFFFFFFF 0x00477F4F 0x00000001
+0110: 0x00000000 0x00000A28 0x0012FFC0 0x7FFD5000
+0120: 0x000193C2 0x00010101 0x0000001E 0x00001E61
+0130: 0x00000070 0x00000474 0x009E76B0 0x656D6167
Re: wtf -
Correlli - 19.01.2010
Post the logs from server_log.txt file.
Re: wtf -
`FuTuRe- - 19.01.2010
I've tryed to remember what i done yesterday on my script. then i changed
pawn Код:
TextHelp = TextDrawCreate(465.000000,431.000000, "");
To:
pawn Код:
TextHelp = TextDrawCreate(465.000000,431.000000, "The Stealing Server");
So it is fixed now... anyway thanks
Код:
SA-MP Dedicated Server
----------------------
v0.3a R4, ©2005-2009 SA-MP Team
[15:55:25] password = "" (string)
[15:55:25] weburl = "www.sa-mp.com" (string)
[15:55:25] plugins = "" (string)
[15:55:25]
[15:55:25] Server Plugins
[15:55:25] --------------
[15:55:25] Loaded 0 plugins.
[15:55:25]
[15:55:25] Filter Scripts
[15:55:25] ---------------
[15:55:25] Loading filter script 'pmfs.amx'...
[15:55:25]
--The Stealing Server PM-Premium
[15:55:25] Loading filter script 'Speedboost.amx'...
[15:55:25] Loaded 2 filter scripts.
Re: wtf -
Correlli - 19.01.2010
Yes, that was the problem probably. Textdraw string shouldn't be empty or the server will crash.
Re: wtf -
HydraX - 19.01.2010
NEXT TIME do this..
pawn Код:
TextHelp = TextDrawCreate(465.000000,431.000000, "");
to this
pawn Код:
TextHelp = TextDrawCreate(465.000000,431.000000, " ");
Just add and empty space and it will call it as a string..
Re: wtf -
`FuTuRe- - 19.01.2010
Ok thnx for the info.