Problem: Kako prebaciti ovo u GM?
http://pastebin.com/7u7uZ4wL
Ja sam to ovako uradio ali mi baca 3 warrninga
C:\Documents and Settings\Administrator\Desktop\Kaje Mod\gamemodes\FarkiasRP.pwn(35070) : warning 219: local variable "Vrijeme" shadows a variable at a preceding level
C:\Documents and Settings\Administrator\Desktop\Kaje Mod\gamemodes\FarkiasRP.pwn(35104) : warning 219: local variable "Vrijeme" shadows a variable at a preceding level
C:\Documents and Settings\Administrator\Desktop\Kaje Mod\gamemodes\FarkiasRP.pwn(36410) : warning 219: local variable "Vrijeme" shadows a variable at a preceding level
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
3 Warnings.
Deffin sam boje
#define COLOR_GREEN 0x33AA33AA
#define COLOR_YELLOW 0xFFFF00AAI forwardovao vreme
forward Vrijeme();Onda pod GameModeInt
SetTimer("Vrijeme", 13, 1);i na kraju public
public Vrijeme()
{
new rnd = random(108000);
switch(rnd)
{
case 0:
{
SendClientMessageToAll(COLOR_GREEN,"{6EF83C}Vesti | Sledi: Vremenska prognoza.");
SendClientMessageToAll(COLOR_YELLOWW,"{6EF83C}Vesti |{FFFFFF} Dragi slusaoci, vreme ocekivano za narednih pola sata je:Suncano");
SetWeather(1);
}
case 1:
{ SendClientMessageToAll(COLOR_GREEN,"{6EF83C}Vesti | Sledi: Vremenska prognoza.");
SendClientMessageToAll(COLOR_GREEN,"{6EF83C}Vesti | {FFFFFF}Dragi slusaoci, vreme ocekivano za narednih pola sata je:Oblacno i Tmurno.");
SetWeather(16);
}
case 2:
{
SendClientMessageToAll(COLOR_GREEN,"{6EF83C}Vesti | Sledi: Vremenska prognoza.");
SendClientMessageToAll(COLOR_YELLOWW,"{6EF83C}Vesti |{FFFFFF} Dragi slusaoci, vreme ocekivano za narednih pola sata je:Kisovito");
SetWeather(8);
}
case 3:
{
SendClientMessageToAll(COLOR_GREEN,"{6EF83C}Vesti | Sledi: Vremenska prognoza.");
SendClientMessageToAll(COLOR_GREEN,"{6EF83C}Vesti |{FFFFFF} Dragi slusaoci, vreme ocekivano za narednih pola sata je:Maglovito.");
SetWeather(9);
}
case 4:
{
SendClientMessageToAll(COLOR_GREEN,"{6EF83C}Vesti | Sledi: Vremenska prognoza.");
SendClientMessageToAll(COLOR_GREEN,"{6EF83C}Vesti |{FFFFFF} Dragi slusaoci, vreme ocekivano za narednih pola sata je:Oblacno bez Omorina.");
SetWeather(30);
}
}
}